The Duct Tape Programmer 1242

Posted by Uncle Bob Thu, 24 Sep 2009 16:51:03 GMT

In Joel Spolsky’s recent blog he talks about “Duct Tape Programmers”. These “pretty boys” don’t use complex tools like C++, Templates, COM, Multiple Inheritance, etc. They don’t waste their time going to “goddamn Design Patterns meetups”. They don’t do all the fancy things that speakers at conferences talk about. They just ship product.

Surprisingly I agreed with almost everything he wrote. Almost…

It’s a good blog. It’s a really good blog. Oh I don’t mean his silly complaining about C++ or Templates or COM. (Although doing just about anything that involves Visual Studio is something I don’t want to think about.) I think you can ignore the specifics of what Joel said. What’s good about the blog is the spririt.

Quoting Peter Seibel quoting Jamie Zawinsky: ’“Yeah,” he says, “At the end of the day, ship the [f___ing] thing! It’s great to rewrite your code and make it cleaner and by the third time it’ll actually be pretty. But that’s not the point—you’re not here to write code; you’re here to ship products.”’

Now don’t get me wrong. I’m the “Clean Code” guy. I want your code clean. I don’t want you making a mess. On the other hand, I want you to ship. I don’t want you gilding the lilly. I don’t want you wrapped up in endless polishing.

I want you to ship, but I don’t want you to ship shit.

If you think I’m contradicting myself, you’re wrong. There is no contradiction in the notion that you must ship, and that you must be proud of what you ship.

The programmer who spends weeks building the perfect structure does just as much harm to the project as the programmer who hacks a bunch of crap together. Neither have struck the balance that’s required.

In short, it’s bad to use too much duct tape. But I’d be suspicious if I didn’t see some duct tape!

As for Joel’s consistent dismissal of unit testing, he’s just wrong about that. Unit testing (done TDD style) does not slow you down, it speeds you up. One day I hope Joel eventually realizes this. Programmers who say they don’t have time to write tests are living in the stone age. They might as well be saying that man wasn’t meant to fly.

As for Joel’s consistent complaints about C++, Templates, Design Patterns, COM, etc, etc. Any tool can be over used. There’s nothing wrong with any of these things, and they all have benefits to provide. So long as you use them for their benefits, instead of for their “cool-ness” (COM? Cool? Well, Joel’s an old guy like me.) you’ll be fine.

Again Joel’s specific complaints can be ignored. The spirit of simplicity, however, should be taken to heart. If you don’t need a “cool” technology, you are probably better off not using it. Keep things simple. Keep things uncomplicated. Don’t pack your system with every new idea you’ve heard.

Not that you shouldn’t learn new ideas, and new languages, and new APIs; you should! But you don’t have to use them in systems as soon as they are out of the box. Let them cure a bit.

I found myself annoyed at Joel’s notion that most programmers aren’t smart enough to use templates, design patterns, multi-threading, COM, etc. I don’t think that’s the case. I think that any programmer that’s not smart enough to use tools like that is probably not smart enough to be a programmer period.

I won’t make excuses for programmers. Programers should be smart. Programmers should be very very smart. Indeed, programmers should be smart enough to build beautiful and robust systems from a small set of very simple tools.

So. Be smart. Be clean. Be simple. Ship! And keep a small roll of duct tape at the ready, and don’t be afraid to use it.

Comments

Leave a response

  1. Avatar
    Dagfinn Reiersøl 19 minutes later:

    Yes, but Joel has told me I’m not pretty enough to be a duct tape programmer. He implies you need special talent to be able to “ship code”. That’s ridiculous.

    Joel’s blog post is simply not logical. It’s duct tape blogging. But the sprit, yeah OK, I guess you were feeling benevolent today.

  2. Avatar
    corey.furman@gmail.com 19 minutes later:

    And I agree with almost everything you’ve said. The truth is still out there, but but it’s somewhere closer to Joel’s worldview. Sure programmers should be very smart, but the reality is most are mediocre. And sure there are “architecture astronauts” that understand how and why to use specific technologies, but in my experience most people only think they know these things, creating maintenance nightmares. Tell me I’m wrong – I dare you.

    As for testing, you’re both right. TDD is the right way to do it, and it is also like flossing – everyone thinks it’s a great idea, but most people never get around to it.

  3. Avatar
    AV 37 minutes later:

    I get a feeling Uncle Bob is trying to be politically correct this time regarding Joel’s views.

    “Being politically correct is believing you can pick up a turd by the clean end.”

    Both Joel and UncleBob left off a very important part of software life cycle – what happens AFTER “git-r-done” in Joel’s case shipping.

    Guess who is going to have a maintenance/improvement nightmare on their hands? Not the TDD crowd for sure.

    Here are a couple of thought provoking nuggets on twitter by people who see through this:

    “never take software advice from a bug tracking system salesman”

    “The anti-TDD people ought to realize that many of the pro-TDD people did many years of development before coming to TDD. It’s not like we just haven’t experienced the joys of cowboy coding and once we do we’ll drop unit-testing as unnecessary.”

    “duct tape programmers – sacrificing tomorrow’s productivity, today!”

  4. Avatar
    Uncle Bob 41 minutes later:

    Regarding flossing.

    If you aren’t flossing EVERY SINGLE DAY, you are a blithering idiot. Do you have any idea how valuable your teeth are? Do you want to have them when you are 56? I don’t want to hear the excuses. I don’t want you to even THINK about not flossing. FLOSS damn you! FLOSS!

  5. Avatar
    MBYoho about 1 hour later:

    “I get a feeling Uncle Bob is trying to be politically correct this time regarding Joel’s views.”

    As do I.

  6. Avatar
    Steve about 1 hour later:

    Flossing every day is overkill, you won’t lose your teeth if you only floss every other day.

    Same can be said about unit tests: you can produce quality software without any tests. Companies do it every day. Programmers do it every day.

    That’s Joel’s point.

  7. Avatar
    ron about 1 hour later:

    Bob. I was going to respond with a comment on Joel’s blog, but I think that I’ll just link to your blog. This is almost exactly what I wanted to express, but I would not have done so as well as you have.

  8. Avatar
    Adam D. about 1 hour later:

    If you skip flossing, at least 2 bad things will happen:

    1. Your gums will bleed because they’re not used to the activity. 2. You will stop flossing all together. You no longer have a HABIT.

    Same for TDD. Do it all the time. Don’t code if you don’t write unit tests. My spikes are through automated tests first, not console apps.

  9. Avatar
    IL about 1 hour later:

    I’m “Clean Code” guy too. Clean code make me feel good.

  10. Avatar
    KevDog about 1 hour later:

    Though I think the metaphor has been stretched as far as it can go, here’s my thought on duct tape programming:

    Duct tape is a patch, not structure. You can’t build a house out of duct tape, but you can patch a hole until you have time to do the right thing.

  11. Avatar
    RM about 1 hour later:

    Joel would have an argument if he didn’t take years to ship new versions of FogBugz.

  12. Avatar
    JuanZe about 1 hour later:

    I strongly agree with Uncle Bob:

    “The programmer who spends weeks building the perfect structure does just as much harm to the project as the programmer who hacks a bunch of crap together. Neither have struck the balance that’s required.”

    Everyday I see both kind of creatures around me.

    I think a lot of this issues are motivated by a short term vision. The “Ship it now” requeriment from the managers is a path for future problems if it is not properly handled. Inmature programmers never think about maintenance or operational aspects for the software running in a production environment. Getting the things done quickly perhaps is a victory for today but a nightmare for tomorrow.

    The most inspiring argument from Joel’s post is (quoting Zawinski):
    “A 50%-good solution that people actually have solves more problems and survives longer than a 99% solution that nobody has because it’s in your lab where you’re endlessly polishing the damn thing. Shipping is a feature. A really important feature. Your product must have it.”

    I enjoy reading both posts. I think reading Joel’s and then this one gives you a lot of inspiring thoughts to be a better developer.

  13. Avatar
    You Are Clueless about 1 hour later:

    Please give the TDD crap a rest already.

  14. Avatar
    stu about 1 hour later:

    For those who don’t believe unit tests are necessary: try coming on to a project that has been going for two years that has NO unit tests and lots of complicated, messy logic. Then try defect fixing on said project, or even adding new features. It is a nightmare!

    The developers are scared to touch code in case it breaks existing code. And they are right, because they have no way of knowing if they have broken anything.

    Unit testing is essential.

  15. Avatar
    Tim Bray about 1 hour later:

    Agreed, except for threads. Almost nobody is smart enough to use threads without getting into trouble. They are part of the problem, not part of the solution. We need to figure out a way to sugar-coat and de-mystify functional-programming techniques so we can have concurrency without insanity.

  16. Avatar
    Harold Gimenez about 1 hour later:

    Surprising post by Joel, since I’ve actually find good content in there, for example his post about encoding has been useful.

    TDD is a design tool that allows me to write better code faster. There is a line between that and under/overspecification. Clearly Joel doesn’t see it that way, unfortunately.

  17. Avatar
    Ann about 1 hour later:

    It is very selfish not to unit test. It creates feedback loops of failure which slow the project in unpredictable and unaccountable ways. This upsets everyone from QA testers to deployment to BA to customers. TDD is a good way to have unit tests done in a way that everyone can share the value.

  18. Avatar
    Wes McClure about 1 hour later:

    Why doesn’t anyone stress the fact that even with TDD you can cut time out of initial development phases and ship earlier with it? I am already noticing that with TDD I can go days without launching a debugger!

    How do you check your work without automated tests? Manually! So in effect you create manual tests in your head and then aren’t even polite enough to share them with the next developer (let alone your future self) and somehow this makes you a “pretty” developer?

    There are times when it makes sense from a business perspective to cut corners and ship early. But at the end of the day we do have to realize that this is a debt we have to pay back. Otherwise, we are being dishonest with our customers about the amount of work we can get done in a given amount of time and will set ourselves up for failed expectations in the future or pissed off clients.

  19. Avatar
    Seth Petry-Johnson about 1 hour later:

    I felt compelled to comment on Joel’s post as well. I’m glad you blogged a reply, as it gives me a place to put my thoughts!

    I disagree that our only job is to ship a product. Maybe that makes sense if you’re competing on price alone, but the companies that I want to work for use price AND quality to differentiate themselves from the competition. That means the job is to ship something on time, that works, AND is constructed with some amount of care and precision so that it serves the customer’s future needs as well as the immediate ones. Too much duct tape, and an attitude of “I don’t need no stinkin’ fancy pants ”, are a bad thing.

    Like you said, sometimes the clean, thoughtful application of duct tape IS the right move. Sometimes, its not. And anyone that says that unit tests are disposable has yet to discover that test-first is as much about WRITING THE RIGHT CODE as is is abut ENSURING THE CODE WORKS RIGHT.

    Oh well, back to work. Where’d I put my liquid nails….

  20. Avatar
    Alex about 1 hour later:

    “Same can be said about unit tests: you can produce quality software without any tests.”

    I could not disagree more. I would amend this to, “you can produce software without any tests.” But quality software, I think not, and certainly not in the software world of today. I think the term “quality” is to some degree a relative term, and also highly subjective. “Quality” might mean something slightly different to every programmer, given technologies being employed and available, as well as the actual time period which we’re referencing. Is quality readability? Conciseness? Performance? Maintainability? Some of these might be at odds with each other. These will undoubtedly be prioritized differently depending on the language and the resources available, which also might relate to the time period (i.e. ruby, given it’s memory footprint, theoretically would not have been a viable solution 15 years ago, given the cost and capacity of system memory). What might have been considered “quality” code ten years ago was held to a different standard then than it would be now, given the differences in tools and landscape, etc.

    That said, the landscape is changing, and rapidly. We’re moving/have moved into an era where software without tests is simply not “quality”, though it certainly might be software.

  21. Avatar
    lpbck1 about 1 hour later:

    If you aren’t flossing EVERY SINGLE DAY, you are a blithering idiot. Do you have any idea how valuable your teeth are? Do you want to have them when you are 56? I don’t want to hear the excuses. I don’t want you to even THINK about not flossing. FLOSS damn you! FLOSS! ”

    @Uncle Bob you have obviously not traveled enough, Lots of people in the world do not floss and they have perfectly fine teeth at old age.

  22. Avatar
    Uncle Bob about 1 hour later:

    I love the fact that some guy took “You Are Clueless” as his name!

  23. Avatar
    Kyle Szklenski about 1 hour later:

    Without intending to turn this fully into a discussion of TDD, I love those guys who say, “Who tests the tests!?” As if using them over and over, verifying that what you’ve written does what you were intending, and that continuing to write them to guide how you’re building the rest of the system isn’t beneficial and is not a test of the tests itself.

    Good point, Av. Even as a consultant, I feel that leaving a steaming pile of code for my clients to pick up after is embarrassing, and is what I try to avoid at all costs.

  24. Avatar
    tapfish about 1 hour later:

    TDD is very useful but practically and emotionally I cannot write test code all times. Hence I like Joel’s view more.

  25. Avatar
    Tim Smith about 2 hours later:

    http://en.wikipedia.org/wiki/Anecdotal_evidence

    The problem is that with an industry as large as programming is, it is easy to find a shop or many shops that support your personal views.

    Is Joel or Bob correct? I don’t know.

    But in my experience, small project teams can easily tolerate some of these “get it done at all cost” attitudes. Larger teams tend to suffer. Getting it done tends to make you management’s poster child of shipping software and public enemy #1 for the poor fools who have to support your work.

    Of course, it is easy to counter that over design and endless polish causes its own sort of deadly problems. But you have to ask yourself are you looking at the extreme cases in both arguments to support your own position. If you are, then your argument is weak.

    Often you do find yourself having to do dirty things in order to ship code and make enough money to survive. Personally, I sure hope that your are doing what you need to do make sure that you can still ship software after that first version.

  26. Avatar
    Tim Lesher about 2 hours later:

    “I want you to ship, but I don’t want you to ship shit.”

    This reminds me of something the 37signals folks said in their book “Getting Real”.

    When you’re just starting out, you won’t have enough time, resources, or understanding of the problem to implement the whole solution.

    That’s ok.

    But make sure you’re building “half a product”, not a “half-assed product”.

    In their case, they were talking about straight “feature counts”: ship three great, well-done features rather than six decent ones. But the same idea applies to development techniques.

  27. Avatar
    Giorgio Sironi about 2 hours later:

    I tweeted this with the caption “Uncle Bob is my hero”.

  28. Avatar
    Gabe da Silveira about 2 hours later:

    I like Tim’s comment.

    Automated testing is wonderful. I really like unit testing as a design and documentation tool. I really like acceptance tests as a regression and business communication tool. I’m really thankful that there are those individuals who are more passionate than me about testing pushing the tools forward (Selenium, Cucumber, TestSwarm, etc). Joel was really really wrong to dismiss “unit tests”.

    That said, testing is far from a silver bullet. The problem is that tests are overhead, the marginal cost is low, but not free. You have to pick what to test, and some things are very hard to test (people are steadily chipping away at that, but let’s be honest, some things will always be hard to test). No test offers as complete coverage as an actual human performing an acceptance test. Common programming techniques lead to an explosive number of edge cases that are all but impossible to enumerate and therefore test.

    That brings me to my agreement with Tim Bray. Functional programming is the most powerful tool for ensuring program correctness that we have in our bag. It’s really about leveraging thousands of years of mathematical practice in proving symbolic statements and applying that to software. If we can remove side effects from our code, our ability to reason about code is increased by several orders of magnitude. It certainly is inconvenient at times, but forced purity can give you guarantees that no amount of tests can ever provide. Of course it doesn’t preclude the need for tests to ensure algorithmic correctness, but just imagine the power of a unit test if the function is guaranteed pure.

  29. Avatar
    Kenrick Chien about 2 hours later:

    My approach is a little bit of what Joel said and what you said. I prefer to use the simplest approach possible, but code it up using TDD. Ship fast, but ship the code clean.

  30. Avatar
    Scott Koon about 2 hours later:

    You can produce quality code without writing unit tests…

    But how do you know it’s quality code?

  31. Avatar
    Richie Bielak about 2 hours later:

    Years ago I wrote this editorial for a small magazine named Eiffel Outlook>

    http://rbielak.inquitoris.com/writing/computers/eo_199509.html

  32. Avatar
    DavidQMora about 3 hours later:

    @Tim Lesher – I think you brought up an excellent point. We all have to balance theory and the real world. Isn’t that one of the tenets of engineering anyway? But the problem surges when that balance is done by cutting corners instead of cutting features.

    You say: make sure you’re building “half a product”, not a “half-assed product”.[/quote]

    And and that is the difference, in my view, between good programmers and bad ones. Bad ones drop commenting, testing, frequent check-ins, and so on. Good ones maintain their development discipline but trim features, avoid over-engineering, etc.

    The world we live in is somewhere between Joel and Bob. And it is a constant struggle between opposing forces. The maverick style of Joel brings a note of pragmatism to the table. The more academic (for lack of better word) style of Uncle Bob reminds me that there are ideals to pursue.

    One day without flossing won’t make you lose your teeth. All of us will have days in which we forget or are just too busy or tired to floss. But every day we don’t floss make it easier to forget it again the next day. We must avoid losing the habit of flossing by constantly being aware that our teeth need cleaning.

  33. Avatar
    stackoverthrow.com about 3 hours later:

    Nothing highlights and makes this equation more important that running your own software company. The need for quality and the need to ship are both very, very important. Sometimes one sacrifices a little of one for the sake of the other. It is a sliding scale – perhaps like a see-saw. If you get over to one side too far you are lost. One can balance a segment somewhere near the middle – but go too far in one direction, and you are toast.

    We’ve still not found a perfect ground. One of my ventures is on the “clean/no duct tape side – not shipped yet – but it is an industry where you don’t/can’t ever recover from a bad quality first release. The others are on the duct tape side and it is probably hard to determine how many lost sales were a result of all the duct tape-iness.

    Shipping is good. that is how you get revenue.

    Shitty code is bad. That is how you lose customers and turn users off, not to mention ensuring sky-high development costs in the future and maintenance issues so big you might not get to versions 2, 3 and 4

  34. Avatar
    Ilker Cetinkaya about 3 hours later:

    @Tim, @David: I agree 100%. I personally try to test first as much as I can and also get to the point that I can’t test everything from time to time.

    Especially when you’re working in teams where testing habit and techniques differ, you simply have to accept that a high (or even full) test coverage is neither pragmatic nor efficient. You end up by trying to just cover the functional stuff, since this is the main focus why you’re writing software for.

    Like David said before, I don’t think that this is per se a bad thing. We always need to find a balance – from project to project and context to context.

    Yes, the world is somewhere between Joel and Bob.

    However, my feeling is that it’s better to aim Bob’s world instead of Joel’s – from both economic and engineering perspectives.

  35. Avatar
    chris about 3 hours later:

    I respect Zawinski, but is he really a good example to follow here? Sure, Netscape jumped out on the front of the Web craze, but how did that work out? I don’t think it’s any accident that the majority of the browser had to be rewritten from the ground up when it shifted to Mozilla. Jamie complains the email team never completed their component to display messages, but why did they have to write one at all? They should have been able to reuse the browser display code, but I’m guessing their “duct tape” solution was incapable. If they had unit tests, it would have been easy to add functionality that the email client could use without breaking the browser.

    In the end, I guess duct tape solutions are fine if you’re just looking to ship product in whatever state, make a bundle, cash out, and buy a nightclub, but woe to the developer who has to come in behind you and actually maintain your “brilliance”. Maybe these guys missed their calling working in the finance industry.

  36. Avatar
    Rick about 3 hours later:

    Let’s just not hand excuses to Duct Tape programmers. Those few who know when is the appropriate time to use duct tape simply do it, no matter what the “rules” are, and are perfectly capable of justifying their choice (for starters, with working, shippable software).

    The rest should just be told to never ever do it. If they can’t argue the case for using duct tape solutions, they’re either wrong or not capable enough of to trust them with it.

    (One other thing such mediocre programmers should be told to never do is take Joel seriously. But luckily most of them can’t even be bothered to read that stuff.)

  37. Avatar
    dan about 3 hours later:

    After reading Joel’s blog, I wrote this in my drafts…

    The best comment is the comment that you didn’t have to write. The best code is the code that you didn’t have to write. The best design pattern is the design pattern that you didn’t have to use. The best inheritance hierarchy is the inheritance hierarchy that you didn’t have to use.

    Yes, sometimes a programmer that uses inheritance and design patterns too much is worse than one who doesn’t use them at all (especially when there’s software to ship). But the best programmers are the ones who understand that the secret to design patterns, inheritance hierarchies, comments, and just plain old code—the secret is to know when not to use them.

    Yes, I stole the first one from Clean Code. I would’ve give Uncle Bob due reference, of course, but now he’s put it even better than I ever could.

    So I’ll just link here!

  38. Avatar
    Przemek Pokrywka about 3 hours later:

    I consider TDD as essential for several years. However, I dicovered one thing, that is (seemingly) not particularly popular. TDD and unit testing is not an easy skill. It is important, because their ROI depends directly on their quality. I have already seen some extremely valuable tests, many ok tests and way too many bad tests, that actually got in the way of development, providing less value, than costs of maintaining them.

    Therefore, I’d like to stress, that it is crucial to use TDD the right way in order to get its benefits. No wonder, that many people fail to see value in unit testing, when they are most often confronted with poor-quality test practices. Uncle Bob, keep on spreading your knowledge! The more people start to get early ROI from their tests, the less people will remain sceptical about them. Seeing is believing. Eventually Joel is going to see it, too… or he’s not, let him alone and keep getting benefits from testing techniques :)

  39. Avatar
    Frank Quednau about 4 hours later:

    Nownow, Visual Studio ain’t such a bad thing…as long as resharper is installed.

    As for TDD, one thing people seem to forget: I have noticed that it is possible to program when you are drunk, provided you write, one-by-one
    • do: a test expressing what you are trying to achieve and
    • making it pass;
    • goto do;

    The code may not look as usual but it will be functional. Now anything that makes programming easier is a good thing, innit?

  40. Avatar
    website about 4 hours later:

    Bob is right and Joel is wrong about unit testing. Really, "unit testing" is just testing, but done in a way that is standardized so you can easily re-run your tests as part of your build cycle, and see which ones are failing. Unit testing your code doesnt take any more time than simply testing your code any other way, and anyone that ships code without testing it is a moron. In my company unit testing is a requirement, and any programmer working for us that doesnt want to unit test better polish up their resume, because theyll be in the job market soon (in reality, we wouldnt hire such a programmer in the first place). This is not because weve bought into some ideology, its because weve tried it both ways and unit testing saved time, reduced stress, made debugging easier, and made the shipped product better. I should point out that we ship a product which, if it doesnt work properly, can cost our customers thousands of dollars a day.

  41. Avatar
    Harold about 4 hours later:

    Sorry to be blunt, but Joel Sposlki has a much better track record for shipping and selling software than Bob Martin does, so Joel’s points will resonate with programmers who have to ship software to make a living, a constraint that Bob doesn’t have.

  42. Avatar
    Kevin about 4 hours later:

    Harold, Would you trust someone who ships bug tracking software to be worried about whether you ship bug free code?

  43. Avatar
    Harold about 4 hours later:

    Kevin: again, just because you don’t have tests or automated tests doesn’t mean that your product is not good.

    I know nothing about FogBugz (never used it) but it seems to be doing quite well and to be receiving good feedback overall, so I would say that it’s quality software.

    The fact that the founder of that company thinks so little of TDD and unit tests is telling us something important: yes, you can ship quality software with mediocre testing.

  44. Avatar
    Kevin about 4 hours later:

    Harold : you missed my point, his entire business is based on people making buggy software and needing bug tracking software. Why would you listen to him if you were seeking any advice at all in regards to code quality. Even if he did think highly of TDD, why would he say so? Also, ask FogBugz users why it takes years for new versions to come out? He is supposed to have the best of the best up there and they crank out software slower than most of us “mediocre” programmer driven companies.

  45. Avatar
    Kevin about 5 hours later:

    Harold : and also, good feedback does not necessarily mean quality software any more than no unit tests means crap software. But hey, you know FogBugz and his company so well, you must know better than me right? wait a min…

  46. Avatar
    tmikew about 5 hours later:

    Anti TDD folks seem to consistently overlook that TDD isn’t slower. It simply isn’t, the folks who complain to me about have never tried it. Also as previously mentioned we write the tests in our heads anyway.

    Anybody ever thought about the nice half hour of unit testing done in the visual debugging environment that then gets discarded once the bug is fixed?

    Where I work we use test cases as documentation for future maintainers of the code. It also helps the original authors recall what they were thinking about back then.

    I also agree with some of the other posters, it does take some practice to realize what to test and what not to test.

  47. Avatar
    No Kevin, Bad Kevin about 5 hours later:

    Why would you trust someone like Uncle Bob who doesn’t ship and sell his own software but rather sells consulting services and in fact makes more money when deadlines slip and consulting projects run longer? In any debate about balancing speed versus quality, an actual software company has far more credibility than a consulting/training company.

  48. Avatar
    Sean about 5 hours later:

    I’d trust Uncle Bob because he’s still actually writing and shipping code. Go check his github account. Joel’s opinions on software are outdated and irrelevant. He personally hasn’t coded in years, and his attitudes towards modern coding practices show it. It’s like asking a buggy whip factory owner about his opinion on how to properly manufacture Priuses.

  49. Avatar
    Kevin about 5 hours later:

    No Kevin, Bad Kevin – Did I say anything in regards to Uncle Bob? You guys are fun with your pretending to argue a point I never made. I simply said “Would you trust someone who ships bug tracking software to be worried about whether you ship bug free code”. You guys can dance around that question all you want and keep thinking highly of Joel and attribute an entire company’s success in sales to him. I know every line of code I write is all because my boss is smart.

  50. Avatar
    Harold about 5 hours later:

    Kevin: oh ok, I see your point. Fair enough.

    Then again, Bob is working for a consulting firm, so selling methodologies (and ideally, methodologies that change every year) is also a good business plan where you can just come in, write some code and never have to maintain it, so we should take what he says with a grain of salt as well (and we do).

  51. Avatar
    Fo Sho! about 5 hours later:

    I tend to hold in higher regard people who actually do stuff than people who talk about the best way to do stuff.

    Both Joel and Bob fall in the latter category somewhat but Joel has way more do-stuff cred.

  52. Avatar
    Dean Nolan about 6 hours later:

    Why do people feel they need warship Bob or Joel?

    Can’t you appreciate they are both great programmers who both ship products and have good track records.

    Don’t you see that thousands of programmers have learned how to better themselves through both of these guys blogs, teachings and conferences.

    They are both great programmers that can use whatever methodology that suits their needs.

    I prefer unit testing and know the benefits of it. But if there is some quick patch or fix needed that when you have enough experience you can ship that patch without unit testing you would be mad not to. You can always clean it up later.

    So I think people should learn the pros and cons of each method and use what their experience tells them is appropriate at the time.

  53. Avatar
    Whatever about 6 hours later:

    @Fo Sho! What “do-stuff cred” are you referring to that Joel has done? He pontificates about software, but by his own admission, he hasn’t written actual software in quite some time.

    Bob still writes codes. And lots of it. I hold his experience in higher regard than Joel’s for that simple reason.

  54. Avatar
    Jorge about 6 hours later:

    There’s a typo on the third paragraph. I assume you meant “spirit” instead of “spririt.”

  55. Avatar
    Phillip about 6 hours later:

    Wow, i didn’t know people still read Joel and Jeff’s blogs.

  56. Avatar
    Tony Morris about 6 hours later:

    TDD does slow you down and I hope one day the community of amateur software verification testers realise this. Study some type theory and what it means to prove a logical theorem (see C-H Isomorphism), then tell me your clumsy TDD fashion is saving you time.

  57. Avatar
    Philip Schwarz about 6 hours later:

    @corey.furman & Uncle Bob

    We floss our teeth to clean them, so if it is a Dentistic metaphor we are after, rather than TDD = flossing, we should go for Refactoring = flossing, since refactoring is the TDD phase in which we clean our code.

    But, as Refactoring Tools: Fitness for Purpose says, not all refactoring is flossing:

    We call one tactic “floss refactoring”; this is characterized by frequent refactoring, intermingled with other kinds of program changes. In contrast, we call the other tactic “root canal refactoring”. This is characterized by infrequent, protracted periods of refactoring, during which programmers perform few if any other kinds of program changes. You perform floss refactoring to maintain healthy code, and you perform root canal refactoring to correct unhealthy code.

    If we adjust our metaphor to take this classification into account, we soon extract from it the following admonition:

    If you don’t do Floss Refactoring, you end up doing Root Canal Refactoring.
  58. Avatar
    Stephen Souness about 7 hours later:

    I found it curious that Joel chose to associate an ugly, unmaintainable system including multiple inheritance with design patterns.

    I hope some day he actually makes the effort to try test driven development. Then he can drive a truck through his own arguments.

    Trying to recall why I used to follow Joel’s blog posts.

    (Loving the tweet: “never take software advice from a bug tracking system salesman”)

  59. Avatar
    projectshave about 7 hours later:

    I think that any programmer that’s not smart enough to use tools like that is probably not smart enough to be a programmer period.

    Most IT programmers I’ve met in the last decade are not smart enough, nor should they be programmers. But they are filling the demand for someone, anyone, to man the computers.

  60. Avatar
    Lee Brandt about 9 hours later:

    was horrified by Joel’s post for the most part. As usual, Bob takes what is useful and tosses what isn’t.

    As far as the stupid/mediocre programmers, unless someone shows them how to be better, they will always be stupid/mediocre. It’s up to any smart programmer who cares about the profession as a whole, to help them along and make them smart programmers too. Then, we all win.

    My $0.02 ~Lee

  61. Avatar
    Overkill about 9 hours later:

    I am in the middle between Bob’s and Joel’s viewpoints. I think unit tests for every class is overkill. Likewise having interface for every class and mocking is in general overkill IMO.

    I use JUnit (etc.) to write automatic tests, but they more functional tests. For example for a simple interpreter that I wrote I have tests for the Lexer, Parser and Interpreter but I don’t bother with mocking the Lexer or Parser or testing the Token, ASTNode and other classes like that. So the tests are covering that the lexer generates the correct tokens, and the parser tests make sure it is creating the correct AST.

  62. Avatar
    Thomas Winsnes about 10 hours later:

    From my experience, TDD slows down the initial release, but it will increase the speed of maintenance and adding additional functionality :) So in the long run, it’s better

    Not to put words in joels mouth, but I think he is pointing to a problem a lot of developers have, me included; that we can’t put our selves in the users perspective. To the user it doesn’t matter what happens on the inside, as long as the outside works.

    “When the user presses the button, what is supposed to happen, happens; withing a reasonable time frame.” This is the full extent of what the user cares about in most cases.

    Everything else, is just for ourselves :)

  63. Avatar
    noone@none.org about 10 hours later:

    ““never take software advice from a bug tracking system salesman”

    yes, but also,

    ““never take software advice from a methodology consultant” ;-)

  64. Avatar
    kaji about 10 hours later:

    I’m shocked no one pointed this out but when weighing pros and cons I usually consider the penalty and probability of failure when cutting corners. Has anyone EVER tracked you down after you wrote sh*tty code and called you out? Has crappy code ever kept you up at night (if so I think you should get a gf or something). Its not like anyone is keeping a FICO score for developers so provided you’ve had a few years of full cycle development experience under your belt, no one is really going to care. On a side note, I am responsible for refactoring and fixing my office mate’s code. He is very good at pumping out crap code to meet a deadline and I am getting better at fixing his crap faster then he can write it. The clean coders need the pretty boys to look good and your boss needs the pretty boy to look good. Eat fresh!

  65. Avatar
    krasicki about 12 hours later:

    Once the assertion that every programmer is not equally skilled is made and accepted then adding the argument that TDD is desirable is delusional.

    What makes anyone think that a programmer who writes mediocre code can write accurate and comprehensive tests? Is there some part of the brain that will kick in to accurately test a thing the programmer cannot comprehend adequately in the first place?

    - krasicki

  66. Avatar
    http://www.adaptivelearningonline.net about 13 hours later:

    I agree that TDD is important. Having at least some tests will ensure minimum acceptable quality.

    So, even as we make some adjustments to ship early, we know that what we are shipping is at least of a certain quality which will not break down once the software starts getting used.

    — Regards Parag

  67. Avatar
    Thomas Winsnes about 13 hours later:

    From my experience, TDD slows down the initial release, but it will increase the speed of maintenance and adding additional functionality :) So in the long run, it’s better

    Not to put words in joels mouth, but I think he is pointing to a problem a lot of developers have, me included; that we can’t put our selves in the users perspective. To the user it doesn’t matter what happens on the inside, as long as the outside works.

    “When the user presses the button, what is supposed to happen, happens; withing a reasonable time frame.” This is the full extent of what the user cares about in most cases.

    Everything else, is just for ourselves :)

  68. Avatar
    NL about 13 hours later:

    I suppose it is redundant to point out the irony that Netscape no longer exists. If you read the Wikipedia page about Netscape, you can see the history of buggy releases that drove users away from the product. Microsoft’s involvement was no longer an issue when AOL finally disbanded Netscape.

    Even later versions that AOL made were not based on the original code from Mr. Duct Tape. The open source codebase was abandoned because it was so bad.

    He got the code out quickly and doomed the product to failure at the same time. That is the only lesson to learn from this.

  69. Avatar
    Dhananjay Goyani about 15 hours later:

    Yes, there is a difference between Just Ship and Clean Ship. Just Ship is, as per Joel’s terminology is Mr. duct tape, which I consider mixture of technical debt and mess (depending upon programmers goodness). Well, the difference can become more clear if you ask – how long you would like to see your software running? If its just for version one Duct tape is acceptable, but if you want your software a-horse-of-long-race Mr. clean ship always wins.

    I would like to echo famous quote on unix little bit differently: Cool-ness (like templates, COM, TDD, patterns and practises, refactoring, etc) is simple. And it requires smart brain to understand cool-ness.

    Mr. Just ship would always refrain from changes (or the acceptance will result into mess over mess, a patch for patch scenario) while Mr. Clean ship will always accept the change (stolen directly from Agile manifesto shamelessly).

    At the end I would appreciate Joel for his ship-biased spirit and thankful to uncle bob to bring that spirit to clean level.

  70. Avatar
    Mike about 16 hours later:

    “In short, it’s bad to use too much duct tape. But I’d be suspicious if I didn’t see some duct tape!”

    Totally agree with that. I worry when folk put layer and layer of abstraction in when a simple bit of understandable, and maintainable “duct tape” would do. “Duct Tape” was invented for a damn good reason. The number of coders who refuse point blank to use a global variable, or static is amazing.

    “I found myself annoyed at Joel’s notion that most programmers aren’t smart enough to use templates…”

    I would rephrase that… I would say most aren’t smart enough to use them “properly”. And I would add that there are heaps of stupid coders – I’ve worked with plenty. And that’s not stupid as in eating coal, but stupid as in silly designs when, with a bit of thought… they would have thrown it all away. Stupid as in no one too many, but several layers too much abstraction. I see this a lot. Simple is not only good, but far more maintainable – and I don’t put this down to experience.

    The sad fact is that most coders are simply not very good. MOST coders are in fact bad. But these days, you can be a bad programmer and still churn stuff out. Machines are powerful, and you can get away with a LOT of bad code but the product still looks more or less as intended, and while it may run a fifth the speed to should, machines are fast. Hell… look at windows!

    There are only a small percentage of truly great programmers, a slightly larger percentage of really good one, a large percentage of “normal” ones, and a huge percentage of crap ones. But in today’s market of simply needing bodies to type, we still need crap coders to make up numbers and get code typed in! It’s annoying… but true.

  71. Avatar
    Derek Greer about 21 hours later:

    I’ll say I agree with the “spirit” of this response, but I really don’t think it goes far enough to address Joel’s contempt for those who try to pursue craftsmanship in what gets shipped.

  72. Avatar
    Ana about 21 hours later:

    Yeah, we might as well just go back up into the trees. Who needs all this “polish” like cars and shoes and stuff, who needs to live “comfortably”?? At the end of the day all that matters is having some food, somewhere to sleep, and someone to sleep with.

  73. Avatar
    Marco about 21 hours later:

    I disagree with you. Maybe this kind of approach works for employees … but when you are an entrepreneur and need to get the think done real fast not because your boss is asking but because if dont do that you are dead … the Joel approach is much more realistic.

    At this scenario, the idea “Be smart. Be clean. Be simple. Ship! And keep a small roll of duct tape at the ready, and don’t be afraid to use it.” is just impossible. You have to choose and you have to choose really fast.

  74. Avatar
    Markon about 22 hours later:

    I think that duct tape programming is good thing. For the start. All of us were duct tape programmers anyway. And then, after couple of years doing it like that, when you have things done behind your back, only then you can improve your skills with clean code practices, simply because you already have experience, and you can recognize mistakes and benefits of a good and clean code.

    Cheers ;)

  75. Avatar
    Markon about 23 hours later:

    oh, yeah, unclebob, instead of spinning when I hit button submit for my comment, it says: spinner :D ;)

  76. Avatar
    Mark Dennehy about 23 hours later:

    Good to see someone else making a bit of sense, though I’m a bit more miffed myself at the whole denigration of testing – maybe we need to introduce to the Computer Science courses the same kind of Famous Failures 101 course that Engineers get…

  77. Avatar
    Time And Tide about 23 hours later:

    I love the Joel blog and I generally agree with his development thoughts (I’m an old fashioned C/C++ developer at heart, and so are all my products: http://www.workingprogram.com ), but my faith was somewhat shattered by FogBugz, which I don’t think beats Bugzilla when it come down to usability.

  78. Avatar
    corey.furman@gmail.com 1 day later:

    @Philip Schwarz – You misunderstood me to take a position, to which I only eluded to. I really do think TDD is important. I just also think that less people do it than claim to.

  79. Avatar
    corey.furman@gmail.com 1 day later:

    I’ve stewed over these two articles. I think to compare the positions of Joel and Bob is to compare apples and oranges, in the sense that what Joel seems to really be getting at – at least mostly – is the people at the extreme of perfection crafting vs. the people who manage to get something sellable, whereas UB is focused more on what all we should be striving for. I think there’s room to agree with both.

    At the end of the day, your boss wants both, but he much prefers the sellable product.

  80. Avatar
    sx2008_at_web.de 1 day later:

    Programming without TDD is like building a car with bandaged eyes! You feel the single parts (classes, units, methods) but you can’t see that some of them have defects.

    Many steps later the result doesn’t look like a car, it looks like crab.

    In the real world it’s very easy to identify defect parts by simply looking at it. In the world of software you have to test each part.

  81. Avatar
    Helmut Granda 1 day later:

    As most people have pointed out the most important thing for the client is the end product.

    They don’t care if you take them by bus, limo, or on a bike as long as they get to their destination and that sometimes forces a lot of people to become duct tape programmers.

    Also there are different types of software some have to be released in a few months (or even weeks), while others (as you pointed out) have years to be released so you can’t really compare both.

  82. Avatar
    Giorgio Malagutti 1 day later:

    I find very interesting what Apple has done with iPhone. The first release looked gorgeous, but it was missing very basic features, so their compromise was ‘cut the features, but keep quality very high’. That turned out to be a good choice because people wanted a gorgeous object more than they wanted a complete tool. On the other hand I am happy with the fact that I put my not-so-gorgeous, cheap Nokia on the table near my MacBook and I can use it as a bluetooth high speed modem, so I guess there is no universal answer. Joel values robustness and speed of development as indicators of quality while Bob values maintainable, clean code as an investment for the future and they are indeed both right. What is missing in the equation, though, is the end user. How will the average end user evaluate the quality of your product? Based on beauty? Ease of use? Robustness? Completeness? Flexibility? How important is it that you ship right now? Steve Jobs had clear answers to these questions and when you make tough decisions you should have them too.

  83. Avatar
    Marcelo L 1 day later:

    Sorry…..I’m not buying it. You’re thinking you can have it both ways utterly. Don’t in one sentence say “I’m the ‘Clean Code’ guy”, and then say, “I’d be suspicious if I didn’t see some duct tape”. Enngh. Sorry, it doesn’t fly both ways. If you have to strike a balance like that, then both sides must concede their radical views on the matter.

    Either you fly by the seat of your pants, or you’re strapped into your seat all comfy, cozy, and confined.

    All the TDD in the world can’t save bad design, and all the duct tape can’t keep shoddy workmanship together.

    Real artists ship ?! Bah ! You think artists ship ? Artists don’t ship, they simply stop at a point where they think “There’s nothing more I can do for this one”, and move on. You actually think Van Gogh pined away, questioning why didn’t find a place for just one more perfect star ? Actually, he was a little fruity, so perhaps he did. But the point is still that artists don’t ship, they simply STOP, and move on.

    And that’s perhaps the problem. In may ways you can’t “just move on” like an artist, or slave over code like “gee, did I miss some edge case unit test ?” ( and I’m not advocating simply glossing over that latter on, mind you ). But Geeze Louise, this is no way to make products. TDD is not the be-all-end-all, and neither is Duct Taping. They’re tools and skills for the toolbox. Period. So, “fit and finish” cannot be the end game, and neither can “it works now”.

  84. Avatar
    Przemek Pokrywka 2 days later:

    Two remarks from comments I like a lot:

    “At the end of the day, your boss wants both, but he much prefers the sellable product.” ()

    “TDD is not the be-all-end-all, and neither is Duct Taping” (Marcelo L)

    It is the quality and time, that matters. Properly done TDD helps to achieve this. However, it does require skills to go faster with TDD, and even then: “Sometimes we abandon a complex test case because we need to finish the task, and visual inspection or manual testing is sufficient” (your own words, Uncle Bob).

    That leads me to a question: forgetting about TDD for a while, what other choices do we have to ship quality software fast? There are IMO interresting directions you could explore, one of them being functional paradigm and, in general, programming at a higher level.

    Desing Patterns being workarounds for C++/Java limitations, many unit tests seem to be necessary only because of low-level and imperative-style of coding. For example, take an algorithm, that does an inner join of two tables in Java. That task pretty much begs for a unit test. Compare it with the equivalent SQL command: things got simple and clear, there is nothing to test now. The more you use functional style, the less tests you need. Parts of your code start to be too simple to test.

  85. Avatar
    JulesLt 3 days later:

    I don’t think the issue is that the average programmer is not smart, more that as soon as you start using any complex technique, it becomes harder to pick up and understand what’s going on with the code, regardless of how smart you are.

    Understanding the concepts of dependency injection or mix-ins is easy, writing code to take advantage of them is easy – understanding someone else’s code that makes heavy use of them . . . is far harder.

    I guess this is because in the ‘simple’ case, you simply need to read code to see what is going on – everything is explicit – in the ‘complex’ case, you need to build a mental – or paper – model of the design.

  86. Avatar
    Jim Cakalic 3 days later:

    “What makes anyone think that a programmer who writes mediocre code can write accurate and comprehensive tests? Is there some part of the brain that will kick in to accurately test a thing the programmer cannot comprehend adequately in the first place?”

    Actually, YES! My experience (25+ years developing software in all types of environments/languages) has been that TDD changes the way a programmer thinks while they are coding. Anybody who does it for any length of time comes out thinking differently. It’s like playing an instrument. Not everybody who picks one up is going to end up in Carnegie Hall. But music is proven to have stimulative effects on the brain and behavior far beyond the ability to play an instrument. The same is true for TDD, IMO.

    As for the Duct Tape Programmer I have three words for everyone: Red Green Show. Seriously. Google it. Find the videos on on YouTube. Better yet, here’s a link: http://www.ilaugh.com/the_red_green_show. This guy epitomizes what happens when the Duct Tape Paradigm is taken taken to an extreme. Note the bad ending that comes to each of his projects.

    Final note, that guy who can roll out of bed and come to work without a shower, combing his hair, brushing his teeth, and wearing yesterday’s dirty clothes - Joel’s ultimate duct tape programmer - is the same guy who can look you in the eye and lie to you without blinking when you ask him whether he’s tested and if his code is /ready/ to ship.

    Jim

  87. Avatar
    TDD 3 days later:

    another marketing strategy, huh?

  88. Avatar
    http://www.26sou.com/ 4 days later:

    HI i come form china

    this is my web http://www.26sou.com/ 26??? ?? ? ??

  89. Avatar
    Peter Williams 4 days later:

    I am not seeing the point of difference here.

    One of the behaviours of effective teams is that each person tends to hand off work to the next person in a way that gets the team closer to the objective they are trying to achieve. This goes for teams of cooks, carpenters and programmers.

    Avoiding work that does not get your team closer to its objective and testing are both good ways doing this. Avoidance obviously beats testing (some code will always have at least as many bugs as no code and take longer to implement) but if you have to write some code then you will usually be more effective if you can get it working in a way that it won’t come back to you for fixing later.

    Testing can help you get your code right before you hand it off and TDD is one way of testing.

    Applying any practice dogmatically tends not to be effective but TDD is one of the easier software management methodologies for pragmatic software developers to assimilate into their effective daily routines for the reasons described above.

  90. Avatar
    Mike Scott 4 days later:

    You don’t have to floss all your teeth – only the ones you want to keep ;-)

  91. Avatar
    Kyle 4 days later:

    Thank you for using the word ‘Balance’.

  92. Avatar
    dan 4 days later:

    Am I the only one who thinks that Joel is ironic in that post?

  93. Avatar
    cm 4 days later:

    The primary product of Joel’s company is bug-tracking software. Duct Tape Programmers ship shit with logs of bugs that need tracking and fixing. Coincidence?

  94. Avatar
    tim ottinger 4 days later:

    Come now.

    When I worked in taxes we hated confusing tax laws even though it made people pay for our services because they were as much trouble for us as them, nor do any of my friends in the medical field promote disease as a way to drum up business.

    Don’t pretend that JS will want to drum up bugs to bolster business. The world has plenty of bugs and feature requests.

    Let’s argue on merits more and sources less. I disagree woth spolsky partly but not because of fogbugs. When I disagree with bob it isn’t because he’s a consultant. Such attacks on character draw attention away from the essentials.

  95. Avatar
    TDD4Life 4 days later:

    i say don’t unit test ever, that way your software sucks for maintenance and my software can beat your software’ s ass.

  96. Avatar
    dan 4 days later:

    You guys should realize that Joel is making a people-point not a methodology point.

    Everybody in the world loves coders who repeatedly hit dates on time. Even better than coders who hit dates, coders who hit dates with clean code! Sometimes though the date is more important than the code cleanliness. Sometimes shit is acceptable to hit a killer date. Those are business decisions that teams have to make together. A perfect example is a start-up, you may have a very real date (for instance you’re about to run out of money). Its probably better to ship before that date.

    The good news is that you guys are right – most productive coders are generally relatively clean coders who write things like unit tests. Its really difficult to be a shitty programmer and still be productive. I’ve worked with a shitload of developers and I’ve never, ever seen that combo – shitty programmer who regularly hits dates. I’m sure JZW (the developer refered to) writes really good & clean code, he did ship a really stable version of netscape that was really damn successful… without any unit tests!!! Thats really f’n impressive!

    TDD is one great tool to deliver quality quickly. Sometimes TDD is not the answer though – here’s an example of when… some software can be really simple functionally but really difficult when dealing with scaling & performance (think Twitter). In that case a waterfall style with heavy performance tool dev’t might be a better fit than say TDD.

  97. Avatar
    noone@none.org 4 days later:

    jwz’ reaction: (from http://jwz.livejournal.com/1096593.html)

    “It’s such a strange article, in that it’s mostly favorable to my point of view but with such a breathless amazement to it, like he’s just discovered an actual unicorn or something. “Look, everybody! Here’s a hacker who actually accomplished things and yet he doesn’t fetishize the latest fads that I and all of my friends make our living writing about!”

    heh!

  98. Avatar
    Jason 5 days later:

    Has jwz actually DONE anything, anything at all, in the last 10 years? I thought he died and went to a night club.

    (Don’t take software advice from people who haven’t done anything new for 10 years)

  99. Avatar
    Some Developer 5 days later:

    > I want you to ship, but I don’t want you to ship shit.

    In the real-world, sometimes shipping shit becomes unavoidable. Any conscientious developer/manager, however, will address this shit at the next available chance. This is something you can do only in the field software!

  100. Avatar
    Chris E 5 days later:

    AFAICT jwz isn’t handing out software advice – the articles in the book reflect his time in the industry, and the fact that he’s chosen to apply himself differently since then shouldn’t necessarily

    When it comes down to it – he has a lot more public code out there than ‘uncle’ bob – and it’s generally a lot more functional.

  101. Avatar
    Chuck vdL 5 days later:

    A lot depends on the intended lifecycle of what you are producing. If you are in the early startup experimental phase, where you are trying different things to see what works, then fewer tests, lots of duct tape, and creating that fast go-cart design faster is a good thing. It’s the perfect approach for finding what works.

    However when you then need to move from that into something that’s going to go into production, and will last for a few, sometimes MANY YEARS (look at all the COBAL code out there still if you doubt this happens) longer than anyone ever thought, then you need quality maintainable code. You need unit tests and you need for developers to not be afraid to make fixes because they’ll more often break two other things for every thing they fix.

    Yeah sure you can make quality code without unit tests. in the same way however that a even a broken clock is right twice a day. You do it by getting lucky, not by design.

    What you can’t do without unit tests is RELIABLY and CONSISTANTLY make quality code that is not a nightmare for whoever has to maintain it.

    Writing production code without using BDD or TDD and ample unit tests is a lot like running a budget deficite. You’re taking the easy and expedient route to get an immediate result with what you perceive is less pain, and are expecting someone else down the road to pay for all your sins.

  102. Avatar
    Przemek Pokrywka 5 days later:

    @Chuck vdL: nothing more, nothing less

    At the same time if the messy-maintenance-nightmare parts are cleanly separated from the healthy unit-tested core, you can control the scale of damage. Should I always clean up such messy parts and arm them with unit-tests before shipping? The answer for me is: it depends mostly on their size and criticalness.

    I fully agree with respect to system treated as a whole. Lack of unit tests is a straight way to a nightmare. Keeping small messy parts here and there, when cleanly separated from healthy parts, is a whole different story for me though, given you really maintain the clean separation.

  103. Avatar
    bonder 6 days later:

    As a manager of application development, I have fired developers for not adopting TDD because I have seen the benefits of having the tests, and the cost of not having the tests.

    One person was so sure I was going to fire him that he quit before I could. He wasn’t wrong, just a bit faster than me. ;)

  104. Avatar
    M1EK 7 days later:

    I find it amazing that, just with the other portions of the Agile Religion, people are blithely making claims that would imply that it was nearly impossible to ship good software without using practice X, while they build their software on an ecosystem of other software which was practically 100% built without using practice X.

    Yes, TDD can be better than not using TDD. But if not using TDD was the disaster people claim it is, resulting in software so bad it can’t be trusted to function at all, you wouldn’t be able to build your software today, would you? Because neither Windows nor linux would work well enough to use; neither your Java nor your C# development environment would work well enough to use; your web browsers wouldn’t work well enough to use; etc.

    Some perspective is urgently required at this point.

  105. Avatar
    ed hardy 11 days later:

    Thanks for sharing these info with us! I was reading something similar on another website that i was researching. I will be sure to look around more. thanks…

  106. Avatar
    http://www.twitter.com/johnbish 11 days later:

    Where’s the ‘economy of scale’ discussion? TDD, Agile, and duct tape are all great, provided they fit with the product/project/organization.

  107. Avatar
    http://rrinaudo.blogspot.com 11 days later:

    I love a duct tape programmer when I need one, same as I love a great developer working with the latest technologies when I need one. What I don’t want is to get the guru when I need a duct tape programmer or a duct tape programmer when I need a guru. I think this all depends on which company you are. I guess if you let anybody choose what car he would like, he will not pick the same car he “can” buy. The same happens in software development. When you are short on money, you will not complain if the car taking you work is not a Ferrari, as long as it takes you to work. If you are loaded with money, you will get picky about the leather smell of your Rolls Royce Phantom you just purchased. Some times you need a cheap car to take you to work, sometimes you need a Ferrari. The critical thing is to know which car you need when you get it, and not always aim for the Ferrari.

  108. Avatar
    Martin H 12 days later:

    I consider myself as a duct tape programmer. But I also love my code to be elegant and clean. The missing factor is time. I usually get things up and running and afterwards, I like to do some backtracking and refactor my code. In that way I can assure the managers that my product will ship at a specific time, but not how pretty the code is going to be. For me it is more important to finish projects before deadline than code-elegancy.

  109. Avatar
    Bedwyr Humphreys 14 days later:

    Maintenance can require more effort than the first shipped version.

    Are we going to keep patching with duct tape for every release?

  110. Avatar
    John 14 days later:

    I understand that Joel may have some points, but why do I have to put up with the juvenile style of writing that it’s one side or the other. If I get bad service at a restaurant, must I keep silent just because they have great pizza?

    And quite frankly, while a newbie programmer can be excused for just “gettin er done” (translation:using StackOverlow and/or Google to find the answer), a senior programmer ought to know more than just hacks. Hacks are why I find 16 nested tables used for layout.

    A senior programmer ought to know of the following: GoF, Posa, Fowler, Beck, Liskov, Meyer, Crockford, Booch, TDD, DDD, IEEE, ACM, CI, and REST.

  111. Avatar
    Jubber 14 days later:

    The ideas are pretty nice: Keep it simple, ship code, don’t show off using advanced language features no one can understand let alone maintain. A shame Joel and his Duct tape guy show some incredible ignorance flaming C++ (and doesn’t give a good reason why). A book of 16 “greatest programmers”. Yeah, right.

  112. Avatar
    triple-dot 14 days later:

    For Christ’s sake, they were not flaming C++. This was 1994. Few people knew how to make a browser in 1994, or even what a browser was. Things like STL, templates or even namespaces DID NOT work in 1994. The most popular OS at the time was Windows 3.1, so multithreading did not work in 1994 either. It is from that perspective that they are offering their opinion. Do you really think that there is no template, or multithreading, or COM code in the Fog Creek source tree?

  113. Avatar
    Michael Hamilton 21 days later:

    I agree with most of the spirit Joel puts into his posts. He does write a good blog. An excellent blog, in fact.

    But I think it is a bad idea to simply ignore some of the very ignorant specific advice he proposes. At this point he is viewed by many novice programmers as a beacon of light shining in the darkness. Bad advice and silly stereotypes about languages and tools (c++, templates etc) being bad “because he says so” are just going to perpetuate the silly traction they already have in new developers.

    The messy go-kart analogy was also worrying.

    I’ve written a post (before I noticed you had one) detailing my thoughts on the duct-tape programmer post here, I encourage anyone to let me know what they think on my blog or via e-mail: http://mutedvision.net/blog/?p=44

  114. Avatar
    Lee 28 days later:

    Someone said that larger teams need more tests and smaller teams can get by without tests. That may be. Or may not.

    I have observed that smarter programmers can get by with less tests when they go to make changes to a system they are not familiar with. If you are going to hire dumber programmers then you definitely need more tests for two reasons. 1-It helps them find what they need to change and 2-It helps make sure they don’t mess up the working code.

    I have also observed that the way I draw the line between smarter and dumber programmers, the population on the “dumber” side is larger.

  115. Avatar
    Ryan about 1 month later:

    The basic issue here is that Spolsky is moving is backward and away from serious software engineering. Like real engineering duct tape can be used in high pressure situations, but once that situation has passed you really need to figure out what went wrong.

    The name Duct Tape programming reminds me of the Red Green show. Hardly a way of writing software.

  116. Avatar
    gucci louis vuitton shoes 3 months later:

    Welcome to Freshstyleshop, the hottest urban clothing site on the net! We offer great products from Gucci sneakers, prada sneakers, LV shoes, True Religion Jeans and many more! Our selection of products are always increasing for the fact that we have new items added weekly to our selection. All products on our site are already marked down 40-60% off retail price. Freshstyleshop also backs all its orders with a 110% satisfaction guarantee, making sure that our customers are left satisfied with the hottest products on the net.

  117. Avatar
    Real estate in india 3 months later:

    I wonder ifthe differences in opinion that you have with Joel come from the nature of your businesses. My understanding is that Headspring primarilally does contract work and FogCreek does boxed software. It seems the perspective of having to sell something you have already spent time and money on would lean toward the duct tape method. Where as a contracting outfit has already agreed on a price (for the most part) and are working do deliver something for which they have already been paid.

  118. Avatar
    Pål O. 5 months later:

    “Same can be said about unit tests: you can produce quality software without any tests. Companies do it every day. Programmers do it every day.”

    With a few years of experience, there is no way you can equate ‘shipped’ with ‘quality’.

    Shipped is a short term metric. Quality is something for the long haul.

    “Duct tape programmer” should be renamed to “Hit & Run programmer” imho.

  119. Avatar
    alan 6 months later:

    Way to go Bob. I’ve hated the idea of “stackoverflow” since the day it was announced. How can you trust an affiliate blogger and a capitalist?

  120. Avatar
    horse racing strategy 6 months later:

    Tape refers to a strip of long, thin matter , usually rolled up. Most commonly, it refers to: Recording media. Magnetic tape Cassette Tape

  121. Avatar
    face blog 6 months later:

    It is pretty interesting….. As an experienced C++ programmer I was able to collect some useful stuff from this post. Thank you.

  122. Avatar
    www.salesroles.com 6 months later:

    definitely a good article

  123. Avatar
    pakaya 6 months later:

    thank you! very interesting pakaya

  124. Avatar
    San Diego Attorney 6 months later:

    I find very interesting what Apple has done with iPhone. The first release looked gorgeous, but it was missing very basic features, so their compromise was ‘cut the features, but keep quality very high’. That turned out to be a good choice because people wanted a gorgeous object more than they wanted a complete tool. On the other hand I am happy with the fact that I put my not-so-gorgeous, cheap Nokia on the table near my MacBook and I can use it as a bluetooth high speed modem, so I guess there is no universal answer. Joel values robustness and speed of development as indicators of quality while Bob values maintainable, clean code as an investment for the future and they are indeed both right. What is missing in the equation, though, is the end user. How will the average end user evaluate the quality of your product? Based on beauty? Ease of use? Robustness? Completeness? Flexibility? How important is it that you ship right now? Steve Jobs had clear answers to these questions and when you make tough decisions you should have them too.

  125. Avatar
    Internet Sri Lanka 6 months later:

    This is an Interesting article

  126. Avatar
    ShAaNiG 6 months later:

    i say don’t unit test ever, that way your software sucks for maintenance and my software can beat your software’ s ass.

    Prudential West

  127. Avatar
    hanlyone 7 months later:

    Completeness? Flexibility? How important is it that you ship right now?

  128. Avatar
    parça TL kontör 7 months later:

    I like This site! Thank you for your information

  129. Avatar
    parça TL kontör 7 months later:

    I like This site! Thank you for your information

  130. Avatar
    ShAaNiG 7 months later:

    As for testing, you’re both right. TDD is the right way to do it, and it is also like flossing – everyone thinks it’s a great idea, but most people never get around to it.

    Wholesale Brand Name Clothing

  131. Avatar
    ShAaNiG 7 months later:

    Flossing every day is overkill, you won’t lose your teeth if you only floss every other day.

    Wholesalers

  132. Avatar
    song copyright 7 months later:

    I am always looking for a quality content and I am happy to find many useful things in your post. Its amazing for me that these programmers are not using C++, templates or COM. Thanks

  133. Avatar
    Last Digital 7 months later:

    I’m “Clean Code” guy too. Clean code makes it easier to fix problems that arise later.

    Br. Tom Digital Slr camera

  134. Avatar
    hcg wholesale 7 months later:

    This is a good article for the programmers. Being a programmer is not easy at all. I have been a programmer for some quite time but I have not able to proceed further. Thanks for this post and very good one.

  135. Avatar
    Ares 7 months later:

    It would be easier after they come across relevant case studies. Thanks for sharing the experience!

  136. Avatar
    San Diego Cleaning Service 7 months later:

    I’ve been thrown into so many situations where I had to develop a solution on the fly working off another developers code—so I can certainly relate to the tedious yet thrilling feeling of getting things patched up just in time.

  137. Avatar
    Find Jobs 7 months later:

    Being a programmer makes the day more interesting! always having to figure things like this out!!

  138. Avatar
    Poptropica 7 months later:

    Don’t delay a solution to a customer unless it is necessary. Don’t put processes in place that delay shipment unless the process has value.

  139. Avatar
    Web Development 7 months later:

    i agree with don, its ironic web design

  140. Avatar
    Toronto Houses for Sale 7 months later:

    The work itself is already rewarding. I am sure they will have more to employ later. Good luck for the team!

  141. Avatar
    jailbreak iphone 7 months later:

    I am sure they will have more to employ later. Good luck for the team!

  142. Avatar
    Indianapolis movers 7 months later:

    I want you to ship, but I don’t want you to ship shit.

  143. Avatar
    Gift Ideas for Men 7 months later:

    The programmer who spends weeks building the perfect structure does just as much harm to the project as the programmer who hacks a bunch of crap together. Neither have struck the balance that’s required.

  144. Avatar
    cheap purses 7 months later:

    i like your things, it is nice, haha

  145. Avatar
    obstructive sleep apnea 8 months later:

    Gd I can’t believe people are still coding with C++...

  146. Avatar
    online payroll 8 months later:

    In coding world so much happening and that also in very less time that you can can’t be with such trend always.

  147. Avatar
    Bakersfield CA Homes 8 months later:

    An excellent read. I can’t but agree. Good work!

  148. Avatar
    Saskatoon Real Estate 8 months later:

    It’s amazing how much the coding world is involved with in today’s society. This was a great read. Keep it up!

  149. Avatar
    Burnaby Homes 8 months later:

    What a funny term. “Duct tape programmers”! I totally agree though. Thanks for doing this article.

  150. Avatar
    Amarillo Texas Real Estate Agent 8 months later:

    Great points made. Thanks for posting!

  151. Avatar
    Laredo Texas Houses for Sale 8 months later:

    Thanks for this blog!

  152. Avatar
    http://www.ed-hardy-uk.com 8 months later:

    ed hrdy home

  153. Avatar
    Kent 8 months later:

    I agree that both duct tape programming and so-called clean programming have their pros and cons. I myself have dabbled with both sides. I tend to put in a bit of duct tape most of the times, though.

    mba application essays

  154. Avatar
    Daniel 8 months later:

    It is good to know that my duct tape programming, which is not so extreme, is still somehow accepted by other programmers. I just want to see the results; that is all.

    online jobs philippines

  155. Avatar
    Noticias Futbol Mexico 8 months later:

    very useful

  156. Avatar
    Rincon Latino Noticias Latinoamerica 8 months later:

    wow

  157. Avatar
    Remedios Caseros 8 months later:

    yeah!!

  158. Avatar
    boden vouchers 8 months later:

    What you see-highways, parking lots, stores-is all there is, or all that’s left to us here in the reign of globalized, totalized, paved-over, corporatized everything. The other long-term residents, whom I encounter at the communal laundry shed, are blue-collar people with uniforms and overalls to wash, and generally quiet at night.

  159. Avatar
    Kelowna Hotels 8 months later:

    I’ve worked with a number of top programmers what I found was the top programmers code was always difficult for others to edit. The best leave clean code, comments and can be checked and modified by others.

  160. Avatar
    Kamloops Hotels 8 months later:

    I agree, programmers need developers powerful tools but keep it simple for us.

  161. Avatar
    Wall Mounted Candle Holders 8 months later:

    Some days I feel just like this article…doing whatever I can to get the job done.

  162. Avatar
    Hand Painted Wine Glasses 8 months later:

    Most duct-tape style programming is due to a lack in time, or lack-luster developers.

  163. Avatar
    cheap louis vuitton handbags 8 months later:

    Thanks for a great time visiting your site. It’s really a pleasure knowing a site like this packed with great information.

  164. Avatar
    cheap louis vuitton handbags 8 months later:

    Forgot to tell you that I’m waiting for an answer… Thanks.

  165. Avatar
    free itunes download 8 months later:

    Very great information Thank You…....

  166. Avatar
    Custom Logo 8 months later:

    I think these frameworks are great tools. But I also think you should carefully restrict how and where you use them.

  167. Avatar
    IWB Holster 8 months later:

    Good point made here. You have to achieve balance in life. Whether you develop software or work in Real Estate sales, you have to make sure you don’t get caught up in the details, but you can’t do crappy work either.

  168. Avatar
    Rancho Santa Fe Homes For Sale 9 months later:

    Awesome post. I appreciate the resource. The duct tape programmer is king.

  169. Avatar
    seo 9 months later:

    SEO

  170. Avatar
    Couples Therapist Chino Hills 9 months later:

    @CustomLogo I agree that frameworks work and are useful in the right application, but they should be used with caution and reserved for the proper instance.

  171. Avatar
    Family Counseling Rancho Cucamonga 9 months later:

    Thanks for the awesome resources. I appreciate them

  172. Avatar
    louis vuitton 9 months later:

    Well , the view of the passage is totally correct ,your details is really reasonable and you guy give us valuable informative post, I totally agree the standpoint of upstairs . http://www.precision-mechanical.net I often surfing on this forum when I m free and I find there are so much good information we can learn in this forum!

  173. Avatar
    wholesale cell phone 9 months later:

    GREAT SHARING. THANKS FOR YOUR EFFORT. Perfect stuff as usual..Great post.Really an innovative and interesting idea. Thanks for informative listing.

  174. Avatar
    replica nike 9 months later:

    Funny how no one seems to catch the fact that some local Chambers wish to keep from being blown up by the likes of SIEU thugs that have proven they will beat up opposition minding their own business &/or bite fingers off of them, as they did last year, thus choose not voice their views at times.Like the fraud that called a press conference in DC late 2009—and were busted by the US Chamber. Hilarious!

  175. Avatar
    snow boot 9 months later:

    Thanks for all the great video advice. I agree that to succeed you have to have a passion for what you do career wise. My passion is in health, better health, coz when you are healthy you are happy.

  176. Avatar
    Moncler Jacket 9 months later:

    If you love digital design, then do it with a heart. You’ll be a great designer if you put in your heart into it.

  177. Avatar
    ds r4 9 months later:

    Perfect stuff as usual..Great post.Really an innovative and interesting idea. Thanks for informative listing.

  178. Avatar
    blackberry wholesale 9 months later:

    What is also interesting that this is a problem where simple attention, exposure, got it to disappear. Where the old “power of the pen” becomes reaffirmed in the internet age.

  179. Avatar
    titleist ap2 irons 9 months later:

    Our companies have been members of the local Chamber for many years. Why is MJ dead set against them? Because their views differ than yours? Interesting!

  180. Avatar
    Nike sports shoes 9 months later:

    Thanks for all the great video advice. I agree that to succeed you have to have a passion for what you do career wise. My passion is in health, better health, coz when you are healthy you are happy.

  181. Avatar
    honeycomb panels 9 months later:

    this was a really quality post.I wasn’t aware of the many ripples and depth to this story until I surfed here through Google! Great job.

  182. Avatar
    granite sink 9 months later:

    Thank you for this blog. Thats all I can say. You most definitely have made this blog into something thats eye opening and important. You clearly know so much about the subject, you have covered so many bases. Great stuff from this part of the internet. Again, thank you for this blog.

  183. Avatar
    ceramic lamp 9 months later:

    Pretty good post. I just stumbled upon your blog and wanted to say that I have really enjoyed reading your blog posts. Any way I’ll be subscribing to your feed and I hope you post again soon

  184. Avatar
    cell phone headset 9 months later:

    Nice one. I have stumbled and twittered this for my friends. Hope others find it as interesting as I did.

  185. Avatar
    pump shoes 9 months later:

    It seems that you have set many work in to your article and We require more of

    those about the net presently. I truly got a drag out of one’s article. We do not

    actually possess a lot in order to communicate reacting, I just wished to comment

    in order to respond incredible perform

  186. Avatar
    MBT Chapa 9 months later:

    interesting i am definatley going to look further into this.

  187. Avatar
    r9 irons 9 months later:

    The noblest search is the search for excellence

  188. Avatar
    ???? ????? 9 months later:

    Programming is isarel too in the fields of ??? ? ??? ?? ??? ???

  189. Avatar
    digitizing 9 months later:

    i really liked the topic you took to discuss over here

  190. Avatar
    Israel Offices 9 months later:

    Offices all over israel

  191. Avatar
    payroll software 9 months later:

    Joel is politically improving but he ask me that its view is not logical . But mostly peoples says that he creating nightmare .

  192. Avatar
    Australian Electricians 10 months later:

    I am happy to find much useful information in the post, writing sequence is awesome, I always look for quality content, thanks for sharing.

  193. Avatar
    Vancouver Real Estate 10 months later:

    What is funny is that all of this is transparent to the user. In a nutshell we only care if the system works, and how it is coded on backend means nothing to us!

  194. Avatar
    Buinding Contractor Australia 10 months later:

    This is a great blog to model mine after. I hope you don’t mind if i bookmark your site, so that i can easily find it again in the future. Cheers

  195. Avatar
    Cleaners Australia 10 months later:

    Great post I would like to thank you for the efforts you have made in writing this interesting and knowledgeable article.

  196. Avatar
    Painting Services 10 months later:

    I am hoping the same best effort from you in the future as well. In fact your creative writing skills has inspired me.

  197. Avatar
    wacom accessories 10 months later:

    this is a very active blog even months after it was written. very useful posting.

    kudos

  198. Avatar
    http://www.wheatgrasshome.com/ 10 months later:

    Duct tape anything is awesome.

  199. Avatar
    online sudoku solver 10 months later:

    seems like a very well received article, good job

  200. Avatar
    portland interior design 10 months later:

    uncle bob i have not read a single boring post from you. always so interesting. keep emmm coming

  201. Avatar
    dentist acton 10 months later:

    Pretty good post. I just stumbled upon your blog and wanted to say that I have really enjoyed reading your blog posts. Any way I’ll be subscribing to your feed and I hope you post again soon.

  202. Avatar
    angular cheilitis home treatment 10 months later:

    Ive been on angular cheilitis lately but Interesting article about programming, a side of it I don’t think many see,

  203. Avatar
    Matt Stevens 10 months later:

    Nice Post, seems like very well article, great Job.

  204. Avatar
    mortgage calculator with taxes 10 months later:

    It’s always nice when you can not only be informed, but also entertained! I’m sure you had joy writing this article.

  205. Avatar
    Diamond Blades 10 months later:

    Interesting info, do you know where I can find similar information? I’ve been trying to find out a little more about this kind of stuff, thanks for sharing it.

  206. Avatar
    euro lottery 10 months later:

    e-lottery takes its business seriously which is why Virtual World Direct is a member of the Lotteries Council of Great Britain.

  207. Avatar
    business goals 10 months later:

    that is useful tools, thanks.

  208. Avatar
    Funny Stories & Pictures 10 months later:

    Nice tips and I like your writing style. Provides a good insight and keeps us readers interested at the same time while providing something useful :) Thumbs up, thanks for sharing this.

  209. Avatar
    Intertnet hosting 10 months later:

    And sure there are “architecture astronauts” that understand how and why to use specific technologies, but in my experience most people only think they know these things, creating maintenance nightmares. Tell me I’m wrong – I dare you.

  210. Avatar
    Funniest videos 10 months later:

    Thanx for this superb post

  211. Avatar
    Discos Diamantados 10 months later:

    You’ve pretty much answered all my doubts with this and have done a great job with the article.

    Like yourself I’ve been blogging about this a bit and you’ve given me some good ideas for my next post. Thanks, I look forward to reading more :)

  212. Avatar
    juicy couture 10 months later:

    thanks for your sharing, I appreciate this. keep up the good work

  213. Avatar
    arnettetou 10 months later:

    Really your blog have nice post so I became the permanent visitor of your blog. Thanks for sharing this useful information.

  214. Avatar
    loan software 10 months later:

    while a newbie programmer can be excused for just “gettin er done” (translation:using StackOverlow and/or Google to find the answer), a senior programmer ought to know more than just hacks. Hacks are why I find 16 nested tables used for layout.

  215. Avatar
    Hængekøje 11 months later:

    Never been into this clean code, classes, templates ect. Just sit down and start coding. For that is what gets the job done and fast. Ok might be a pain for others to debug or myself some months later, but I would want it any other way.

  216. Avatar
    Posicionamiento Web 11 months later:

    Very nice programming article, I particularly enjoyed the quote:

    “So. Be smart. Be clean. Be simple. Ship! And keep a small roll of duct tape at the ready, and don’t be afraid to use it.”

    It’s very true, sometimes you have patch up what you’ve done and it can be a hassle but it’s better to fix it right then try to work around it.

  217. Avatar
    Scaffold boards 11 months later:

    unny how no one seems to catch the fact that some local Chambers wish to keep from being blown up by the likes of SIEU thugs that have proven they will beat up opposition

  218. Avatar
    2 post lift 11 months later:

    I simply said “Would you trust someone who ships bug tracking software to be worried about whether you ship bug free code”. You guys can dance around that question all you want

  219. Avatar
    Boat trailers used 11 months later:

    The solid principles are an instrument, just like design patterns and agile practices, whose continuous application constitute the process of agile design.

  220. Avatar
    mahjong 11 months later:

    I agree with the author. Joel Spolsky wrote sometimes not quite the right thing.

  221. Avatar
    türkçe porno 11 months later:

    thanks you

  222. Avatar
    türkçe pornolar 11 months later:

    tskler

  223. Avatar
    türkçe pornolar 11 months later:

    yes admin saol

  224. Avatar
    Rocking chair pads 11 months later:

    With a few years of experience, there is no way you can equate ‘shipped’ with ‘quality’.

    Shipped is a short term metric. Quality is something for the long haul.

  225. Avatar
    Outdoor roller skates 11 months later:

    It’s a good blog. It’s a really good blog. Oh I don’t mean his silly complaining about C++ or Templates or COM.

  226. Avatar
    Pole barn prices 11 months later:

    The spirit of simplicity, however, should be taken to heart. If you don’t need a “cool” technology, you are probably better off not using it. Keep things simple. Keep things uncomplicated. Don’t pack your system with every new idea you’ve heard.

  227. Avatar
    http://angular-cheilitis-cure.com 11 months later:

    You can worry about getting everything so “right” and so “cool” to the point that you never release anything. I would much rather master the uncomplicated and just do it!

  228. Avatar
    bryan furry 11 months later:

    What a utilization of tools and effects you did, It’s really amazing work, I am inspired by your work and obviously this blog is perfect.

    logo design

  229. Avatar
    discounted shopping 11 months later:

    I want to express my admiration of your writing skill and ability to make reader to read the while thing to the end. I would like to read more of your blogs and to share my thoughts with you. I will be your frequent visitor, that’s for sure.

  230. Avatar
    Free Hosting With Sitebuilder 11 months later:

    I want to thank you for this superb read!! I certainly enjoyed every little bit of it. I have bookmarked your site to check out the latest stuff you post.

  231. Avatar
    80th birthday gift 11 months later:

    Yeah, but Joel has told me that I’m not pretty enough to be a programmer tape. It suggests that you need special talent to be able to “Ship Code.” That’s ridiculous.

  232. Avatar
    cris2per 11 months later:

    Great article you wrote, really inspired me! I wish I can be like you :)

    tampa construction company

  233. Avatar
    steroids 11 months later:

    Hello! Took me time to read all the comments, but I really enjoyed the article. It proved to be very helpful to me and I am sure to all the commenters here! It’s always nice when you can not only be informed, but also entertained.

  234. Avatar
    placement argent 11 months later:

    C’est vraiment très bien lire pour moi. Doit accepter que vous êtes l’un des plus cool que j’aie jamais vu blogueur. Merci de poster cette information utile. C’est justement ce que je le cherche. Je reviendrai sur ce blog pour vous! Je bookmarked ce blog il ya quelque temps en raison du contenu utile et je ne suis jamais être déçu. Continuez votre bon travail

  235. Avatar
    cris2per 11 months later:

    Great article you wrote, really inspired me! I wish I can be like you :)

    click here

  236. Avatar
    Diamond Blades 11 months later:

    Just what I was looking for and quite thorough as well. Thanks for posting this, I saw a couple other similar posts but yours was the best so far. I hope it stays updated, take care.

  237. Avatar
    cheap vps 11 months later:

    Both Joel and UncleBob left off a very important part of software life cycle – what happens AFTER “git-r-done” in Joel’s case shipping.

    Guess who is going to have a maintenance/improvement nightmare on their hands? Not the TDD crowd for sure.

    Here are a couple of thought provoking nuggets on twitter by people who see through this:

    “never take software advice from a bug tracking system salesman”

    “The anti-TDD people ought to realize that many of the pro-TDD people did many years of development before coming to TDD. It’s not like we just haven’t experienced the joys of cowboy coding and once we do we’ll drop unit-testing as unnecessary.”

    “duct tape programmers – sacrificing tomorrow’s productivity, today!”cheap VPS

  238. Avatar
    Emma 11 months later:

    Nice post, You have great knowledge about this.

    Thanks for sharing with us

    Thanks alot.

  239. Avatar
    hcg wholesale 11 months later:

    Very inspiring posts! you got my attention on this. i’ll be looking forward to your next posts..

  240. Avatar
    netflicks 11 months later:

    Thanks so much this really helped me out!

  241. Avatar
    Dresses plus sizes 11 months later:

    I agree with you 90%... It is all true

  242. Avatar
    Privacy fence designs 11 months later:

    I believe in what you say…

  243. Avatar
    Designer Jewelry 11 months later:

    Babilla is a company dedicated exclusively to the production of fine handmade jewelry. Inspired by the designs of Tom Babilla, we have a team of expert jewelers who have decades of experience in the art of filigree and other handcrafting techniques in jewelry.

  244. Avatar
    sports betting bonus 11 months later:

    Well worth the read. Thanks for sharing this information. I got a chance to know about this.

  245. Avatar
    pariuri sportive 11 months later:

    Merci pour ce commentaire qui me donne envie de continuer à écrire ce genre d’articles

  246. Avatar
    jerseys NFL,nhl,mlb 11 months later:

    i have a good news to talk everyone, this is a good Jerseys company, they sale the NFL,NHL,MLB,NBA,SOCCER JERSEYS ONLINE, The price is good,and high quality. you can click it nflshoppingjerseys.com to see more

  247. Avatar
    Motorcycle hitch carrier 11 months later:

    Cool! That just makes sense for many’s minds, lol. We should be more optimistic in life.

  248. Avatar
    Juicy Couture 11 months later:

    Very interesting post. Thanks again.. Please Keep it Up!!

  249. Avatar
    Biludlejning 11 months later:

    I have been reading you post here – It was worth reading I must say

  250. Avatar
    paidsurveysuk 11 months later:

    This is very interesting post. Thanks for sharing.

  251. Avatar
    Reifen 11 months later:

    I really love the titel of this topic. But a lot of programmer work like this.:-)

  252. Avatar
    gucci mens 11 months later:

    Well , the view of the passage is totally correct gucci mens ,your details is really reasonable gucci belt for men and you guy give us valuable informative post, size11 gucci sneakers I totally agree the standpoint of upstairs. I often discount gucci jeans surfing on this forum classic gucci wallets when I m free and I find there are so much good information we can learn in this forum!

  253. Avatar
    gucci mens 11 months later:

    Well , the view of the passage is totally correct gucci mens ,your details is really reasonable gucci belt for men and you guy give us valuable informative post, size11 gucci sneakers I totally agree the standpoint of upstairs. I often discount gucci jeans surfing on this forum classic gucci wallets when I m free and I find there are so much good information we can learn in this forum!

  254. Avatar
    third party insurance 11 months later:

    I agree with you. Thanks.

    Learn what are different types of insurance policies and which types of insurance policies you need. If you have a car then you must have 3rd party car

    insurance. Third party insurance is mandatory.

  255. Avatar
    types of insurance 11 months later:

    This is a great post and worth reading. Thanks for sharing.

  256. Avatar
    carpet cleaner Monterey 11 months later:

    I completely agree with you. I really like this article. It contains a lot of useful information. I can set up my new idea from this post. Thanks so much!

  257. Avatar
    Homes for sale in new bern nc 11 months later:

    I agree and I love this article and loving the whole site! Thanks!

  258. Avatar
    Kim D. 11 months later:

    It is pretty interesting. Thanks for sharing

    Kim logo design

  259. Avatar
    Designer Jewelry 11 months later:

    Thank you for providing the perspective. I just read a part of the article, so I don’t know much what to say. Good luck for the new member!

  260. Avatar
    kidney stones symptoms 11 months later:

    Thank you for providing these details. Read about kidney stones.

  261. Avatar
    kidney infection symptoms 11 months later:

    Thank you. Read about kidney infection symptoms.

  262. Avatar
    Photography Canberra 11 months later:

    Your post is so interesting with a lot of good info . And I get what I need form it. Thanks a lot for sharing.

  263. Avatar
    Juicy Jewelry 11 months later:

    Intersting!!! Quote: The best comment is the comment that you didn’t have to write. The best code is the code that you didn’t have to write. The best design pattern is the design pattern that you didn’t have to use. The best inheritance hierarchy is the inheritance hierarchy that you didn’t have to use.

  264. Avatar
    placement immobilier 11 months later:

    One more nice script to learn. Very Glad that you shared this to us. It’s some pretty great info and pretty good post. I’m sure some people will really like this information cause this have genuine information for the readers.Thank you for sharing with us.

  265. Avatar
    zend guide 11 months later:

    Are there any medicinal herbs for asthma? Homo homini lupus means the original state in which man lives. The best is not toast the bread., But purely in an oven does, so the moisture is not removed from the bread, otherwise it s a bit hard.

  266. Avatar
    pandora charms 11 months later:

    There are a lot of great points here, I agree that it’s not verey relevant,but isn’t the point of it to show what people are currently saying about a topic.

  267. Avatar
    Wood privacy fence 11 months later:

    Yeah, but Joel has told me that I’m not pretty enough to be a programmer tape. It suggests that you need special talent to be able to “ship code.” That’s ridiculous. blog post Joel’s simply not logical. It’s blogs tape. But the spirit, although I suppose you feel today benevolent. This was an interesting read, however I am not sure I understand the main themes. Regardless it was a fun read!

  268. Avatar
    The Expatriate community portal 12 months later:

    This was exactly what i was searching for. Have been fighting for a while to do this, thanks for have posted.

  269. Avatar
    alex 12 months later:

    And and that is the difference, in my view, between good programmers and bad ones. Bad ones drop commenting, testing, frequent check-ins, and so on. Good ones maintain their development discipline but trim features, avoid over-engineering, etc. Our project about Home Wind Generator Systems home windw generator systems and power savings

  270. Avatar
    buynikedunks 12 months later:

    Thank you for taking the time to publish this information very useful! I?m still waiting for some interesting thoughts from your side in your next post thanks.

  271. Avatar
    facebook, caustic soda suppliers | caustic soda solid suppliers "> soda 12 months later:

    Thank you for taking the time to publish this information very useful! I?m still waiting for some interesting thoughts from your side in your next post thanks.

  272. Avatar
    facebook, Trisodium Phosphate manufacturers | ccnt 12 months later:

    Thank you for taking the time to publish this information very useful! I?m still waiting for some interesting thoughts from your side in your next post thanks.

  273. Avatar
    facebook, feed additives importer| feed additives manufacturers | feed additives suppliers |">feed 12 months later:

    Thank you for taking the time to publish this information very useful! I?m still waiting for some interesting thoughts from your side in your next post thanks.

  274. Avatar
    facebook, Sodium acid pyrophosphate suppliers | Trisodium Phosphat">Phosphate 12 months later:

    Thank you for taking the time to publish this information very useful! I?m still waiting for some interesting thoughts from your side in your next post thanks.

  275. Avatar
    facebook, silica suppliers | Hydrated silica suppliers | silica 12 months later:

    Thank you for taking the time to publish this information very useful! I?m still waiting for some interesting thoughts from your side in your next post thanks.

  276. Avatar
    video seyret 12 months later:

    hadi güzleim bu sende bekar gezelim

  277. Avatar
    Window screen repair 12 months later:

    I have a feeling Uncle Bob is trying to be politically correct this time on the opinions of Joel. “Being politically correct is to believe you can pick up a turd by the clean end.” UncleBob Both Joel and left a very important part of software life cycle – what happens after “git-r-done ‘in shipping case Joel. Guess who’s going to have a maintenance / improvement of nightmare on your hands? No crowd TDD for sure. Here are a couple of thought provoking nuggets Twitter by people who see through this: “Never follow the advice of a software bug tracking system seller” anti-TDD People must realize that many people pro-TDD did many years of development before reaching TDD. It’s not like they just have not experienced the joy of coding cowboy and once we’re going to drop the unit tests as unnecessary. ”” Developers “duct tape” – sacrificing productivity tomorrow, today! ” I love the photos too. You can just see candid smiles there.. So attractive, eventhough different eyes may regard it differently!

  278. Avatar
    qiem 12 months later:

    Thank you for taking the time to publish this information very useful! I?m still waiting for some interesting thoughts from your side in your next post thanks. news , Style and info

  279. Avatar
    Juicy Outlet 12 months later:

    Good

  280. Avatar
    Havelock NC Homes for sale 12 months later:

    This is great info. Thanks!

    Havelock NC Homes For Sale

  281. Avatar
    abercrombie fitch hoody 12 months later:

    The Duct Tape Programmer

    the issue is that the average programmer is not smart, more that as soon as you start using any complex technique, it becomes harder to pick up and understand what’s going on with the code, regardless of how smart you are.
  282. Avatar
    oyun 12 months later:

    ? ?? ? ? ?? ???? ?? ??, ? ? ????? ????? ? ?? ???? ?? ??? ??. ,

  283. Avatar
    gurgaon property 12 months later:

    thanks for publishing news.

  284. Avatar
    case pariuri 12 months later:

    very nice title. I totally agree with you in this. The fact is that 70% of these days programmers are more used to duct tape than the mouse or keyboard.

  285. Avatar
    Sample wedding programs 12 months later:

    As for flossing. If you is not flossing every day, you’re an idiot blithering. Do you have any idea how valuable are your teeth? You want them when they are 56? I do not want to hear excuses. I do not want to even think about not flossing. Free software dammit! Free software! This award is given for the place with a good condition of weather. So it’s really depend on their luck to win this award.

  286. Avatar
    wickless candles 12 months later:

    Thank you for taking the time to publish this information very useful! crystal potpourri | scented stones | scented rocks | wickless candles

  287. Avatar
    Vanity clothing store 12 months later:

    “I have a feeling Uncle Bob is trying to be politically correct this time on the opinions of Joel.” How come? I realy appreciate you guys taking the time to update these sites because they realy help me before i do anything to hastey. some excellent advice, froma very informative blog.

  288. Avatar
    revitol 12 months later:

    If it is difficult for him to determine the class to which his goods belong, he may ask the Trademark Agency for help with furnishing literature or sample brochures.

  289. Avatar
    grade b maple syrup 12 months later:

    I usually just get it done when i’m programming.

  290. Avatar
    4a poker 12 months later:

    Nothing highlights and makes this equation more important that running your own software company. The need for quality and the need to ship are both very, very important. Sometimes one sacrifices a little of one for the sake of the other. It is a sliding scale – perhaps like a see-saw. If you get over to one side too far you are lost. One can balance a segment somewhere near the middle – but go too far in one direction, and you are toast.

  291. Avatar
    poker online 12 months later:

    was horrified by Joel’s post for the most part. As usual, Bob takes what is useful and tosses what isn’t.

    As far as the stupid/mediocre programmers, unless someone shows them how to be better, they will always be stupid/mediocre. It’s up to any smart programmer who cares about the profession as a whole, to help them along and make them smart programmers too. Then, we all win.

  292. Avatar
    Grand Rapids Mi Homes For Sale 12 months later:

    I definitely see where you are coming from. I think what you are getting at is, you want a pretty clean code, but also don’t want to wait weeks for it get shipped.

  293. Avatar
    The Shawshank Redemption Movie Review 12 months later:

    I usually just get it done when i’m programming.

  294. Avatar
    James 12 months later:

    For the start. All of us were duct tape programmers anyway. And then, after couple of years doing it like that, when you have things done behind your back, only then you can improve your skills with clean code practices, simply because you already have experience.

  295. Avatar
    123 Slots Guide 12 months later:

    Thanks for posting this useful information. This was just what I was on looking for. I’ll come back to this blog for sure!

  296. Avatar
    Pomegranate health benefits 12 months later:

    Bob. Would respond with a comment on Joel’s blog, but I think I’ll link to your blog. This is almost exactly what I meant, but I would not have done as well as you. Wow, awesome website man! You have done a phenomenal job. I look forward to reading some of your other stuff! Great photos. Thanks again!

  297. Avatar
    james cartelo 12 months later:

    Hosting Paper

  298. Avatar
    hosting paper 12 months later:

    I usually just get it done when i’m programming.

  299. Avatar
    Piano chord chart 12 months later:

    If you skip the floss at least two bad things will happen: 1. The gums bleed because we are not accustomed to the activity. 2. You will no longer floss together. It is no longer a habit. Same for TDD. Do it all the time. No code if you do not write unit tests. My picks are through automated test first, no console applications. This is my first time i visit here. I found so many entertaining stuff in your blog, especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all the enjoyment here! Keep up the excellent wor

  300. Avatar
    wow account about 1 year later:

    I have ever heard that is one who delivers programming teams from the evil of ‘architecture astronauts’ who might otherwise derail a project with their faddish programming craziness. The say-no-to-over-engineering attitude of the Duct Tape Programmer stems not from orneriness, but from the realization that even a 50%-good solution that people actually have solves more problems and survives longer than a 99% solution that nobody has because it’s in your lab where you’re endlessly polishing the damn thing

  301. Avatar
    wheelchair lift about 1 year later:

    So basically you dont mind them cutting a few corners as long as the main structure of the programming code is still in place.

  302. Avatar
    combi boiler about 1 year later:

    You are right when you say The programmer who spends weeks building the perfect structure does just as much harm to the project as the programmer who hacks a bunch of crap together. There are always time pressures to complete the project and code can always be refined – a balancing act.

  303. Avatar
    Emergency Fuel about 1 year later:

    Pretty nice post. I just stumbled upon your blog and wanted to say that I have really enjoyed browsing your blog posts. In any case I’ll be subscribing to your feed and I hope you write again soon!

  304. Avatar
    Lån på dagen about 1 year later:

    I just couldnt leave your internet site ahead of saying that i genuinely enjoyed the excellent details you provide to your site visitors.. Will be again usually to verify up on new stuff you post!

  305. Avatar
    Lån uten sikkerhet about 1 year later:

    Den høyeste låntakere av forbrukslån uten sikkerhet er for det meste leietakere og hjemløse som dette er det eneste alternativet tilgjengelig for dem.

  306. Avatar
    Head gasket repair cost about 1 year later:

    I kid ‘Clean Code’ as well. Clean code makes me feel good. Great job mate! I like your work. Thanks for sharing

  307. Avatar
    http://boostgooglepagerank.com/ about 1 year later:

    I can see these coming useful for a very stylish website, possibly my next hairstylist or fashion website..

  308. Avatar
    one way link building about 1 year later:

    An invaluable resource and great addition to my favorites. The new features are well received on this end and will surely help the community share and progress more rapidly.

  309. Avatar
    @seo services company about 1 year later:

    very Nice and creative information Which makes a Great help for business prospective..All comments are worthful and always informative…

    Keep it up and Cheers

  310. Avatar
    parça tl kontör fiyatlar? about 1 year later:

    I usually just get it done when i’m programming.

  311. Avatar
    wink bingo reviews about 1 year later:

    I prefer unit testing and know the benefits of it. But if there is some quick patch or fix needed that when you have enough experience you can ship that patch without unit testing you would be mad not to. You can always clean it up later.

  312. Avatar
    Driving test tips about 1 year later:

    Though I think the metaphor has been stretched as far as it can go, here’s my thought on duct tape programming: Duct tape is a patch, not structure. You can’t build a house out of duct tape, but you can patch a hole until you have time to do the right thing. I plan to watch the final in a theatre, it looks so nice and amazing. Maybe you can try on it.

  313. Avatar
    Bridesmaid dresses under 100 about 1 year later:

    Joel would have an argument if it takes years for new versions of FogBugz. Very good post. The language barrier is difficult, but I think I understand the jist of what you are saying.

  314. Avatar
    pandora-bracelets-sale.com/ about 1 year later:

    They are now available in pandora bracelet charms more than 150 trends and styles and pandora jewellery thus carry out the need of people

  315. Avatar
    <a href=http://www.pandora-bracelets-sale.com/>pandora-bracelets-sale</a> about 1 year later:

    and so on.

  316. Avatar
    http://www.pandora-bracelets-sale.com/ about 1 year later:

    still more colors of bracelets for colon cancers

  317. Avatar
    chanel about 1 year later:

    http://www.gucci2handbags.com gucci

  318. Avatar
    kiem.org about 1 year later:

    I prefer unit testing and know the benefits of it. But if there is some quick patch or fix needed that when you have enough experience you can ship that patch without unit testing you would be mad not to. You can always clean it up later.

  319. Avatar
    chlamydia symptoms about 1 year later:

    Thanks for these tips.

  320. Avatar
    uk ppi claims about 1 year later:

    This was a very interesting story and hopefully I can learn more from your information. Its sad that there are people out there that want to hurt us. This is really sad to me.

  321. Avatar
    Mark about 1 year later:

    I`m very glad to be here on your site, it`s my fisrt time here but i have to say that your information posted on this site is very jocuri de dress uphelpfull to me, the more you learn more about the smarter you become. I`ll be back to read your site , lets hope that your future news will be as good as this ones are.I`m glad i found this site!

  322. Avatar
    Business analyst job description about 1 year later:

    I strongly agree with Uncle Bob: “The developer who spends weeks building the perfect structure makes exactly as much damage to the project as the programmer who hacks a lot of shit together. Nor have they achieved the required balance. Everyday I see two kinds of creatures around me. I think many of these issues are driven by a short-term. “ship now” requirement of the management is a way for future problems if not handled properly. Immature programmers never think about the maintenance or operational issues for the software running in a production environment. How quickly things maybe it’s a victory for today but a nightmare for tomorrow. The argument most inspiring Joel service is (quoting Zawinski)”A 50% solution, well that people have actually solves more problems and survive more than a 99% solution that no one has because it is in his laboratory where he is free to polish the damn thing. The shipping is a feature. A very important Good luck for the coordination. The teams have to ensure their capabilities first before engaging further. But I believe they will do excellent.

  323. Avatar
    property in india about 1 year later:

    I am really grateful to have the information from this blog.I am really grateful to have the information from this blog.I liked the blog as it has been written,the information i got from here.This is a good information i got from here.I really liked it and this information is worth remembering.

  324. Avatar
    north carolina criminal records about 1 year later:

    In the real world it’s very easy to identify defect parts by simply looking at it. In the world of software you have to test each part.

  325. Avatar
    tax relief about 1 year later:

    Duct tape is a patch, not structure. You can’t build a house out of duct tape, but you can patch a hole until you have time to do the right thing.

  326. Avatar
    tongtong about 1 year later:

    Comply with pandora vogue, many European jewelry pandora bracelets designers have designed pandora charms many flowers, aside from the small animals, meticulous such traditional elements of chromatic gem, generally cheap pandora speaking, Pandora jewellery has rejected traditional gem “showily woman flavor. Many world famous jewelers are highly valued neutral in the rise of the jewelry industry.

  327. Avatar
    Quality Backlinks about 1 year later:

    This is a very intriguing post, I was looking for this knowledge. Just so you know I found your web site when I was searching for blogs like mine, so please check out my site sometime and leave me a comment to let me know what you think.

  328. Avatar
    <a href="http://louisvuitton-handbag.org/blog/replica-louis-vuitton-wallet.html">Replica Louis Vuitton Wallet</a> about 1 year later:

    I was looking for this knowledge. Just so you know I found your web site when I was searching for blogs like mine, so please check out my site sometime and leave me a comment to let me know what you think.

  329. Avatar
    <a href="http://backlinkhelp.com/">Quality Backlinks</a> about 1 year later:

    ds

  330. Avatar
    Basement waterproofing cost about 1 year later:

    For those who do not believe that unit tests are needed: trying to come to a project that has been going on for two years that does NOT have evidence of unity and a lot of complex logic, messy. Then try fixing defects in the draft, and even add new features. It’s a nightmare! Developers are afraid to touch the code if it breaks existing code. And they are right because they have no way of knowing if I broke anything. Unit testing is essential. Thanks a lot for enjoying this beauty article with me. I am apreciating it very much! Looking forward to another great article. Good luck to the author! all the best!

  331. Avatar
    Tower 200 about 1 year later:

    There’s nothing wrong with any of these things, and they all have benefits to provide. So long as you use them for their benefits, instead of for their “cool-ness” (COM? Cool? Well, Joel’s an old guy like me.) you’ll be fine. Tower 200

  332. Avatar
    slim patch about 1 year later:

    wanna loose weight the easy way ? Check here slim patch

  333. Avatar
    Dog Bark Collar about 1 year later:

    You are able to produce quality code without you have to write unit tests. However, how do you know if it’s quality code? I really want to know.

  334. Avatar
    ChrisBuld about 1 year later:

    If you aren’t flossing EVERY SINGLE DAY, you are a blithering idiot. Do you have any idea how valuable your teeth are? Do you want to have them when you are 56? I don’t want to hear the excuses. I don’t want you to even THINK about not flossing. FLOSS damn you! FLOSS!

  335. Avatar
    online about 1 year later:

    This really is an awesome post, I’m happy I recently found. I have been trying to find guest writers for my blog so if you ever decide that’s something you are interested in please feel free to contact me. I will be back to look at out more of your articles later

  336. Avatar
    Backlink about 1 year later:

    Great post! I’m just starting out in community management/marketing media and trying to learn how to do it well – resources like this article are incredibly helpful. As our company is based in the US, it’s all a bit new to us. The example above is something that I worry about as well, how to show your own genuine enthusiasm and share the fact that your product is useful in that case high pr backlinks

  337. Avatar
    amazing work about 1 year later:

    It’s really amazing work, I am inspired by your work and obviously this blog is perfect. thank you Best Buy USA Best buy Store Discount electronics

  338. Avatar
    coach about 1 year later:

    As our company is based in the US,Puma Shoes For Men it’s all a bit new to us. The example above is something

  339. Avatar
    Ancient Coins Collecting about 1 year later:

    What are the main languages these programmers are using? I thought C++ and VB are the best sources

  340. Avatar
    apartments about 1 year later:

    Great information. Thank you for your wonder full post..

  341. Avatar
    ballbusting about 1 year later:

    that is nice… we have great tips for programming above

  342. Avatar
    Funny street signs about 1 year later:

    Amazing post by Joel, since I actually find good content there, for example, your ost on coding has been useful. TDD is a design tool that allows me to write better code faster. There is a line between that and / overvaluation. It is clear that Joel does not see it that way, unfortunately. Well, that’s a good thing to know. Finally someone would voluntarily do the job.

  343. Avatar
    Epoxy floor paint about 1 year later:

    Really great post, related to programming idea. TDD is very useful but practically and emotionally I cannot write test code all times. Hence I like Joel’s view more. Keep on updating like that..

  344. Avatar
    Juegos about 1 year later:

    I agree with Uncle Bob, all the best to all duct tape programmers.

  345. Avatar
    one way link building about 1 year later:

    Nice article, thanks for sharing this information. Good to know that this topic is being covered also in this web site.

    <a href=”http://highpagerankbacklinks.info/ ”>one way link building

  346. Avatar
    <a href="http://www.easysavercancellations.com/cancel-my-rewards/">ez saver</a> about 1 year later:

    The C++ programming language is very powerful and popular, but there is a downfall:it’s large and too complex for everyone to understand and learn. But bigger companies still prefer it over Java due it’s capability.

  347. Avatar
    News about 1 year later:

    So how would we avoid these guys when we hire someone for our news journal’s web site?

  348. Avatar
    beste schweizer seiten about 1 year later:

    As for testing, you’re both right. TDD is the right way to do it, and it is also like flossing – everyone thinks it’s a great idea, but most people never get around to it. regards

    beste schweizer seiten

  349. Avatar
    Tower 200 about 1 year later:

    Funny how no one seems to catch the fact that some local Chambers wish to keep from being blown up by the likes of SIEU thugs Limousine Service Orange County

  350. Avatar
    Diamond plate sheets about 1 year later:

    Why not stress to anyone that even with TDD can reduce the waiting time of the initial phases of development and the vessel before him? I’m noticing that I can spend days TDD without starting a debugger! How can you check your work without automated testing? Manually! So in effect you create manual tests on his head and then not even gracious enough to share with the developer next (to say nothing of his future self) and somehow this makes you a “nice” of development? There are times when it makes sense from a business perspective to cut corners and early vessels. But at the end of the day we have to realize that this is a debt we must pay. Otherwise, we are being dishonest with customers about the amount of work to do in a given time and prepare for future expectations or angry customers. You have a point. Very insightful. A nice different perspective

  351. Avatar
    Olive oil for hair about 1 year later:

    I felt compelled to comment on Joel’s post too. I am delighted that posts an answer, as it gives me a place to put my thoughts! I do not agree that our only job is to ship a product. Maybe that makes sense if you’re competing solely on price, but companies that want to work for the price of use and quality to differentiate itself from competition. That means the job is time to send something that works, and is built with a certain amount of care and precision to serve future customer needs, as well as immediate. The excess tape, and an attitude of “I do not need no stinking fancy pants” are a bad thing. As you said, sometimes the clean application of either duct tape is the right decision. Sometimes is not. And anyone who says they are disposable unit testing has not found evidence of meetings is as much about writing the right as abutting CODE WORKS TO ENSURE THE CODE OF LAW. Well, back to work. Where do I put my liquid nails …. I agree with you 90%... It is all true

  352. Avatar
    norwesco water tanks about 1 year later:

    great !! you guys have done good work for blog so that I must read and come again and again on it. Thanks for this

  353. Avatar
    pariuri online about 1 year later:

    I am interested in this article. Please if you send me the email address more about this article? thanks

  354. Avatar
    Stages of Beauty about 1 year later:

    I usually just get it done when i’m programming.

    Stages of Beauty

  355. Avatar
    Program Score A about 1 year later:

    It would have been much more easier to program if Java was used. It gives much more flexibility to the developer.

  356. Avatar
    College party themes about 1 year later:

    “The same is true of unit testing: it can produce quality software without any evidence.” I could not disagree more. I would like to change this, “can produce software without any evidence.” But the quality of software, I think not, and certainly not in the software world today. I think the “quality” term is somewhat a relative term, and also very subjective. The “quality” can mean something slightly different to all developers, because the technologies used and available, as well as the actual time period being referenced. Is to improve the readability of quality? Conciseness? Performance? Maintainability? Some of them may be at odds with each other. These, no doubt, priority will be different depending on the language and resources, which could also relate to the period of time (ie ruby, taking into account that the memory footprint, theoretically it would have been a viable solution 15 years ago, given the cost and capacity of system memory). What could have been considered the “quality” The world is becoming more and more weird this day. It’s okay, let’s be open mind about it.

  357. Avatar
    mike about 1 year later:

    really good written article, i have add you for my favorites. regards

  358. Avatar
    ????????? ???????? about 1 year later:

    I also would like to know how clients could avoid such duct tape programmers in advance!

  359. Avatar
    harley dubai about 1 year later:

    No buyer of software really accepts to be an alpha- or beta-testa of buggy software unless this software has a comparative advantage and is sort of unique!

  360. Avatar
    Diatomaceous earth about 1 year later:

    It’s a mind blowing news that they have a great stuff of knowledge and want to share with others. Really a great news about them, thanks for sharing this information. They are really blatant programmers. Thanks !

  361. Avatar
    Oberstdorf about 1 year later:

    The quality of programmers really differs. But how to measure this difference and how to improve quality?

  362. Avatar
    offshore company about 1 year later:

    Thanks for sharing this great information! The risk of getting duct tape programming results sold as clean coding work are high. We should try to minimize that when place an order.

  363. Avatar
    carpet cleaners in san diego about 1 year later:

    later versions that AOL made were not based on the original code from Mr. Duct Tape. The open source codebase was abandoned because it was so bad.

  364. Avatar
    Guns about 1 year later:

    If put to the coals, I would have to admit, to my shame, that I’m a habitual duct tape type of coder.

  365. Avatar
    New boat salvage yards about 1 year later:

    If you do not floss every day, are an idiot. Do you have any idea how valuable your teeth are? Want to have when they are 56? I do not want to hear excuses. I do not want to even think about not flossing. Free software dammit! Free Software! ’@ Uncle Bob who have not traveled enough, obviously, many people in the world and floss their teeth perfectly well into old age. Nowadays, every kind of agency have already build a server. This has shown up that this is one of major needs of an agency.

  366. Avatar
    jump manual about 1 year later:

    Jamie Zawinski is what I would call a duct-tape programmer. And I say that with a great deal of respect. He is the kind of programmer who is hard at work building the future, and making useful things so that people can do stuff.

  367. Avatar
    long island short sale about 1 year later:

    You have done a marvelous job by exploring this subject with such honesty and depth. Thanks for sharing it with us!

  368. Avatar
    Furniture New York about 1 year later:

    Do you want to have them when you are 56? I don’t want to hear the excuses. I don’t want you to even THINK about not flossing. FLOSS damn you! FLOSS! regards

    Furniture New York

  369. Avatar
    http://www.pupdogtraining.com about 1 year later:

    you do not floss every day, are an idiot. Do you have any idea how valuable your teeth are? Want to have when they are 56? I do not want to hear excuses. I do not want to even think about not flossing. Free software dammit! Free Software! ’@ Uncle Bob who have not traveled enough, obviously, many people in the world and floss their teeth perfectly well into old age.Regards, Thanks.

  370. Avatar
    Sat Nav about 1 year later:

    I have been reading your posts regularly. I need to say that you are doing a fantastic job. Please keep up the great work.

  371. Avatar
    Deck Jets about 1 year later:

    It’s good to see you posting on this topic, I need to bookmark this web site. Keep up the good work.

  372. Avatar
    http://universitiestips.zoomshare.com/2.shtml about 1 year later:

    I do not want to hear excuses. I do not want to even think about not flossing. Free software dammit! Free Software! ’@ Uncle Bob who have not traveled enough, obviously, many people in the world and floss their teeth perfectly well into old age.Regards, Thanks.

  373. Avatar
    Custom Torsion Springs about 1 year later:

    I think that any programmer that’s not smart enough to use tools like that is probably not smart enough to be a programmer period.

  374. Avatar
    moncler about 1 year later:

    I don’t mean his silly complaining about C++ or Templates or COM. (Although doing just about anything that involves Visual Studio is something I don’t want to think about.) I think you can ignore the specifics of what Joel said.

  375. Avatar
    Mesothelioma Law Firm about 1 year later:

    You always can publish something absorbing that does not waste minutes of your life like what you see on countless other sites.

  376. Avatar
    Magento Commerce about 1 year later:

    I’d be interested to read a blog post from someone who has some experience with photoshop on which pictures are shopped and which are not…

  377. Avatar
    Pandora Charm Bracelet about 1 year later:

    re an idiot. Do you have any idea how valuable your teeth are? Want to have when they are 56? I do not want to hear excuses. I do not want to even think about not flossing. Free software dammit regards

  378. Avatar
    blush about 1 year later:

    It would have been much more easier to program if Java was used. It gives much more flexibility to the developer. mezzi review

  379. Avatar
    blush about 1 year later:

    It would have been much more easier to program if Java was used. It gives much more flexibility to the developer. mezzi review

  380. Avatar
    chanel store about 1 year later:

    I hope to leave my comments here. Thank you

  381. Avatar
    disney family vacations about 1 year later:

    you can produce quality software without any tests. Companies do it every day. Programmers do it every day.

  382. Avatar
    Dell Laptop Briefcase about 1 year later:

    I do not want to hear excuses. I do not want to even think about not flossing. Free software dammit regards, Thanks

  383. Avatar
    Dell Laptop Briefcase about 1 year later:

    Do you have any idea how valuable your teeth are? Want to have when they are 56? I do not want to hear excuses. Thanks

  384. Avatar
    jacketsmoncler about 1 year later:

    Moncler Men’s styles are popular worldwide as we can see those Moncler series are frequently showed in the Paris Fashion Week, included theMoncler Coat, Moncler Boots, Moncler Vest andMoncler Jacket . As you know, the soft, comfortable, fashionable Moncler are value for you to keep in winter which is famous around the Hollywood stars. The designer of Moncler jackets who is Thom Browne nowadays launched the new themed by sports.

  385. Avatar
    Pauline about 1 year later:

    I need time to understand. for Scratch2cash you can play today

  386. Avatar
    Local Community about 1 year later:

    This is definitely a blog that people need to get behind. The problem is, no one wants to do a great deal of reading and not have something else to stimulate the mind.

  387. Avatar
    Moncler Online about 1 year later:

    As a rare astronomical phenomena, I do not know the causes of the ancient solar eclipse occurred make them extreme panic, because if the sun disappeared, then life on earth will be doomed to extinction, so almost all the ancient peoples thought that the eclipse is a bad omen.

  388. Avatar
    canada goose about 1 year later:

    we offer you canada goose to enjoy the winter!! canada goosewarm canada goose parka protection canada goose expeditionfashionable canada goose jakkerlet you have Happy winter canada goose jakkeGood quality

    Canada goose jakkesnug Goose jakkeYou’re Worth It Canada goose jakkerremain stylish Canada goose parkais a trustworthy brand Canada goose tilbudis the best one

    canada goose jacka vogue goose jacka pretty canada goose jackordifferent designs outlet canada goose amazing canada goose Expedition smooth welcome to buy!thank you!

  389. Avatar
    Jenne about 1 year later:

    Looks like there are lot of spammer out there ! Quentin, from Orchibloom

  390. Avatar
    Marine fuel tank ideas about 1 year later:

    Please rest and TDD shit. I have watch the simulation of the connection. I think that’s good enough to be installed in that building. Good luck, then.

  391. Avatar
    Microdermabrasion Scrub about 1 year later:

    You always can publish something absorbing that does not waste minutes of your life like what you see on countless other sites. regards Microdermabrasion Scrub

  392. Avatar
    tattoos online about 1 year later:

    I have been reading your posts regularly. I need to say that you are doing a fantastic job.

  393. Avatar
    Office manager job description ideas about 1 year later:

    For those who do not believe that unit tests are needed: trying to come to a project that has been going on for two years that does NOT have evidence of unity and a lot of complex logic, messy. Then try fixing defects in the draft, and even add new features. It’s a nightmare! Developers are afraid to touch the code if it breaks existing code. And they are right because they have no way of knowing if I broke anything. Unit testing is essential. By working faithfully eight hours a day you may eventually get to be boss and work twelve hours a day.

  394. Avatar
    tinnitus about 1 year later:

    That makes life easier on a decent sized display. Nice One!

  395. Avatar
    San Diego Plumbing about 1 year later:

    it has blog to be exactly I needed. I appreciate the information, well thought for anybody.

  396. Avatar
    San Diego Plumbing about 1 year later:

    I definitely enjoying every tiny bit of it and I have you bookmarked to look at new things you post.

  397. Avatar
    San Diego Electrical about 1 year later:

    ’m so excited to be working with these. We really had a great time despite the chill and they warmed things up really fast. I know I say this all the time but I do have the best job in the world.

  398. Avatar
    New Pull behind mower about 1 year later:

    Okay, with the exception of the discussions. Hardly anyone is smart enough to use wireless without getting into trouble. They are part of the problem, not part of the solution. We must find a way to sweeten and demystify the techniques of functional programming so we can have competition without dementia. Blogs Very informative article. I’ve found your blog via Yahoo and I?m really glad about the information you provide in your posts. Thank You for sharing this very informative article… Regards

  399. Avatar
    LV Charms about 1 year later:

    There are so many variations available in LV Charms. If you like something trendy then you can always go for something like Tresor Wallet which is among items in new collection of 2010. Tresor wallet’s main feature is its zip which divide whole wallet in two different parts where one can place their belongings like credit cars, keys, and bills. Outer side of this wallet gives look of canvas with unique color combination. There are so many other varieties as well, so you just need to make your selection and grab one for yourself.

  400. Avatar
    Discount Mulberry about 1 year later:

    Men always love to show their physique and in winter, it is quite tough to wear short sleeveless shirts. Moncler has its own way of dealing with such a problem.

  401. Avatar
    LV Charms about 1 year later:

    There are so many variations available in LV Charms. If you like something trendy then you can always go for something like Tresor Wallet which is among items in new collection of 2010. Tresor wallet’s main feature is its zip which divide whole wallet in two different parts where one can place their belongings like credit cars, keys, and bills. Outer side of this wallet gives look of canvas with unique color combination. There are so many other varieties as well, so you just need to make your selection and grab one for yourself.

  402. Avatar
    LV Messenger Bag about 1 year later:

    The LV Messenger Bag include all the best designs for luxury of the customer. The collection has Monogram Perfo Pochettes, Speedy satchels, and compact wallets. As a tip in buying a Louis Vuitton handbags, make sure that you purchase it in a smoke free location. The cigarette smoke tends to enter the fabric of the product down to its patent leather materials which are very hard to get rid of.

  403. Avatar
    LV Dog Carrier about 1 year later:

    With Louis Vuitton Knockoffs, you can buy LV items for as low as $99.00. The list includes a Louis Vuitton Monogram Beverly Clutch, Louis Vuitton Blois Bag, Louis Vuitton Damier Ribera, Louis Vuitton Dentelle Batignolles Horizontal, LV Dog Carrier and a Louis Vuitton Dentelle Speedy 30.

  404. Avatar
    PPI Claims about 1 year later:

    Interesting Post. Keep updating the good stuff.

  405. Avatar
    New Green screen backgrounds about 1 year later:

    Amazing post by Joel, since I actually find a good content there, for example, the TDD is a design tool that allows me to write better code faster. There is a line between it and under / overvaluation. It is clear that Joel does not see it that way, unfortunately. I think it’s about the news on the media, reporting how the government wanted to make some change in the regulations. I still don’t believe it, though.

  406. Avatar
    RH302 about 1 year later:

    I wanted to thank you for this great read!! I definitely enjoying every little bit of it.I have you bookmarked to check out new stuff you post.Thank you for sharing the nice post with useful information.

  407. Avatar
    pandora uk about 1 year later:

    Did I say anything in regards to Uncle Bob? You guys are fun with your pretending to argue a point I never made. I simply said “Would you trust someone who ships bug tracking software to be worried about whether you ship bug free code”.

  408. Avatar
    custom usb drives about 1 year later:

    You have a good taste, I like these.

  409. Avatar
    Aluminum Cosmetic Cases about 1 year later:

    You guys are fun with your pretending to argue a point I never made. I simply said “Would you trust someone who ships bug tracking software to be worried about whether you ship bug free code”.Thanks

  410. Avatar
    http://zimmerlawsuits.net about 1 year later:

    thanks for sharing this. keep up the good work.I really appreciate this sharing this.Nice and informative article thanks for sharing this great info with us. zimmer knee replacement

  411. Avatar
    pandora about 1 year later:

    As a seoer, i think less code is better for search engine, so we always use yslow and firebug to check our site.

  412. Avatar
    Green Tea Supplement about 1 year later:

    I definitely enjoying every tiny bit of it and I have you bookmarked to look at new things you post. regards Green Tea Supplement

  413. Avatar
    directv deals about 1 year later:

    directv deals The changes assume to be rational so far. Such advance needs to be bit-by-bit though. We can’t change instantly. There should be action aural them.Thanks

  414. Avatar
    Dexter about 1 year later:

    Thanks for posting this, Im not that good in proggraming and I find this blog informative. thanks :)

    depuy asr attorney

  415. Avatar
    Lederpuschen about 1 year later:

    Thanks for the post. I am absolut with you. If I want to have something coded I don´t want to get overloaded scripts. That is – in my opinion – really the difference between coder and want-to-be-coder. You can find this phaenomen on also a lot of web-sites. Nice looking sites can be developed by nearly everyone (if you have the right tools) – but a smart and well coded site is really something you have studied a long time. -> Sorry for my bad english ;o) Kind regards from Germany

  416. Avatar
    Zahne bleichen Backpulver about 1 year later:
    Useful information like this one must be kept and maintained so I will put this one on my bookmark list! Thanks a lot for this wonderful post and hoping to post more of this! Zähne bleichen Backpulver
  417. Avatar
    Erektionsprobleme about 1 year later:
    Thanks for a nice share you have given to us with such an large collection of information. Great work you have done by sharing them to all. Simply superb.I am happy to find this post very useful for me, as it contains lot of information Erektionsprobleme
  418. Avatar
    New Engagement photo ideas about 1 year later:

    Why not stress to anyone that even with TDD can reduce the waiting time of the initial phases of development and the vessel before him? I’m noticing that I can spend days TDD without starting a debugger! How can you check your work without automated testing? Manually! So in effect you create manual tests on his head and then not even gracious enough to share with the developer next (to say nothing of his future self) and somehow this makes you a “nice” of development? There are times when it makes sense from a business perspective to cut corners and early vessels. But at the end of the day we have to realize that this is a debt we must pay. Otherwise, we are being dishonest with customers about the amount of work to do in a given time and prepare for future expectations or angry customers. You can become blind by seeing each day as a similar one. Each day is a different one, each day brings a miracle of its own. It’s just a matter of paying attention to this miracle.

  419. Avatar
    Pandora about 1 year later:

    Each day is a different one, each day brings a miracle of its own. It’s just a matter of paying attention to this miracle.

  420. Avatar
    Teaching Certificate about 1 year later:

    I am pretty sure that the notion that citizens must purchase a product from private corporations, is not a part of any socialist philosophy I’m familiar with. regards Teaching Certificate

  421. Avatar
    Ned i vekt about 1 year later:

    I was very pleased to find such wonderful source of info as your site is! I wanted to thank you for this great read!! I definitely enjoyed every post I managed to go through.

  422. Avatar
    Penny Auction Sites about 1 year later:

    Applying any practice dogmatically tends not to be effective but TDD is one of the easier software management methodologies for pragmatic software developers to assimilate into their effective daily routines for the reasons described above.

  423. Avatar
    Online Insurance Leads about 1 year later:

    Thanks for all the great video advice. I agree that to succeed you have to have a passion for what you do career wise. My passion is in health, better health, coz when you are healthy you are happy.

  424. Avatar
    Aluminum Cosmetic Cases about 1 year later:

    TDD is one of the easier software management methodologies for pragmatic software developers to assimilate into their effective daily routines for the reasons described above.THANKS

  425. Avatar
    http://www.altogenlabs.com/ about 1 year later:

    software management methodologies for pragmatic software developers to assimilate into their effective daily routines for the reasons described above.THANKS

  426. Avatar
    Pandora about 1 year later:

    pragmatic software developers to assimilate into their effective daily routines for the reasons described above.

  427. Avatar
    garden24384 about 1 year later:

    usually run into a bunch of junk when it comes to this niche, but this is some good useful information I found here.

  428. Avatar
    garden24384 about 1 year later:

    Great information! I just want you to know that this blog really gonna help me to broaden my knowledge.

  429. Avatar
    garden24384 about 1 year later:

    This is a very informative and interesting blog. I am going to send the link of this blog to a friend of mine who is interested in a similar blog. I am sure he will have a good time reading through it.

  430. Avatar
    http://ofertapariuri.info about 1 year later:

    Thank you very much for the information, great post.oferta pariuri

  431. Avatar
    Cruiser Bikes about 1 year later:

    Amazing content worth reading. Really interesting article. Thanks for your precious time & sharing this content with us.

  432. Avatar
    Pehari about 1 year later:

    Thanks for the post. I am absolut with you. If I want to have something coded I don´t want to get overloaded scripts. That is – in my opinion – really the difference between coder and want-to-be-coder. You can find this phaenomen on also a lot of web-sites. Nice looking sites can be developed by nearly everyone (if you have the right tools) – but a smart and well coded site is really something you have studied a long time. -> Sorry for my bad english ;o)

  433. Avatar
    pandora about 1 year later:

    I enjoyed reading your nice blog. I see you offer priceless info. Congratulations, and keep posting to us. Do have some sort of email system where your blog posts emailed to me?

  434. Avatar
    Financial Problems about 1 year later:

    Tape programming is not a good approach. Financial Problems

  435. Avatar
    Teaching Certificate about 1 year later:

    I think it’s about the news on the media, reporting how the government wanted to make some change in the regulations. Insurance Support

  436. Avatar
    Insurance Support about 1 year later:

    I am absolut with you. If I want to have something coded I don´t want to get overloaded scripts. Insurance Support

  437. Avatar
    Maple Syrup about 1 year later:

    I think you’ll find out that is mostly the case, programmers not being smart enough or not giving enough time to understand stuff like templates, design patterns, multi-threading, COM,

  438. Avatar
    pandora about 1 year later:

    Had a pleasant reply practically done, ended up being substantiation studying the idea & got destroyed through an advert pertaining to Shipwreck drops. Been age groups since I looked at within the following & left as the big site modifications lsat summer time built taking part by way of dial-up Distressing. I notice situations are quite similar. Sleep deprived & popped more than from the Etsy boards that failed to grab me tonight… Spend a little while hanging out on the boards & checking out items for sale & recently marketed. There have been close to 197,Thousand diamond jewelry listings when I opened up our look (NGHDesigns) at the end of August. There have ended Three hundred and fifty,500 today. I’ve experienced several good results & take pleasure in taking part presently there, nevertheless ‘m glad that isn’t the way you keep a top above our mind. Some sellers prosper right now there, other people never promote anything. Even essentially the most amazing things are usually laid to rest inside lot in mere units.

  439. Avatar
    Sheer curtains ideas about 1 year later:

    “The same is true of unit testing: it can produce quality software without any evidence.” I could not disagree more. I would like to change this, “can produce software without any evidence.” But the quality of software, I think not, and certainly not in the software world today. I think the “quality” term is somewhat a relative term, and also very subjective. The “quality” can mean something slightly different to all developers, because the technologies used and available, as well as the actual time period being referenced. Is to improve the readability of quality? Conciseness? Performance? Maintainability? Some of them may be at odds with each other. These, no doubt, priority will be different depending on the language and resources, which could also relate to the period of time (ie ruby, taking into account that the memory footprint, theoretically it would have been a viable solution 15 years ago, given the cost and capacity of system memory). What could have been considered the “quality” Now we’re in the midst of not just advocating for change, not just calling for change – we’re doing the grinding, sometimes frustrating work of delivering change – inch by inch, day by day.

  440. Avatar
    Vintage hood ornaments ideas about 1 year later:

    If you do not floss every day, are an idiot. Do you have any idea how valuable your teeth are? Want to have when they are 56? I do not want to hear excuses. I do not want to even think about not flossing. Free software dammit! Free Software! ’@ Uncle Bob who have not traveled enough, obviously, many people in the world and floss their teeth perfectly well into old age. We should consider every day lost on which we have not danced at least once. And we should call every truth false which was not accompanied by at least one laugh.

  441. Avatar
    seo about 1 year later:

    This beginners guide to publishing a blog is a wealth of information. This was very helpful for newbie bloggers and provides a great starting point. Will mention your post on my next blog post. Thank you. Have a good day. free icon maker

  442. Avatar
    games torrent search about 1 year later:

    I prefer to use the simplest approach possible, but code it up using TDD.

  443. Avatar
    pehari about 1 year later:

    This is a very informative and interesting blog. I am going to send the link of this blog to a friend of mine who is interested in a similar blog. I am sure he will have a good time reading through it.

  444. Avatar
    ??????????????? about 1 year later:

    Thanks for all the great video advice. I agree that to succeed you have to have a passion for what you do career wise. My passion is in health, better health, coz when you are healthy you are happy.

    I hope you joy…

    By ???????

  445. Avatar
    New Appetizers for a crowd about 1 year later:

    I love the fact that some guy took ‘You Are Clueless’ as his name! By working faithfully eight hours a day you may eventually get to be boss and work twelve hours a day.

  446. Avatar
    ???? ???????????? ?????? about 1 year later:

    That’s exactly what I was looking for!Your article is much useful for my paper writing service, thanks a lot

  447. Avatar
    guess perfume about 1 year later:

    I do not want to hear excuses. I do not want to even think about not flossing. Free software dammit regards

  448. Avatar
    Financial Problems about 1 year later:

    Beach Crusier Tape programming is good. A very useful article.

  449. Avatar
    Digital Computer Systems about 1 year later:

    This beginners guide to publishing a blog is a wealth of information. This was very helpful for newbie bloggers and provides a great starting point. Will mention your post on my next blog post. Thank you very much for the information, great post

  450. Avatar
    Accutane Lawyer about 1 year later:

    I really appreciate this sharing this.Nice and informative article thanks for sharing this great info with us. Accutane Lawyer

  451. Avatar
    Moncler TRIANON down coat hooded Montargis coffee about 1 year later:

    Are you buying Moncler Jackets Women to keep warm in icy weather, or to look trendy amongst your peers or maybe you want to wear your jacket to work. The function dictates the style, color, design and even the price. Most brands will try to sell Moncler Men Coatsyou an all-in-one solution but this does not always work, style and comfort is a rare combination. Famous brands are about fashion styles as much as design but the most important consideration should always be bout qualityMoncler Scarves & Caps. Quality determines durability and integrity of the finished product.Moncler is a name derived from Monestier de Clermont the original birthplace of the forward thinking founders who created one of the most famous Moncler Vest outwear products. Moncler jackets have occupied the down jacket industry market for many years and have over the years seen a number of competitors come and go.

  452. Avatar
    Split Face Brick about 1 year later:

    Are you interesting construct build or find great deal price Let see it Split Face Brick

  453. Avatar
    http://www.MoneyManagementForKids.info about 1 year later:

    thank you for sharing, keep good work ________ World Trends

  454. Avatar
    www.MoneyManagementForKids.info about 1 year later:

    Celebrities New

  455. Avatar
    hairstyles 2011 ideas about 1 year later:

    No intention of turning this fully in the discussion of TDD, I love those guys who say, “Who tests the tests!? As if with them again and again, check what you’ve written is what had the intention, and continuing to write to guide how it is building the rest of the system is not beneficial and not a test of the test itself. Good point, Av Although a consultant, I think leaving a steaming pile code for my clients to pick up after embarrassing, and that’s what I try to avoid at all costs. Good job !! This is a nice article to be read.. The difficulty of translateing has been paid by the quality of this article.

  456. Avatar
    Aoota about 1 year later:

    I think you’ll find out that is mostly the case, programmers not being smart enough or not giving enough time to understand stuff like templates

  457. Avatar
    Mayne about 1 year later:

    I admire the valuable information you offer in your articles. I will bookmark your blog and have my children check up here often. I am quite sure they will learn lots of new stuff here than anybody else!

  458. Avatar
    Herrenschuhe Team about 1 year later:

    Great and interesting – Tolle Sache und sehr informativ, werde auch mal im Internet nachschauen ob ich noch etwas dazu finde. Viele Grüße von Herrenschuhe Team und viele Spass noch…

  459. Avatar
    New York criminal attorney about 1 year later:

    I think leaving a steaming pile code for my clients to pick up after embarrassing, and that’s what I try to avoid at all costs. Good job !! This is a nice article to be read.. The difficulty of translateing has been paid by the quality of this article.

  460. Avatar
    Tom.david about 1 year later:

    Both Joel and UncleBob left off a very important part of software life cycle – what happens AFTER “git-r-done” in Joel’s case shipping.testking 642-426Guess who is going to have a maintenance/improvement nightmare on their hands? Not the TDD crowd for sure.testking 1Y0-A09Here are a couple of thought provoking nuggets on twitter by people who see through this:testking 1Y0-A15testking SK0-003“never take software advice from a bug tracking system salesman”

  461. Avatar
    live stream about 1 year later:

    There have ended Three hundred and fifty,500 today. I’ve experienced several good results & take pleasure in taking part presently there, nevertheless ‘m glad that isn’t the way you keep a top above our mind. live stream

  462. Avatar
    pandoracharmsuk about 1 year later:

    A quality set of two pearl or perhaps diamond stud pandora earrings is mostly a classic and also romantic reward. A very simple pendant on the chain is actually surely a vital as is often a quality wristwatch. Then again, no lovely women requirements not pandora uk one but two of any kind of basic item; just being aware of what she needs pandora charms is definitely what makes the treasure especially innovative and emotional. Examine the woman’s personal design. pandora necklace If the girl wears bohemian shirts with worn-in denims, pandora jewellery consider some, funky beaded necklace around your neck or a new color bracelet.

  463. Avatar
    pandoracharmsuk about 1 year later:

    A quality set of two pearl or perhaps diamond stud pandora earrings is mostly a classic and also romantic reward. A very simple pendant on the chain is actually surely a vital as is often a quality wristwatch. Then again, no lovely women requirements not pandora uk one but two of any kind of basic item; just being aware of what she needs pandora charms is definitely what makes the treasure especially innovative and emotional. Examine the woman’s personal design. pandora necklace If the girl wears bohemian shirts with worn-in denims, pandora jewellery consider some, funky beaded necklace around your neck or a new color bracelet.

  464. Avatar
    New Almonds health benefits about 1 year later:

    TDD is very useful but in practice and emotionally I can not write code test ever. So I like to see more Joel. I read about eight newspapers in a day. When I’m in a town with only one newspaper, I read it eight times.

  465. Avatar
    Silicone Molding about 1 year later:

    Intertech Machinery Inc. provides the most precise Plastic Injection Mold and Rubber Molds from Taiwan. With applying excellent unscrewing device in molds, Intertech is also very professional for making flip top Cap Molds in the world.

  466. Avatar
    <a href=http://www.cheapclothingsale.com>gucci shoes on sale</a> about 1 year later:

    If did not do the above two step, even if customer does not demand into any mouldproof moistureproof products, also get into cheaper moistureproof bead in case the goods appear mildew. Especially sea tansportations goods more need to be done to mouldproof moistureproof work.

  467. Avatar
    http://www.cheapclothingsale.com about 1 year later:

    Past 20 years of reform and opening-up, quanzhou shoemaking through ups and downs baptism, from the initial several outgoing hammer, some scissors and a few sewing machine start, through increasing input in technology, improve the product technology content, the pursuit of scale, and other means to gradually developed.

  468. Avatar
    [url=http://www.cheapclothingsale.com]gucci shoes on sale[/url] about 1 year later:

    At present the city has 4000 shoemaking enterprise, with Italy, Japan and Taiwan introduction of hundreds of complete production line, thousands of sets of plastic injection molding injection machine and various shoemakings special equipment.

  469. Avatar
    san diego carpet cleaners about 1 year later:

    i like the post! very interesting. keep it up!

    San Diego Carpet Cleaners

  470. Avatar
    http://youraccutanelawsuit.com about 1 year later:

    Thank you for posting this site!

    youraccutanelawsuit

  471. Avatar
    beauty about 1 year later:

    feel the real beauty inside u…see completemakeup process , from applying foundation to smokey eyes u can find here every thing! beauty

  472. Avatar
    Denver Roofer about 1 year later:

    Thank you for posting on this site!

  473. Avatar
    bankruptcy san diego about 1 year later:

    thsi is what i need thank you for your beautiful article..

    zyprexa lawsuits

  474. Avatar
    zyprexa lawsuits about 1 year later:

    hey thank you so much and i wanna thank you for your effort..

    zyprexa lawsuits

  475. Avatar
    http://connecttohappiness.com about 1 year later:

    thank you for sharing this…

    life coach

  476. Avatar
    computer information systems masters about 1 year later:

    TDD the right way in order to get its benefits. No wonder, that many people fail to see value in unit testing, when they are most often confronted with poor-quality test practices. Uncle Bob, keep on spreading your knowledge!

  477. Avatar
    Pandora jewelry about 1 year later:

    Example is better than precept.

  478. Avatar
    buy neopoints about 1 year later:

    I am making a trip out there in two weeks and I just can’t wait. I will have to check out some of these new venues while I am in the area.

  479. Avatar
    morewant about 1 year later:

    I am so much excited after reading your blog. Your blog is very much innovative and much helpful for any industry as well as for person. breast augmentation miami

  480. Avatar
    buy neopoints about 1 year later:

    I am making a trip out there in two weeks and I just can’t wait. I will have to check out some of these new venues while I am in the area.

  481. Avatar
    buy neopoints about 1 year later:

    Thanks for this article on programming. I am really excited to get into programming, I’ve already mastered certain aspects of web programming, but now I think it’s time to move into the application development framework. I think I’ll begin with something like C++ since it’s versatile and there’s a lot of useful blog articles like this one available for use!

  482. Avatar
    neopoints about 1 year later:

    Thanks for this article on programming. I am really excited to get into programming, I’ve already mastered certain aspects of web programming, but now I think it’s time to move into the application development framework. I think I’ll begin with something like C++ since it’s versatile and there’s a lot of useful blog articles like this one available for use!

  483. Avatar
    Homes for sale Pinehurst NC about 1 year later:

    The post is absolutely fantastic! Lots of great information and inspiration, both of which we all need! Also like to admire the time and effort you put into your blog and detailed information you offer! I will bookmark your blog!

  484. Avatar
    Split Face Brick about 1 year later:

    Great post thank you!

    Talking Bathroom Scales

  485. Avatar
    IBD about 1 year later:

    thanks for a;ways be there to me nice article

    IBD

  486. Avatar
    http://www.wellbutrinlawsuits.net about 1 year later:

    nice article , it really helps a lot of people in here! thank you!

    wellbutrin birth defect

  487. Avatar
    depuy asr lawsuit about 1 year later:

    this is really useful to us readers who has a problems like this..thanks a lot!

    depuy asr lawsuit

  488. Avatar
    Optische kabel about 1 year later:

    You are right I get code like that a lot. But it seems like a never ending problem

  489. Avatar
    long term disability lawyer about 1 year later:

    I have to say, I enjoy reading your post. long term disability lawyer

  490. Avatar
    federal tax relief about 1 year later:

    Really very nice post. I love it so much. I want to share this interview with my friends

    federal tax relief

  491. Avatar
    yanh211989@gmail.com about 1 year later:

    Nice article…..This blog will helpful to all the visitors, thank you for the nice information….

    dentist temecula

  492. Avatar
    Crohn's Diease about 1 year later:

    thank you for the sharing fantastic

    Crohn’s Diease

  493. Avatar
    http://www.bankruptcyhouse.com about 1 year later:

    thank you!!

    bankruptcy

  494. Avatar
    long term disability insurance lawyers about 1 year later:

    . Really its great article. Keep it up. long term disability insurance lawyers

  495. Avatar
    zimmer nexgen about 1 year later:

    It is really nice piece and useful information. I’m glad that you shared with us this useful info. Please inform us of this. Thank you for sharing. zimmer nexgen

  496. Avatar
    Traitement Hemorroides about 1 year later:

    I am really enjoying the theme/design of your blog. Do you ever run into any web browser compatibility issues? A handful of my blog readers have complained about my site not operating correctly in Explorer but looks great in Firefox. Do you have any tips to help fix this issue?

  497. Avatar
    Energie Solaire Photovoltaique about 1 year later:

    Do you mind if I quote a couple of your posts as long as I provide credit and sources back to your webpage? My website is in the very same niche as yours and my users would definitely benefit from a lot of the information you provide here. Please let me know if this okay with you. Thank you!

  498. Avatar
    darvon lawsuit about 1 year later:

    this is a good article ..thansk for posting this article that made my time great!

    darvon lawsuit

  499. Avatar
    solid gold dog food about 1 year later:

    Do you ever run into any web browser compatibility issues? A handful of my blog readers have complained about my site not operating correctly in Explorer but looks great in Firefox. solid gold dog food

  500. Avatar
    SEO srevices about 1 year later:

    For those who don’t believe unit tests are necessary: try coming on to a project that has been going for two years that has NO unit tests and lots of complicated, messy logic. Then try defect fixing on said project, or even adding new features. It is a nightmare!

  501. Avatar
    http://www.waterdamageorangecounty247.com about 1 year later:

    Excellent post, one of the few articles I’ve read today that said something unique!

    water damage orange county

  502. Avatar
    Jerry about 1 year later:

    Excellent article, interesting blog. Thanks to the author. viagra senza ricetta viagra acquisto viagra prezzo acquisto viagra viagra generico

  503. Avatar
    http://www.asbestosattorneyscalifornia.net about 1 year later:

    i really learned a lot of thing by reading your article..thanks a lot….

    asbestos attorneys california

  504. Avatar
    Jerry about 1 year later:

    Excellent article, interesting blog. Thanks to the author. viagra senza ricetta viagra acquisto viagra prezzo acquisto viagra viagra generico

  505. Avatar
    moncler about 1 year later:

    thanks for Moncler Jackets || Christian louboutin UK || Moncler coats || Christian louboutin shoes || Christian louboutin pumps your post!

  506. Avatar
    women's handbags about 1 year later:

    very useful to this who use C++to do program.

    I think there was some one who like to see tote handbags,thanks for share.

  507. Avatar
    Karen about 1 year later:

    Thanks for interesting insights. I can´t agree with you more. The cleancode should be number one priority of the programmer

  508. Avatar
    Appetizers for a crowd about 1 year later:

    “I want the boat, but I do not want to send us shit.” This reminds me of something that people of 37signals, said in his book “Getting Real”. When you’re starting, do not have enough time, resources, or understanding the problem to implement the solution. That’s fine. But make sure it is built “half a product, not a” half product. ” Where appropriate, they were talking directly ‘with function “ship of three major features, well done the decent instead of six. But the same idea applies to development techniques. Good job !! This is a nice article to be read.. The difficulty of translateing has been paid by the quality of this article.

  509. Avatar
    lung cancer lawyer about 1 year later:

    Thanks for sharing. That is a awesome post. Keep posting

    lung cancer lawyer

  510. Avatar
    RotoShave Reviews about 1 year later:

    In today’s world of technology, there are vast amounts of opportunities for all different types of computer programmers, computer languages, and computer platforms. I hope this site will help you take advantage of some of these opportunities and better yourself, whether financially, educationally, or technically.RotoShave Reviews

  511. Avatar
    What is Bacterial Vaginosis about 1 year later:

    My website is in the very same niche as yours and my users would definitely benefit from a lot of the information you provide here. What is Bacterial Vaginosis

  512. Avatar
    anna15 about 1 year later:

    Hey, you are really great. Your site is great so visit to my site!

  513. Avatar
    marijuana long beach about 1 year later:

    Thanks for sharing. That is a awesome post. Keep posting

    marijuana long beach

  514. Avatar
    austin bankruptcy about 1 year later:

    I have bookmarked it and I am looking forward to reading new articles. Keep up the good work! austin bankruptcy

  515. Avatar
    http://www.symptomofmesothelioma.com about 1 year later:

    i really appreciate it that you shared with us such a informative post.

    symptom of mesothelioma

  516. Avatar
    disease from asbestos about 1 year later:

    I completely agree with you. I really like this article. It contains a lot of useful information..

    disease from asbestos

  517. Avatar
    Billige Dekk about 1 year later:

    There are some very great sources here and thank you for being so kind to post them here. So we can read them and give our opinion on The Duct Tape Programmer…

  518. Avatar
    depuy hip implant recall about 1 year later:

    Thanks for sharing. That is a awesome post. Keep posting depuy hip implant recall

  519. Avatar
    http://www.accutanelawsuitsettlements.net about 1 year later:

    This is a wonderful post. I enjoyed the information lot.

    accutane lawsuit

  520. Avatar
    chimney repair hartford about 1 year later:

    i am really sure you have a good stuff and information

    chimney repair hartford

  521. Avatar
    austin bankruptcy attorneys about 1 year later:

    This article gives the lightfor humanity and social attitude in which we can observe the reality. this is very nice one and gives indepth information. thanks for this nice article.. Thanks austin bankruptcy attorneys

  522. Avatar
    san diego personal injury about 1 year later:

    Very efficiently written story. It will be useful to anyone who utilizes it, as well as myself. Keep doing what you are doing – for sure i will check out more posts.

    san diego personal injury

  523. Avatar
    Facebook Tag Photos about 1 year later:

    “FLOSS damn you! FLOSS!” lool @ Uncle Bob

  524. Avatar
    http://chapter7lawoffices.com about 1 year later:

    Beatiful blog! intesting ideas was shared on this!

    los angeles bankruptcy attorney

  525. Avatar
    san diego personal injury about 1 year later:

    nice work and i wanna thank you for the all you made

    BUSINESS HEALTH

  526. Avatar
    san diego personal injury attorney about 1 year later:

    you have made in writing this article. I am hoping the same best work from you in the future as well. In fact your creative writing abilities has inspired

    san diego personal injury attorney

  527. Avatar
    real estate attorney about 1 year later:

    writing this article. I am hoping the same best work from you in the future as well

    real estate attorney

  528. Avatar
    http://www.couchsurf.net about 1 year later:

    thanks for the information!

    couch surfer

  529. Avatar
    san diego personal injury attorney about 1 year later:

    just wanna say thank you for what you did and invite me to put some comments thanks again de amigo

    2012 elections

  530. Avatar
    http://www.ibusinesscards.net about 1 year later:

    i really like this post! this is brilliant..the one who invented these solar trees is a genius! we can save electricity by using the solar energy..very excellent!

    business cards

  531. Avatar
    water damage Los Angeles about 1 year later:

    I really like this article water damage Los Angeles

  532. Avatar
    2012 elections about 1 year later:

    a permission to read whats all about in your app and nice article i like it good job

    florida mesothelioma law firm

  533. Avatar
    public background checks about 1 year later:

    just wanna say thank you for what you did and invite me to put some comments thanks again de amigo public background checks

  534. Avatar
    water damage Beverly Hills about 1 year later:

    The info is very open and very clear explanation of issues. It contains truly information. water damage Beverly Hills

  535. Avatar
    Forklifts Sales about 1 year later:

    I was very pleased to find this site. I wanted to thank you for this great read!! I definitely enjoying every little bit of it and I have you bookmarked to check out new stuff you post. Big thanks for the useful info

  536. Avatar
    Austin dwi lawyer about 1 year later:

    This is my first time I visit here. I found so many interesting stuffs in your blog especially its discussion. It was a beneficial workout for me to go through your web page. It definitely stretches the limits with the mind when you go through very good info and make an effort to interpret it properly. I am going to glance up this web site usually on my PC.

  537. Avatar
    http://www.saltwateraquariumlighting.com/coralife-aqualight/ about 1 year later:

    Very interesting post. Thanks for sharing with us.

  538. Avatar
    Coralife Aqualight about 1 year later:

    Well I guess this website doesn’t like Chrome. I guess that is why Firefox is the best.

  539. Avatar
    public criminal records about 1 year later:

    Very interesting post. Thanks for sharing with us.

    public criminal records

  540. Avatar
    fiance visa about 1 year later:

    Very interesting post. Thanks for sharing with us. fiance visa

  541. Avatar
    wypall l40 about 1 year later:

    I like to see this site, i want to know this case. This is a serious case and almost all of people that live in that location make a report to the police bout that factory. Its make all of them getting sick.

  542. Avatar
    http://www.kindleinfo.net about 1 year later:

    not a good one but a detailed one also !

  543. Avatar
    Argumentative essay topics about 1 year later:

    I like Tim’s comment. Automated testing is wonderful. I like unit tests as a design tool and documentation. I love the acceptance tests as a regression and a business communication tool. I am very grateful that there are people who are more passionate than me about pushing forward testing tools (Selenium, cucumber, TestSwarm, etc.) Joel was really wrong to dismiss “unit tests. That said, the proof is far from being a silver bullet. The problem is that the tests are above marginal cost is low, but not free. You have to choose what to test, and some things are very difficult to prove (people are constantly chipping away at that, but let’s be honest, some things will always be difficult to prove). There is no evidence offers the widest coverage as a real human being to perform an acceptance test. Common programming techniques lead to an explosive number of extreme cases that are almost impossible to list and therefore the test. This leads me to agree with Tim Bray. Fun Weather’s conditions are not suitable with the season. In summer season, we got much rains everyweek. How bad is it.

  544. Avatar
    stainless steel cleaner about 1 year later:

    I’m glad they now have a choice if they must smoke. No, what the obsolete industry is really spearheading is the aquisition of the little guys market,TOO.

  545. Avatar
    ppi reclaiming about 1 year later:

    I agree there is a need to work smart and writing clean isn’t just best practice it’s speedier and definitely makes debugging a whole lots less stressful

  546. Avatar
    2011 nike golf about 1 year later:

    Just found this great article. It’s a bit gross but if you can stand

  547. Avatar
    buy neopoints about 1 year later:

    Love the writing mate, keep it up

  548. Avatar
    Tea Party about 1 year later:

    A great piece of writing i really appreciate it.I get a lot of information from this.

  549. Avatar
    Danial123 about 1 year later:

    This a great information that u had shared.

  550. Avatar
    Richard about 1 year later:

    The programmer who spends weeks building the perfect structure does just tenant Screening as much harm to the project as the programmer who hacks a bunch of crap together.

  551. Avatar
    Hairstyles 2012 ideas about 1 year later:

    My approach is a bit of what Joel says and what he said. I prefer to use the simplest method possible, but the code using TDD. Fast boat, but we send the code clean. somehow it wouldn’t translate when i’m using firefox, but I’m able to understand the article as it’s not that deep. Interesting though..thanks.

  552. Avatar
    telenor about 1 year later:

    telenor is great thank u

  553. Avatar
    Deutsch Englisch Übersetzung about 1 year later:

    Just found this great article. It’s a bit gross but if you can stan

  554. Avatar
    New Wooden privacy fence about 1 year later:

    Years ago I wrote this editorial for a small magazine called It’s like gambling somehow. You go out for a night of drinking and you don’t know where your going to end up the next day. It could work out good or it could be disastrous. It’s like the throw of the dice.

  555. Avatar
    Sony Headphones about 1 year later:

    Earphones not only serve for essential tools to listen to music, but also to show your unique taste. That is why so many young people would like to seek Sony and buy them with quite a high price.

  556. Avatar
    news about 1 year later:

    i want to add condition in query. how to do it? http://www.bukisa.com/articles/439944_boob-job-facts-you-must-know-before-the-surgery" >boob job

  557. Avatar
    Cisco about 1 year later:

    Candidates need to obtain CCNA and CCIE certifications for the cause that essential requirement for acquiring this certificate.

  558. Avatar
    640-802 about 1 year later:

    Prerequisites for CCNA tone of voice certification consist of a trustworthy CCIE certification or CCNA Certification.

  559. Avatar
    Joel about 1 year later:

    I’ve found the programmer who spends weeks building the perfect structure does just as much harm to the project tenant Screening as the programmer who hacks a bunch of crap together.

  560. Avatar
    Hcg dosage for weight loss about 1 year later:

    The hCG hormone works by preventing the body from going into “starvation mode” when you reduce your calorie intake. This means that when you receive the hCG injection, you will have to follow a carefully prescribed diet that allows you to decrease how many calories you are consuming while increasing your activity level. Because hCG tells your body to tap into fat stores, you will not feel hungry or tired during the treatment. In fact, you may feel more energetic as the fat stores are released. This is a treatment where the more overweight you are, the more dramatic your initial weight loss results can be.

  561. Avatar
    Airport Limo about 1 year later:

    I am very glad that I find your regular post here. Which seems to be very important and it made good time pass for me. I will always give a nice thrust look in to you from my bookmark feed. I don’t actually comment and don’t like to spend time in typing the comment. But here I have to do this because this deserves a good like.

  562. Avatar
    White Sundress about 1 year later:

    I am impressed by the quality of information on this website. There are a lot of good resources here. I am sure I will visit this place again soon.

  563. Avatar
    http://www.headwise.net about 1 year later:

    Java is the main hub of the Object oriented programming | with C++ the basics that should have.

  564. Avatar
    Global seo about 1 year later:

    computer bask language c++.this language is a powerful language.

    http://www.headwise.net

  565. Avatar
    Financial Problems about 1 year later:

    That’s a awesome article. I enjoyed the article a lot while reading.Thanks for sharing such a wonderful article…..

  566. Avatar
    Architectural Interiors about 1 year later:

    I am impressed by the quality of information on this website. There are a lot of good resources here.office refurbishment Love the writing mate, keep it up

  567. Avatar
    Tenant Screening about 1 year later:

    I was going to respond with a comment on Joel’s blog, but I think that I’ll just link to your blog. This is tenant Screening almost exactly what I wanted to express, but I would not have done so as well as you have.

  568. Avatar
    Appliances recycling about 1 year later:

    I really love your writing, unlike most blogs I actually learn things, find the content useful and it’s well written. 11/10 every time! Appliances recycling

  569. Avatar
    Global seo about 1 year later:

    great posting i agree your posting

  570. Avatar
    msi credit solutions about 1 year later:

    I write my short comment for you to give support for your site.I love reading other people’s views on this. It really makes a person think. Thanks for the article.

  571. Avatar
    x price about 1 year later:

    They are part of the problem, not part of the solution. We need to figure out a way to sugar-coat and de-mystify functional-programming techniques so we can have concurrency without insanity.

  572. Avatar
    Buy Iraqi Dinar about 1 year later:

    Happily, I have found what I have been looking for and it is so much excited for now.

  573. Avatar
    Tenant Screening about 1 year later:

    Do you have any idea how valuable your teeth are? Do you want to have them when you are 56? I don’t tenant Screening want to hear the excuses. I don’t want you to even THINK about not flossing

  574. Avatar
    ???? ????"? about 1 year later:

    I think that Joel Spolsk’s blog is great, but i do agree with u on some of ur critics

    ?? ???? ? ??? ???”? ?? 5

  575. Avatar
    Ice maker troubleshooting ideas about 1 year later:

    Life is a gamble. You can get hurt, but people die in plane crashes, lose their arms and legs in car accidents; people die every day. Same with fighters: some die, some get hurt, some go on. You just don’t let yourself believe it will happen to you.

  576. Avatar
    New Wedding photography contract about 1 year later:

    Let the hand not only apologize to the developers of duct tape. The few who know when the time is right to use tape just do it, no matter what the “rules” are, and are perfectly able to justify their choice (to begin with, the software deliverable.) The rest just say that they should never do. If you can not argue the case for the use of tape solutions that are either wrong or not capable enough to trust them with it. (Another thing such mediocre programmers should be told that Joel never do is take seriously. But luckily most of them do not even bother to read these.) Wow, awesome website man! You have done a phenomenal job. I look forward to reading some of your other stuff! Great photos. Thanks again!

  577. Avatar
    Single wide mobile homes ideas about 1 year later:

    In every year, at least they get one job with a long duration, that’s a nice reputation for a new comer in this section. They can be one of developing team of the year.

  578. Avatar
    buy lyrica about 1 year later:

    I really enjoyed reading this post, big fan. Keep up the good work andplease tell me when can you publishmore articles or where can I read more on the subject?

  579. Avatar
    Austin Homes by Neighborhood about 1 year later:

    the article is actually the sweetest topic on this related issue. I fit in with your conclusions and will thirstily look forward to your forthcoming updates

  580. Avatar
    Leads about 1 year later:

    agree with your thread, M also working this kind of programming if we don’t care it properly then it’s gone confusing and the result are not good.

  581. Avatar
    paphos long term rentals about 1 year later:

    “I want you to ship, but I don’t want you to ship shit” – that’s exactly what I will tell to one of my programmers!

  582. Avatar
    HCG pellets about 1 year later:

    i think in every profession you will find “duct tape programmers”

  583. Avatar
    SEO Utah about 1 year later:

    I have seen a lot of this in web design.. always people trying to do more than they know how.

  584. Avatar
    wholesale hcg about 1 year later:

    Lots of information in this article

  585. Avatar
    haemophilus influenzae about 1 year later:

    I really pleasant reading this message, great fans. Maintain a good working andplease, when you can tell me publishmore items or where you can read this topic:

    haemophilus influenzae | ketones |

  586. Avatar
    learn french about 1 year later:

    Louis Vuitton wallets, Gucci bags, Hermes bags are available.

  587. Avatar
    recyclage meuble about 1 year later:

    Excellent .. Amazing .. I’ll bookmark your blog and take the feeds also…I’m happy to find so many useful info here in the post, we need work out more techniques in this regard, thanks for sharing

    recyclage meuble

  588. Avatar
    wholesale hair weave about 1 year later:

    I hope my frontal comes out GOOD and just like the way I want it to come out. I can’t wait to go to Jehan in December and my hair done by hair mmmmm I can’t wait to get my 24” hair from FL… I hope that the CV receives my 4oz of hair soon. I hope that the adhesives that I bought, work well for my body chemistry.

  589. Avatar
    wholesale hair extensions about 1 year later:

    I just got my IH VC installed yesterday…Now Im looking like Kenny G not a good look

  590. Avatar
    http://www.instantloansneed.co.uk/ about 1 year later:

    Duct tape programmers usually avoid C++, templates, multiple inheritance, multithreading, COM, CORBA, and a host of other technologies.

  591. Avatar
    Übersetzungen about 1 year later:

    It´s a interesting post. Thanks.

  592. Avatar
    ray ban about 1 year later:

    I like your pots, and i also like my ray ban sunglasses. ray ban article I have ever found on the Internet.ray ban. I like your pots, and i also like my ray ban sunglasses. this ray ban sunglasses article. Great work!ray ban sunglasses. I like your pots, and i also like my ray ban sunglasses. I expect more ray ban uk articles from you.ray ban uk.

  593. Avatar
    ray ban about 1 year later:

    I like your pots, and i also like my ray ban sunglasses. ray bans of those which truly convey useful ideas.ray bans. I like your pots, and i also like my ray ban sunglasses. ray ban 2140 with us, they are helpful.ray ban 2140. I like your pots, and i also like my ray ban sunglasses. of ray ban 3025! Thank you for sharing this with us.ray ban 3025.

  594. Avatar
    ray ban about 1 year later:

    I like your pots, and i also like my ray ban sunglasses. ray bans 2132. This is a nice article for sure.ray bans uk. I like your pots, and i also like my ray ban sunglasses. ray ban sale article, ray ban sale. can be more great resources like this. I like your pots, and i also like my ray ban sunglasses. the useful info about ray ban aviator.ray ban aviator.

  595. Avatar
    ray ban about 1 year later:

    I like your pots, and i also like my ray ban sunglasses.the useful ray ban wayfarer info shared in the article.ray ban wayfarer. I like your pots, and i also like my ray ban sunglasses. wayfarers ray ban. This is a nice article for sure.wayfarers ray ban. I like your pots, and i also like my ray ban sunglasses. ray ban warrior article like this.ray ban warrior.

  596. Avatar
    mdr513h about 1 year later:

    I like your writing style and want ot read more.Thanks

  597. Avatar
    mdr513h/f7 about 1 year later:

    This is very helpful one. thanks

  598. Avatar
    Boat seat cushions about 1 year later:

    Congratulations! Its success is deserved. In every year, at least they get one job with a long duration, that’s a nice reputation for a new comer in this section. They can be one of developing team of the year.

  599. Avatar
    WholesaleAce about 1 year later:

    Well, it’s not about being smart or not. There is clean cut.

    For some coders, patterns and other abstract concept are easy to grasp whilst it be can more challenging for others.

    But at then, what count’s is to deliver quality software on time. I would take any monkey coder who delivers before someone who is stuck in theory!!!

  600. Avatar
    pandora about 1 year later:

    It is a very good article! Thanks for share!

  601. Avatar
    estetik about 1 year later:

    Exactly as I wanted somethingI´ve tried Piwik and it worked good!Great Work — thanks. tr

  602. Avatar
    San Diego Podiatrist about 1 year later:

    Thank you. I have checked out how this server works with my current application too. So far there is no problem

  603. Avatar
    Profit Jackpot by Ryan about 1 year later:

    Thanks for all the Articles that you have shared here. I will certainly go back for more.

  604. Avatar
    coach purses for cheap about 1 year later:

    the pictures very nice , , like the it ,,thank you for your advise ,

  605. Avatar
    http://www.gofavor.com/ about 1 year later:

    I will grateful if you invite me to be a part in your project. I have many idea to change this application layout to be more colourful and attractive. People need to see the new thing from this application.Thank you for this great information, you write very well which I like very much. I really impressed by your post.

    fine jewelry

  606. Avatar
    e107 about 1 year later:

    Such an interesting story to read and I enjoyed reading it as well. Keep up the good work..

  607. Avatar
    cable ties about 1 year later:

    interesting post. keep it up!

  608. Avatar
    Cricut about 1 year later:

    There are good programmers and there are bad ones, plain and simple. It’s the bad ones that keep us on our toes though.

  609. Avatar
    Saraequityloans about 1 year later:

    Hi Bob, I used to read a lot of articles for many years. But I think your writing style is the best ever and your article is really helpful. Thank you so much and have a great day.

  610. Avatar
    Louis Vuitton about 1 year later:

    you said no bad

  611. Avatar
    mori seiki spindle repair about 1 year later:

    Thanks for posting this useful information. This was just what I was on looking for. I’ll come back to this blog for sure! mori seiki spindle repair

  612. Avatar
    dswehfhh about 1 year later:

    We are the professional clothing manufacturer and clothing supplier, so we manufacture kinds of custom clothing manufacturer. welcome you to come to our china clothing manufacturer and clothing factory.

  613. Avatar
    Soccer tips about 1 year later:

    Why my comment didn’t appear? i only want to say my opinion.

  614. Avatar
    Sanford NC Workers Compensation Attorneys about 1 year later:

    Why sometime comments doesn’t appear??? I forgot what to say now…

  615. Avatar
    Cretan olive diet about 1 year later:

    Harold: you missed my point of view, your business is based on all the people who make bad software and need bug tracking software. Why listen to him if he seeks any advice at all in regard to code quality. Even if you think well of TDD, why would I tell? They also ask users to FogBugz what it takes years for new versions out? It is assumed that the best of the best up there and put out the software slower than most of us ‘poor’ programmer based companies. I would like to join it if possible. There is just good chance to know many new people.

  616. Avatar
    Tablet phone about 1 year later:

    Harold: and, good reaction does not necessarily mean that the quality of software that does not mean that unit testing of software junk. But hey, you know FogBugz and his company so well, you should know better than me right? wait a minute .. Either you run the day or the day runs you.

  617. Avatar
    jeux gratage about 1 year later:

    Hi good job, Thanks for share.

  618. Avatar
    Lyss@ general message boards about 1 year later:

    Lol @ I want you to ship, but I don’t want you to ship shit. That made me laugh. A very honest blog. I’m currently learning C++, and my poor brain is turning to mush. Lots to learn, but I’ll get there eventually I guess. I don’t know how you guys do it!

  619. Avatar
    xray technician about 1 year later:

    I have never thought that surfing online can be so much beneficial and having found your blog,I feel happy.I write my short comment on this article . It is awesome. The information in this post is very useful and it is a mind blowing article. I thank you again.

  620. Avatar
    Prada Bags about 1 year later:

    found your blog,I feel happy.I write my short comment on this article . It is awesome. The information in this post is very useful and it is a mind blowing

  621. Avatar
    pariuri sportive about 1 year later:

    Do you mind if I quote a couple of your posts as long as I provide credit and sources back to your webpage? My website is in the exact same niche as yours and my users would genuinely benefit from some of the information you provide here. Please let me know if this ok with you. Thanks a lot!

  622. Avatar
    thermal blanket about 1 year later:

    Thanks for article. This blog is very interesting.

  623. Avatar
    Bankruptcy San Diego about 1 year later:

    Your site is amazing.I am very impressed to see this,i want to come back for visiting your site.Keep doing Good as well as you can.

  624. Avatar
    ????????????? about 1 year later:

    Thank for your post. This is useful post for me.

  625. Avatar
    kansas city carpet cleaning about 1 year later:

    I am almost in the same situation… the only difference is that I am 25 years old. I will try to follow your advices. I am sure that I will have excellent results.

  626. Avatar
    Jordy Burnaby about 1 year later:

    The writer of this should maybe be writing about SEO. I am more curious how this page gets such good rankings, and so many respondants.

  627. Avatar
    Chimney Repair NY about 1 year later:

    I agree with the writer of this article definitely people should not use the language c++ and all that ,because these are more difficult.

  628. Avatar
    x ray tech guide about 1 year later:

    Its very nice to read such a fantastic post like this. I am very much happy that I found this blog. I enjoyed reading every little bit of it.Some interesting and well researched information on cameras. I’ll put a link to this site on my blog. Thanks for sharing.

  629. Avatar
    x ray tech guide about 1 year later:

    Its very nice to read such a fantastic post like this. I am very much happy that I found this blog. I enjoyed reading every little bit of it.Some interesting and well researched information on cameras. I’ll put a link to this site on my blog. Thanks for sharing.

  630. Avatar
    x ray tech guide about 1 year later:

    Its very nice to read such a fantastic post like this. I am very much happy that I found this blog. I enjoyed reading every little bit of it.Some interesting and well researched information on cameras. I’ll put a link to this site on my blog. Thanks for sharing.

  631. Avatar
    x ray tech guide about 1 year later:

    Its very nice to read such a fantastic post like this. I am very much happy that I found this blog. I enjoyed reading every little bit of it.Some interesting and well researched information on cameras. I’ll put a link to this site on my blog. Thanks for sharing.

  632. Avatar
    x ray tech guide about 1 year later:

    Its very nice to read such a fantastic post like this. I am very much happy that I found this blog. I enjoyed reading every little bit of it.Some interesting and well researched information on cameras. I’ll put a link to this site on my blog. Thanks for sharing.

  633. Avatar
    blackberry bold whiteones coming soon about 1 year later:

    yeah ;)

  634. Avatar
    nikon L21 Camera about 1 year later:

    okay ;)

  635. Avatar
    baby games for kids about 1 year later:

    hay

  636. Avatar
    San Diego Podiatrist about 1 year later:

    One thing you have to be careful about, though, is that duct tape programmers are the software world equivalent of pretty boys… those breathtakingly good-looking young men who can roll out of bed, without shaving, without combing their hair, and without brushing their teeth, and get on the subway in yesterday’s dirty clothes and look beautiful, because that’s who they are. You, my friend, cannot go out in public without combing your hair

  637. Avatar
    Bobby Jone about 1 year later:

    Thank you for Great article.Continue good work.

  638. Avatar
    Peter about 1 year later:

    Great Site with good content.

  639. Avatar
    Lynnwood Apartments about 1 year later:

    The “Duct Tape Programmer”? That’s hilarious! Anyway, I can see merit to both sides.

  640. Avatar
    This blog is fantastic.I would like to introduce this nice website to my friends.please enter:<a href="http://www.mosterbeatbydre/" rel="dofollow">www.mosterbeatsbydre.com</a> <a href="http://www.mosterbeatsbydre.com/">mosterbeatsbydre.com</a> <a href="h about 1 year later:

    This blog is fantastic.I would like to introduce this nice website to my friends.please enter:www.mosterbeatsbydre.com

    mosterbeatsbydre.com monster beats by dre beats by dre beats by dre pro monster beats by dre monster beats by dre

  641. Avatar
    Birthday ideas for boyfriends about 1 year later:

    Anti TDD people seem to overlook is consistently slower TDD. Just not, people complain that I never tried it. Also as mentioned above we write the tests in the head anyway. Has anyone ever thought about half an hour good unit tests conducted in the visual debugging environment then discarded once the error is corrected? Where I work we use the test cases and documentation for future maintainers of the code. It also helps the original author to remember what they were thinking at the time. I also agree with some of the other posters, it takes some practice to figure out what to test and what is not tested. Aw, this was a really quality post. In theory I’d like to write like this too – taking time and real effort to make a good article… but what can I say… I procrastinate alot and never seem to get something done.

  642. Avatar
    jonni about 1 year later:

    Thank you for such a fantastic blog. Where else could anyone get that kind of info written in

    such a perfect way? I have a presentation that I am presently working on, and I have been on the

    look out for such information. very good software

  643. Avatar
    Room divider ideas about 1 year later:

    Why trust someone like Uncle Bob, who distributes and sells its own software, but sells consulting services and in fact makes more money when deadlines slip and consulting projects in the longer term? In any debate about the balance of speed versus quality, a software company now has more credibility than a consultation or training company. Life is a gamble. You can get hurt, but people die in plane crashes, lose their arms and legs in car accidents; people die every day. Same with fighters: some die, some get hurt, some go on. You just don’t let yourself believe it will happen to you.

  644. Avatar
    Lovebirds for sale about 1 year later:

    Why trust someone like Uncle Bob, who distributes and sells its own software, but sells consulting services and in fact makes more money when deadlines slip and consulting projects in the longer term? In any debate about the balance of speed versus quality, a software company now has more credibility than a consultation or training company. This one af advantages of studying in a vocational school. We’ll get a lesson about entrepreneurship for about 3 years. That’s really good even it’s just theory.

  645. Avatar
    Bangkok Property Services about 1 year later:

    Thank you for posting such a useful website. Your web log happens to be not just informative but also very stimulating too. There are a limited number of people who are capable of write technical articles that creatively.

  646. Avatar
    montessori training about 1 year later:

    Duck Products, the manufacturer of Duck brand duct tape, annually sponsors a competition that offers a college scholarship to the person who creates the most stylish prom formal wear made from Duck Tape.

  647. Avatar
    primary teachers training about 1 year later:

    The Duct Tape Guys (Jim Berg and Tim Nyberg) as of 2005 have written seven books about duct tape. Their bestselling books have sold over 1.5 million copies and feature real and unusual uses of duct tape. In 1994 they coined the phrase, “It Ain’t Broke, It Just Lacks Duct Tape”.

  648. Avatar
    cheap men shoes about 1 year later:

    You simply cannot deliver software products for more than a few years and think that quality doesn’t matter very much.

  649. Avatar
    pariuri sportive about 1 year later:

    i like these site. i was looking for someting like these interesting job keep on the good job

  650. Avatar
    Parkour Training about 1 year later:

    Several individuals think parkour seems simple others believe it looks impossibly hard. Whatever you believe, Parkour is not comfortable but it is also feasible. Go to Parkour Training and learn out more about conditioning. With the proper mental attitude and the will to perfect technique, who knows how far you could get. There is no end to amend your parkour ability. There is the possibility of always improving and there is no barrier to reach when you are ‘finished’, there is forever a fresh place to develop or a different jump to jump.

    Parkour and Freerunning are different but not totally. Parkour was evolved prior to Freerunning by David Belle. It comprises of overleaps and bounds. The great philosophical system behind parkour is not be contained by your environment, which most people are. They have to pass along narrow assigned routes to get from A to B, but by employing parkour there are no architectural edges and your course is free for you to pick out.

  651. Avatar
    zoqmg about 1 year later:

    This blog is fantastic.I would like to introduce this nice website to my friends.please enter:www.bluelouboutinsforsale.com

  652. Avatar
    zoqmg123 about 1 year later:

    It’s the first time I seach this site and I am really enthusiastic about

    so many good articles. I think it’s just very good.please enter:

    href=”http://www.cheapglassframes.com/” rel=”dofollow”>cheap glass frames

  653. Avatar
    zoqmg123 about 1 year later:

    This blog is fantastic.I would like to introduce this nice website to my

    friends.please enter:

    href=”http://www.mosterbeatbydre.com/”>www.mosterbeatbydre.com

  654. Avatar
    zoqmg123 about 1 year later:

    This blog is fantastic.I would like to introduce this nice website to my

    friends.please enter:

    href=”http://www.mosterbeatsbydre.com/”>mosterbeatsbydre.com

  655. Avatar
    zoqmg123 about 1 year later:

    Good post.You did a good work,and offer much effective imformation for us!Thank you!please enter:tiffany and co australia

  656. Avatar
    zoqmg123 about 1 year later:

    Good post.You did a good work,and offer much effective imformation for us!

    Thank you!please enter:polo

  657. Avatar
    zoqmg123 about 1 year later:

    It’s the first time I seach this site and I am really enthusiastic about

    so many good articles. I think it’s just very good.please enter:

    href=”http://www.wristwatchmens.com/”>wrist watch for men

  658. Avatar
    Best Dark Circle Eye Cream about 1 year later:

    I am very happy to read this blog. Have a nice day ! Keep up the good job. austin bankruptcy attorneys

    http://www.bestdarkcircleeyecream.net

  659. Avatar
    Dory about 1 year later:

    Resources like the one you mentioned here will be very useful to me! Social Network

  660. Avatar
    hosting about 1 year later:

    Enter in sludge but don’t dye, Unaffected by bourgeois sugar-coated cannonball erosion, Is the most valuable revolutionary qualities.

  661. Avatar
    Techno News about 1 year later:

    At this scenario, the idea “Be smart. Be clean. Be simple. Ship With know Techno News! And keep a small roll of duct tape at the ready, and don’t be afraid to use it.” is just impossible. You have to choose and you have to choose really fast.

  662. Avatar
    San Diego Printing about 1 year later:

    his joke about the irony of owning a cordless phone despite being attached to a cord himself. Six months later

  663. Avatar
    Inde Voyage about 1 year later:

    Thanks for a nice share you have given to us with such an large collection of information. Great work you have done by sharing them to all.

  664. Avatar
    jinking183@gmail.com about 1 year later:

    This blog is fantastic.I would like to introduce this nice website to my friends.please enter:www.cheapglassframes.com Hello!I visited your site,today, and really like it.I run a site similar to yours, and was wondering if you would like to trade links with me?You can see my site at [Sunglasses ]. I would give your site a prominent listing on my page at cheap glass frames], if you would be willing to do the same.Please let me know if you have any questions or comments.Best regards!!

  665. Avatar
    ?????? about 1 year later:

    I try to use Google translate for this article. Thanks for sharing your article. This is a great article !!

  666. Avatar
    Virtual_office about 1 year later:

    Thank for the recommendation, C++ is the upgraded version of C program, but still complicated. But more of the used program old or new. I definitely used duct tape. Singapore Virtual Office Virtual Office

  667. Avatar
    Jammie about 1 year later:

    “It’s a good blog. It’s a really good blog” – I totally agree with you! Sustainable Products

  668. Avatar
    Ksm150pser about 1 year later:

    With the testing, you’re both right. TDD is the right way to do it, and it is also like flossing – everyone thinks it’s a great idea, but most people do not get around to it.

  669. Avatar
    Online associates degree about 1 year later:

    hi your post is really good providing and good information…i liked it and enjoyed reading it…keep sharing such important posts..Online associates degree

  670. Avatar
    unitrin ins about 1 year later:

    Thanks for a nice share you have given to us with such an large collection of information. Great work you have done by sharing them to al

  671. Avatar
    Delavar about 1 year later:

    I like so much your writing style – it’s easy and really to understand! Delavar for congress

  672. Avatar
    ansh011 about 1 year later:

    A very informative article and lots of really honest and forthright comments made! This certainly got me thinking about this issue, thanks all. stereo glasses

  673. Avatar
    mesothelioma about 1 year later:

    Mesothelioma cancer life expectancy, causes and symptoms. Valuable information for patients and their families. Lawyers for those who have been diagnosed with mesothelioma.

  674. Avatar
    creare site about 1 year later:

    Creare Site and Web design offers website creation, web design and SEO for all calls are interested in such services. We work in PHP, HTML, CSS and Photoshop. Thank you for your interest !

  675. Avatar
    austin home search about 1 year later:

    Your post is rocking and knowledgeable… I really appreciate the way you write . I would like to read more from you

  676. Avatar
    Jacob Warren about 1 year later:

    Very funny article. I’m not a programmer, but I can see how every industry, including programming, has that fly by the seat of your pants ethic.

  677. Avatar
    Tractor Shipping about 1 year later:

    They need to do this as an average person can understand what they have been decided on the court, like me i cant understand it clearly

  678. Avatar
    Garden Tillers And Cultivators about 1 year later:

    “I want you to ship, but I don’t want you to ship shit.”

    I think this sums up well the frustration of just wanting people to execute faster and better. There is always room to innovate.

  679. Avatar
    Secondhand Forklifts Sales & Service about 1 year later:

    Interesting read. Thankyou.

  680. Avatar
    Big pony about 1 year later:

    I like what you have said,it is really helpful to me,thanks!

  681. Avatar
    Video Commerce about 1 year later:

    Video is the practice of using video content to promote, sell and support commercial products or services on the Internet.

  682. Avatar
    rohit about 1 year later:

    I recently came across your blog and have been reading along. I thought I would leave my first comment. I don’t know what to say except that I have enjoyed reading. Nice blog, I will keep visiting this blog very often.how fast to lose weight

  683. Avatar
    Simmy about 1 year later:

    A friend of mine gave me a link with this article – awesome post! Line Movie

  684. Avatar
    daemon about 1 year later:

    thank you! this is most interesting article

  685. Avatar
    juicer reviews about 1 year later:

    wow nice article.I enjoyed reading it.haha the title is funny “the duct tape programmer”

  686. Avatar
    dave about 1 year later:

    I like to say about codes that can be pretty! Medical Conference

  687. Avatar
    harmonyy about 1 year later:

    Description and elaboration about concept designing program are not so easy without any higher programming language like c++.But Duct Tape Programmers are really giving us an innovative way for an interesting and enjoyable ideas.Eviction Notice Forms

  688. Avatar
    Michelle about 1 year later:

    I was able to use C++ in my college days this is a powerful program. la jolla real estate

  689. Avatar
    Eric about 1 year later:

    Eventually the programmer job is super cool – I like! Candied Cartel

  690. Avatar
    Matias Boas about 1 year later:

    It’s not even the best paid job in the world, but at least it is creative and not too strenuous, physically. Syracuse Business

  691. Avatar
    Victoria about 1 year later:

    Even if I am a woman and a delicate one, I love my job as a programmer. Oregon Cycling Action

  692. Avatar
    Payroll Services Australia about 1 year later:

    I’m over it already

  693. Avatar
    phone finder about 1 year later:

    I will be sure to add your blog to my newsreader to keep up with your future posts. phone finder

  694. Avatar
    best people finder about 1 year later:

    perhaps there are many robots in our world in future. best people finder

  695. Avatar
    home hemorrhoid cures about 1 year later:

    The ideas are pointed out and clearly emphasized. Thanks for sharing your thoughts and ideas on this one.

  696. Avatar
    Water Gas about 1 year later:

    I would like to appreciate your work and would like to tell to my friends.

  697. Avatar
    ThePerfectToys about 1 year later:

    Okay, one of my friends could be characterized as a duct tape programmer. Simple as that folks, simple as that.

    All the best, Jane

  698. Avatar
    ???????????? about 1 year later:

    I recently came across your blog and have been reading along. I thought I would leave my first comment

  699. Avatar
    Sydney CBD Hairdresser about 1 year later:

    I want you to ship, but I don’t want you to ship shit. lolzz Interesting post and thanks for sharing. Some things in here I have not thought about before.Thanks for making such a cool post which is really very well written.will be referring a lot of friends about this.Keep blogging.

  700. Avatar
    Double Mattress about 1 year later:

    I agree with you The Duct Tape programming is very complicated.I have experienced it while implementing some CSS program also.Some browsers like IE is unable to display output without DUCT Tape in the code. But I have got some new ideas to overcome this problem from your blog.Thanks.

  701. Avatar
    Radar Detector Reviews about 1 year later:

    I do feel that many programmers are forgetting what programming truly is and are becoming “pretty boy” programmers. Imagine a day where the head programmer is like the star quarter back in high school ;D

  702. Avatar
    Logo Blog about 1 year later:

    amazing details of duct tape program !!! i think you should update more details …

  703. Avatar
    pariuri sportive about 1 year later:

    This really is an awesome post, I’m happy I recently found. I have been trying to find guest writers for my blog so if you ever decide that’s something you are interested in please feel free to contact me. I will be back to look at out more of your articles later

  704. Avatar
    Muslim in Australia about 1 year later:

    I have studied and face this problem in HTML and also in CSS. It is very complicated to see the program output on IE if we don’t have used the duct tape for our code.It is very necessary if we are working on IE browser.Thanks for the solution.

  705. Avatar
    Muslim in Australia about 1 year later:

    I have studied and face this problem in HTML and also in CSS. It is very complicated to see the program output on IE if we don’t have used the duct tape for our code.It is very necessary if we are working on IE browser.Thanks for the solution.

  706. Avatar
    semi marijuana about 1 year later:

    No method is available today in the realm of science that enables us to objectively judge that an individual has become competent enough to consent to life-changing decisions. http://www.funghi-magici.it

  707. Avatar
    Jacob about 1 year later:

    I agree with you about Joel. He’s wrong quite often :) potty training tips for boys

  708. Avatar
    Photoshop CS5 Serial Number about 1 year later:

    I agree with both of you jacob & author :)

  709. Avatar
    Social media news about 1 year later:

    Duct Tape Programmers are very lucky and they have acquired tremendous techniques. I will visit Joel’s blog. I have very little knowledge about it.

  710. Avatar
    buy house in bangkok about 1 year later:

    This is a really good post. Must admit that you are amongst the best bloggers I have read. Thanks for posting this informative article and I have been reading your posts regularly. I need to say that you are doing a fantastic job. Please keep up the great work.

  711. Avatar
    buy apartment bangkok about 1 year later:

    This is a really good post. Must admit that you are amongst the best bloggers I have read. Thanks for posting this informative article and I have been reading your posts regularly. I need to say that you are doing a fantastic job. Please keep up the great work.

  712. Avatar
    <a href="http://www.prideoftexas.net/sitemap.htm">Austin Houses</a> about 1 year later:

    Thanks for informative and helpful post, obviously in your blog everything is good.If you post informative comments on blogs there is always the chance that actual humans will click through.

  713. Avatar
    http://www.truereligionjean.net/ about 1 year later:

    just like before, i know, i will gain more knowledge when i entry into you website.

  714. Avatar
    Free Quran about 1 year later:

    I like this post.I don’t have any type of information related to this topic.But now I have understand the topic.I will apply it.

  715. Avatar
    top-sale-shop about 1 year later:

    top-sale-shop.com is leading a fashion style. Specific designed replica watches of the

    greatest brands in the world can be discovered here. Such as Hublot watches Replica and many

    more brands are provided for your choice at your will.We have a huge collection of Hublot

    replica watches on our online store. Our Replica Hublot Big Bang watches are the highest

    quality and most durable replicas available – almost indistinguishable from the real

    thing. Our replica Hublot Big Bang watches are of unique quality and survival. They’ll

    last as long as the real things – and at a significantly reduced price. top-sale-shop.com

    replica watches are simply the greatest quality, finest value watch replica available. Why

    not browse and compare nowadays?

  716. Avatar
    http://www.truereligionjean.net/ about 1 year later:

    just like before, i know, i will gain more knowledge when i entry into you website.

  717. Avatar
    okey oyunu oyna about 1 year later:

    i like it.

    internette görüntülü olarak okey oyunu oyna, gerçek kisilerle tanis, turnuva heyecanini yasa.

  718. Avatar
    Credit Card Collections about 1 year later:

    Adoption of Test driven development technique is an important requirement for new developer. I have really excited to get more knowledge about TDD.In my point of view,TDD is a testing language.so valuable stuffs.

  719. Avatar
    cogumelos magicos about 1 year later:

    This article is a useful one for all smokers and tobacco product consumers as it makes them aware about this Act and increase of tobacco taxes. http://www.cogumelomagico.eu

  720. Avatar
    casio classpad 330 about 1 year later:

    thanks nice usefull information casio classpad 330 http://www.makhzannoor.com

  721. Avatar
    Weight Loss about 1 year later:

    welcome to our store for buy the weight loss, we have the best weight loss.

  722. Avatar
    signs of chlamydia about 1 year later:

    Joel Spolsky blog is a really good blog

  723. Avatar
    nanda list about 1 year later:

    great blog review

  724. Avatar
    chlamydia psittaci about 1 year later:

    Incredibly good certainly I’ll possibly download it. Thanks

  725. Avatar
    ceridian self service login about 1 year later:

    a permission to read whats all about in your app and nice article i like it good job

  726. Avatar
    <a href="http://www.pure-jobs.com">Pure job search</a> about 1 year later:

    Fo Sho! about 5 hours later: I tend to hold in higher regard people who actually do stuff than people who talk about the best way to do stuff.

    Both Joel and Bob fall in the latter category somewhat but Joel has way more do-stuff cred.

  727. Avatar
    http://www.pure-jobs.com about 1 year later:

    Pure job search

    Fo Sho! about 5 hours later: I tend to hold in higher regard people who actually do stuff than people who talk about the best way to do stuff.

    Both Joel and Bob fall in the latter category somewhat but Joel has way more do-stuff cred.

  728. Avatar
    kosmima about 1 year later:

    Perfect article i enjoy it!

  729. Avatar
    www.secondhandforklifts.com.au about 1 year later:

    Interesting read. Thankyou.

  730. Avatar
    www.all-a-round.blogspot.com/ about 1 year later:

    Very google article!

  731. Avatar
    www.divetorches.co.uk about 1 year later:

    Wicked article!

  732. Avatar
    Dive Torches about 1 year later:

    Wicked article!

  733. Avatar
    remixuri2011 about 1 year later:

    There are actually plenty of particulars like that to take into consideration. That may be a nice point to convey up. I provide the ideas above as common inspiration but clearly there are questions like the one you bring up where an important thing can be working in honest good faith. I don?t know if best practices have emerged round things like that, however I am positive that your job is clearly identified as a good game. Each boys and girls really feel the affect of just a second’s pleasure, for the remainder of their lives. Remixuri 2011 | Muzica 2011

  734. Avatar
    ygtygu about 1 year later:

    This blog is fantastic.I would like to introduce this nice website to my friends.please enter:www.whitepoloshirtsmens.comHello!I visited your site,today, and really like it.I run a site similar to yours, and was wondering if you would like to trade links with me?You can see my site at [ polo shirts ] I would give your site a prominent listing on my page at [ polo], if you would be willing to do the same.Please let me know if you have any questions or comments.Best regards!!

  735. Avatar
    kimberlyturner110 about 1 year later:

    Hey that’s really good article.I love this site and your post also.The article is useful for all smokers and tobacoo product consumers I suggest every one read this article that is very useful.custom neon sign.

  736. Avatar
    Nose Job Recovery about 1 year later:

    I consider TDD as essential for several years. However, I dicovered one thing, that is (seemingly) not particularly popular. TDD and unit testing is not an easy skill. It is important, because their ROI depends directly on their quality. I have already seen some extremely valuable tests, many ok tests and way too many bad tests, that actually got in the way of development, providing less value, than costs of maintaining them.

    Therefore, I’d like to stress, that it is crucial to use TDD the right way in order to get its benefits. No wonder, that many people fail to see value in unit testing, when they are most often confronted with poor-quality test practices. Uncle Bob, keep on spreading your knowledge! The more people start to get early ROI from their tests, the less people will remain sceptical about them. Seeing is believing. Eventually Joel is going to see it, too… or he’s not, let him alone and keep getting benefits from testing techniques :)

  737. Avatar
    Techno News about 1 year later:

    What youre saying is completely true. I know that everybody must say the same thing, but I just think that you put it in a way that everyone can understand. I also love the images you put in here. They fit so well with what youre trying to say. Im sure youll reach so many people with what youve got to say. I wait behind the visit … Techno News

  738. Avatar
    Roulette about 1 year later:

    Great stuff as always Robby, my pop provider was dropping these mails but the code works great.

  739. Avatar
    hot Rolex GMT about 1 year later:

    More power to your blog,I like the revolution one a lot. hot Rolex GMT

  740. Avatar
    mkv to avi converter about 1 year later:

    Thanks for your share. Anti TDD folks seem to consistently overlook that TDD isn’t slower. It simply isn’t, the folks who complain to me about have never tried it.

  741. Avatar
    Herpes symptoms in men about 1 year later:

    Thanks for the article. But i think you are presenting one side of the picture only.

  742. Avatar
    Legal Advertising about 1 year later:

    Come on how can they not use C++ in their development?

  743. Avatar
    Austin Roofing Contractor about 1 year later:

    I want to congratulate you for being able to write the Xml transformation capabilities of Linq to Xml. Keep up the good work, dude. Austin Roofing Contractor

  744. Avatar
    Crazy Slots about 1 year later:

    I hardly ever write comments on blogs, but your article urged me to praise your blog. Thanks for the read, I will surely favorite your site and check in occasionally. Cheers. Crazy Slots

  745. Avatar
    Hotel Apartments in Dubai about 1 year later:

    I want to thank the blogger very much not only for this post but also for his all previous efforts. ...

  746. Avatar
    coach bags about 1 year later:
    Nike Zoom Soldier III
  747. Avatar
    New Homes Austin TX about 1 year later:

    For a lot of occasions I’ve recently been searching for dependable as well as distinctive web page and this is definitely the best website exactly where I possibly could discover that.

  748. Avatar
    Annuity about 1 year later:

    Good site that has all the idea about the good health and also the book that recommends the same. This site is to be visited at least once so as to get the much of the health tips about one self.

  749. Avatar
    Pay attention to beats dre about 1 year later:

    I am greatly convinced that beats dre can take you experience.in addition,

    target=_blank>Monster beats headphones

    is on sale.so you will be the most beneficiary among so many people. All of them

    will be your best choice in this summer and it wiil also maeke you feel confident for its prducts,its quality. As we all

    know it is on sale.you know?don’t be suspicious.you wiil become the most beneficiary.there goes without saying that the

    quality of it and other brands like beats headphones. our products

    will meet your demand.it will not disappoint you .you can be relax and enjoy what these products give you. besides its price

    is low.so everyone of us can afford it.no matter who you are never leave these headsets behind.you can take action now.it

    will help you realize your dream.

  750. Avatar
    waiting room furniture about 1 year later:

    Appreciate the C++ information. Thanks Uncle Bob.

  751. Avatar
    long term disability insurance attorney about 1 year later:

    I agree. C++ is better one.

  752. Avatar
    san diego bankruptcy attorney about 1 year later:

    I would care to thank you for the movements you make successful in writing this article. I am desiring the same best work Quotes early as better. Keep it up…

    san diego bankruptcy attorney

  753. Avatar
    Payroll about 1 year later:

    This blog let me know bout software in my computer. He try to make a new concept in making any software. I need some kind of software that can protect my data files.

  754. Avatar
    Cheap Spa Chemicals about 1 year later:

    I still code in C++, maybe I shouldn’t admit it though!

  755. Avatar
    casino huijareita about 1 year later:

    Wikipedia ist irgendwie auf der englischsprachigen Welt fokussiert, und das war immer so. Mich erinnert das an Oscar-Verleihung, wo alles was nicht-amerikanisch ist mit “best foreign film” abgedeckt ist.

  756. Avatar
    Polish foodd about 1 year later:

    Programmer have difficult job although there are many tools that can be used to make their job easier. thanks.

  757. Avatar
    Hancy about 1 year later:

    Hello Friend,Whichever style of Fashion Shoes you’re looking for, classical, fashionable, lovely or the latest design, you can find your favorite designer shoes in www.dunkpage.com ,several days ago I bought one pair of shoes from there,It’s beautiful and very comfortable!

  758. Avatar
    Gun about 1 year later:

    “The programmer who spends weeks building the perfect structure does just as much harm to the project as the programmer who hacks a bunch of crap together. Neither have struck the balance that’s required.” – you mean as simple as good?

  759. Avatar
    Horoscope about 1 year later:

    a good programmer is someone who finds compromise between SEO and the user

  760. Avatar
    wooden flooring by Exotic Decor Pvt Ltd about 1 year later:

    Website- www.exoticdecor.in Email – Exotic Décor pleasure to introduce ourselves as a market leader in the field of wooden floorings. We are a leading importers and distributors of laminated flooring, Engineered wood flooring, Solid wood flooring, Decking & Wallpapers in India. We represent “KRONOSWISS” in India. KRONOSWISS is the biggest manufacturer of Laminate flooring products in Switzerland & confirm all European standards. We have different varieties as AC 3, AC 4 and AC 5. KRONOSWISS products have different finishes such as Wood Grain, Hand Scrape, Emboss & has features like 6 feet long plank which gives distinguish looks, KRONOSWISS products can be used for domestic and as well as commercial areas. We also represents “BKB PARQUET” in India, BKB is the leading manufacturer of Engineered Wooden flooring & we are distributing their products all accross India. Exotic Décor is in the unique position of offering you Solid Wood Flooring which is being import from world over and been promoted under the brand name of “Exotic Floors” and have special features like brush finish, 7 Coats of UV-Lacquer and are available in wide range such as Merbau, Cumaru, Jatoba, Oak Natural, Oak Walnut, Ash Sable etc. Exotic Floors are been manufactured under strict quality control and meets all international standards.

  761. Avatar
    Bankruptcy Attorney Orange about 1 year later:

    thanks for posting this awesome blog i really like it and im reading right now thanks again and keep it up

  762. Avatar
    lose thigh about 1 year later:

    In your opinion, what’s the % of the Duct Tape Programmers?

  763. Avatar
    wooden hangers about 1 year later:

    Appreciate the C++ information. Thanks Uncle Bob.

  764. Avatar
    Hair Extensions for Short Hair about 1 year later:

    Good post, however, I was wondering if you could write a litte more on this topic? I’d be very grateful if you could elaborate a little bit further. Thanks!

  765. Avatar
    wooden hangers about 1 year later:

    KXPOS System is all in one touch pos system,It used in restaurant pos system,Cafes,Bars,Pubs,Clubs,Supermarkets,Vegetable and Fruit wooden hangers

  766. Avatar
    Austin Remodeling Companies about 1 year later:

    “The programmer who spends weeks building the perfect structure does just as much harm to the project as the programmer who hacks a bunch of crap together. Neither have struck the balance that’s required.” – you mean as simple as good?

  767. Avatar
    Ac Repair Manassas VA about 1 year later:

    This is a really good read for me. Must agree that you are one of the coolest blogger I ever saw. Thanks for posting this useful information. It was just what I was on looking for. I’ll come back to this blog for sure! I bookmarked this blog a while ago because of the useful content and I am never being disappointed. Keep up the good work .Thanks

    Ac Repair Manassas VA
    Ac Ac Repair Woodbridge VA
    Ac Ac Repair Leesburg VA
    Refrigerator Repair Manassas VA
    Refrigerator Repair Woodbridge VA
    Refrigerator Repair Leesburg VA
    Murder 2 Songs

  768. Avatar
    Ac repair Manassas about 1 year later:

    It’s not good post…. You can post. better

  769. Avatar
    san diego lawyer about 1 year later:

    Thanks for the blog.The article is a nice one.I would really want to appreciate it.

  770. Avatar
    Orange County Lawyers about 1 year later:

    Cool stuff.Thanks for the information on the duct tape programmer.I didn’t have much knowledge on that topics.

  771. Avatar
    silver prices today about 1 year later:

    Hey, great idea. I never thought of using Kontera for older posts. I really dislike Kontera, but this is actually a pretty good compromise. I’ve never heard of anybody using it this way.

  772. Avatar
    check the details about 1 year later:

    Also I agree with this. Though I have been using Microsoft products for years, but in every edition of Their product, I still never feel satisfied.

  773. Avatar
    Austin Remodeling Contractors about 1 year later:

    Thank you for sharing the article . It let me know something I didn’t know .I hope everyone here can find his or her dream ,then make it come true ! Austin Remodeling Contractors

  774. Avatar
    epub-conversion about 1 year later:

    hello, it’s a different article…

  775. Avatar
    epub conversion about 1 year later:

    hello, it’s a different article…

  776. Avatar
    austin web design about 1 year later:

    Thanks for the article being shared here on Duct tape programmer.I really like it because of the easy understanding of article.

  777. Avatar
    http://www.tattooanddesigns.org/ about 1 year later:

    this is such an interesting facts, never imagine reading this for almost an hour

  778. Avatar
    Auto Glass Repair and Windshield Replacement in Maryland, Baltimore, Virginia and Washington DC about 1 year later:

    Discount Glass Repair offering auto glass repair, windshield replacement and installation services in washington dc, baltimore md, rockville md, gaithersburg md, alexandria va, fairfax va. http://www.discountglassrepair.net

  779. Avatar
    Blackjack about 1 year later:

    Thanks a lot for sharing these tips, I needed it a lot for my project.I will visit your blog more often because entertaining.Keep is really doing this because you are great.

  780. Avatar
    http://www.blackjack-haus.com about 1 year later:

    Very nice! Everyone will try to build a robot now. You should re-check the configuration steps. Maybe you mistakenly lock them..

  781. Avatar
    Roulette about 1 year later:

    Very nice! Everyone will try to build a robot now. You should re-check the configuration steps. Maybe you mistakenly lock them..

  782. Avatar
    Blackjack about 1 year later:

    It’s pretty funny that Joel uses Netscape as the ideal example. Hmmm…that software was good while it lasted but apparently the duct tape approach didn’t work in the long term. It hasn’t been around in years. Or if you call Firefox a descendant of it, you also have to admit that it took years to revamp that duct tape code. Though in a sense I can see what he’s saying. He just goes too far to the extreme and generalizes too much.

  783. Avatar
    oem manufacturing about 1 year later:

    I am glad to read this post its an interesting one. I am always searching for quality posts and articles and this is what I found here I hope you will be adding more in future. Thanks

  784. Avatar
    <a href="http://www.onlineworkingcalculator.com">Online Calculator.com</a> about 1 year later:

    I have Some Knowledge About Programing I wanna Be A Programmer Which Programming Language Is The Best ? ? ??

  785. Avatar
    car about 1 year later:

    I am glad to read this post its an interesting one. I am always searching for quality posts and articles and this is what I found here I hope you will be adding more in future. Thanks

  786. Avatar
    78750 Homes about 1 year later:

    This is a good post. This post gives truly quality information. I’m definitely going to look into it. Really very useful tips are provided here. thank you so much. Keep up the good works

  787. Avatar
    78751 Homes about 1 year later:

    I love your site, you give so many great tips especially since I use word press and the plug-in section of your blog is great. some of the tips i get here I can’t find anywhere else. Thanks

  788. Avatar
    Binary To Text about 1 year later:

    Its a great start of the day with a website like this. very informative , i’m now one of the regular visitor of your web. Thanks. http://www.binarytotext.com

  789. Avatar
    Fatima Rashid about 1 year later:

    Great work you have done with this topic – my brother is programmer and I hope I will be to after the high school.

  790. Avatar
    Make Photos about 1 year later:

    Being a programmer isn’t so easy at it might seem – it’s not just being in front of computer – it’s a lot of thinking …

  791. Avatar
    bagless canister vacuum cleaners about 1 year later:

    Awesome stuff. I had some problems with the Haslayout and the article you linked to explained it really well. It’s astonishing to see how simple the fix is, just took me 2 minutes to get it up. It is really good tutorial of css. It is vesy useful for the designers and contains great information. Great…..Thanks this was interesting, never realised there was several ways.

  792. Avatar
    ytygty about 1 year later:

    http://www.monclerjacketsmens.com/ www.monclerjacketsmens.com Auswahl an Kleidung hat eine andere Art der Gesch?ftst?tigkeit.”kingjacky003” Die meisten http://www.monclerjacketsmens.com/ moncler jacketGesch?ft geführt wird, online. Die Angebote werden von http://www.monclerjacketsmens.com/ mens moncler gestellt. Ein kluger Schachzug der Einrichtung eines http://www.monclerjacketsmens.com/ moncler jacket online shop hat das Gesch?ft gemacht. Dies ist ein wichtiger Schritt im Hinblick auf die Details, die Geld moncler shop Frauen beim Kauf eines Unternehmens, das verantwortliche Personal, Kosten der betrieblichen Aufwendungen und Hilfsprogramme usw. http://www.monclerjacketsmens.com/ moncler down jackets nicht in das Bild. Alle Produkte moncler daunenjacke sind steuerfrei und somit entf?llt die Notwendigkeit, Steuern zu zahlen. Ziel des Unternehmens ist, http://www.monclerjacketsmens.com/ moncler down jacket hat der Kunde Rabatte w?hrend der Wintersaison und einen zus?tzlichen Vorteil gegenüber

  793. Avatar
    adult dating  about 1 year later:

    I agree, so brave. I think I would have lost my mind. Reminds me of the show Locked up Abroad.

  794. Avatar
    rama about 1 year later:

    It is a very informative and useful post… Thank you it is good material to read this post increases my knowledgeNew Homes Austin TX Lake Travis Real Estate

  795. Avatar
    <a href="http:// e not waterproof.<a href="http://www.chestnutuggbootsuk.com/" rel="dofollow">Black ugg boots uk</a> is this seasons hottest fashion trend! Genuinely Australian Made from 100% luxurious Australian Double Faced Merino Sheepskin. Featu about 1 year later:

    e not waterproof.Black ugg boots uk is this seasons hottest fashion trend! Genuinely Australian Made from 100% luxurious Australian Double Faced Merino Sheepskin. Featuring an elegant fleece spillage on top. Chocolate ugg boots uk are double-stitched in parts, which assures the highest quality. Brown ugg boots uk are durability and comfortable.Grey ugg boots uk is one of the most technically advanced sheepskin boots in the market today. Featuring the signature pink ugg boots uk label on the heel, Ugg Classic Cardy Boots this knitted boot can be worn up or rolled down. Ugg classic cardy boots uk feature a light and flexible outsole along with a suede heel guard provides durable wear all season long. With it’s original, authentic boots for ultimate warmth, comfort and style. You will want to wear Ugg Boots all season long.

  796. Avatar
    Audio Visual Recruitment about 1 year later:

    This is one of the most incredible blogs I’ve read in a very long time. WWW.audio-visual-recruitment.co.uk provides you AV recruitment agencies give you the freedom to focus on your core business by allowing you to outsource your whole recruitment function, reducing your overall costs and the time.

  797. Avatar
    austin dwi lawyers about 1 year later:

    I have gone through the article being shared here.It seem to me unique and I would like ton share it with my friends.

  798. Avatar
    austin luxury homes about 1 year later:

    If everyone is think bout win-win for both party in deals of free market, value added of multiply effect will happened austin luxury homes

  799. Avatar
    austin luxury homes about 1 year later:

    Thank you. Was struggling for a little while with the layout, and much to your help; all things are right in the world once more

  800. Avatar
    new homes austin tx about 1 year later:

    Posts like this remind me why i spend so many hours on reading articles like this.new homes austin tx

  801. Avatar
    new homes austin tx about 1 year later:

    I admire the way you express yourself through writing. Your post is such a refreshing one to read.

  802. Avatar
    land for sale about 1 year later:

    It’s usually pretty easy to take care of things like this. Most of the time, we just need a little more information about your account or latest transactions.

  803. Avatar
    St John Virgin Islands Villas about 1 year later:

    Thank you. Was struggling for a little while with the layout, and much to your help; all things are right in the world once more St John Virgin Islands Villas

  804. Avatar
    Austin Foreclosures about 1 year later:

    It’s astonishing to see how simple the fix is, just took me 2 minutes to get it up. It is really good tutorial of css. It is vesy useful for the designers and contains great information. Great…..Thanks this was interesting, never realised there was several ways.

  805. Avatar
    austin rental about 1 year later:

    I love those old times rather than now…because at that time those who love J-Music truly love J-music BUT now, most of them are just following the trend

  806. Avatar
    cheapest stock brokers about 1 year later:

    We should not trust someone who ships bug tracking software.

  807. Avatar
    Telas de proteção about 1 year later:

    I admire the way you express yourself through writing. Thanks!

  808. Avatar
    Penang Real Estate about 1 year later:

    I’ve been enjoying reading the content of your article! thanks for the infomative. Great site.

  809. Avatar
    shopping cart malaysia about 1 year later:

    thanks for the article written related to Web development & there are really very useful informative instructions published , i came across our website by searching . . happy to stop here

  810. Avatar
    banner design about 1 year later:

    No doubt this is an excellent post I got a lot of knowledge after reading and Very entertaining subject, I will bookmark your website to check out if you publish more in the future.

  811. Avatar
    End of Tenancy Cleaning London about 1 year later:

    The site owner has carried out a superb job of putting it together, the info here is really insightful. Now i am going to bookmark this internet site so that I can revisit in the future Jobs.

  812. Avatar
    serviced apartments in york about 1 year later:

    Really well written post here with some very interesting points of view not that i agree with them all but thanks anyway for taking the time to share will be back to view future posts.

  813. Avatar
    Pandora Charms about 1 year later:

    Thanks for your blog. I’m just launching http://www.magicjewelrybox.org/">Pandora Charms and wonder if I should also register the same domain with hyphens between the words. Should one have a permanent re-direct to the other?

  814. Avatar
    Georgetown Condos about 1 year later:

    We understand it may be frustrating not to have full access to your PayPalaccount. We want to work with you to get your account back to normal asquickly as possible. Georgetown Condos

  815. Avatar
    Song pk free download , Songs pk freed download , Songspk about 1 year later:

    Song pk free download , Songs pk freed download , Songspk

  816. Avatar
    ankur263 about 1 year later:

    this post is nice. thankyou Austin Homes for Rent Austin Houses for Rent

  817. Avatar
    Austin Waterfront Homes about 1 year later:

    I really enjoyed reading this post, big fan. Keep up the good work and please tell me when can you publish more articles or where can I read more on the subject

  818. Avatar
    rohitagarwal0123456@gmail.com about 1 year later:

    thanks for the article written related to Web development & there are really very useful informative instructions published , i came across our website by searching . . happy to stop here

  819. Avatar
    http://freeonlinecasinonow.com about 1 year later:

    We understand it may be frustrating not to have full access to your PayPalaccount. We want to work with you to get your account back to normal asquickly as possible. Georgetown Condos

  820. Avatar
    Iceland Holiday about 1 year later:

    I am in this world only two years and until I learn programming seemed something impossible – now I think is the greatest job ever…

  821. Avatar
    serial for about 1 year later:

    Creative review. It was interesting to read your opinion. I also am following a blog by Joel.

    serial for

  822. Avatar
    Austin Roofing Contractors about 1 year later:

    Thank you. I have checked out how this server works with my current application too. So far there is no problem

  823. Avatar
    best digital multitrack recorder about 1 year later:

    The post is written in very a good manner and it entails many useful information for me. I am happy to find your distinguished way of writing the post. Now you make it easy for me to understand and implement the concept.

  824. Avatar
    How to GrowTaller about 1 year later:

    I appreciate this article. In the seventies I spent four glorious days in Bristol, Rhode Island, with some friends who lived right on the water.

  825. Avatar
    http://www.saleoutnet.com/ about 1 year later:

    Shop The Latest Christian Louboutin & Jimmy Choo & Manolo Blahnik From Outlets, Up to 70% Off the Latest Designer Styles.

  826. Avatar
    ezine articles about 1 year later:

    thanks for sharing that article great stuff!

  827. Avatar
    Huggies Free Coupons about 1 year later:

    exactly it is useful and one make more efforts and search to have the useful ideas and notes , but here you edited very easy

  828. Avatar
    article marketing robot coupon about 1 year later:

    It’s my very first time visiting here. I found numerous useful stuff within your blog particularly the on-going dialogue. http://topseotoolsreview.com/article-marketing-robot-discount-code/

  829. Avatar
    graduate education blog about 1 year later:

    This service is easy to use and very profitable for us.It is easy to learn and maintenance also it should know for each persons.

  830. Avatar
    what does it mean when you dream about someone about 1 year later:

    Though I think the metaphor has been stretched as far as it can go, here’s my thought on duct tape programming:

  831. Avatar
    C4ISR about 1 year later:

    Thanks for information, I liked a lot reading this article and comments.

  832. Avatar
    Fosamax Femur Fracture Lawsuit about 1 year later:

    Love this place, can’t stop coming here to read.

  833. Avatar
    Topamax Lawsuit about 1 year later:

    Keep up the good work, this is an excellent post. I can’t thank you enough.

  834. Avatar
    California Mesothelioma Lawyer about 1 year later:

    Very informative post. You should write more frequently.

  835. Avatar
    Depakote Lawsuit about 1 year later:

    I appreciate your hard work and diligence. You have some very interesting ideas, and this is the format to share them.

  836. Avatar
    Nephrogenic Systemic Fibrosis about 1 year later:

    I can tell that you are passionate about the subject matter. It comes through in your writer.

  837. Avatar
    Mesothelioma Lawyer Los Angeles about 1 year later:

    Don’t know how to express my gratitude for this finely written piece. You have command of the subject matter.

  838. Avatar
    Mesothelioma Lawyer Florida about 1 year later:

    I will definitely come back here again. Keep up the good work.

  839. Avatar
    Minnesota Mesothelioma Lawyer about 1 year later:

    You really have command of the English language and have superior writing skills. Kudos to you my friend.

  840. Avatar
    Shoulder Pain Pump Lawsuit about 1 year later:

    You should write professionally, this stuff is simply fantastic.

  841. Avatar
    Round Rock Door Company about 1 year later:

    Seems like a horrible waste of time, since by Uncle Bob’s own admission, Quicksort can not easily be implemented by applying TDD principles

  842. Avatar
    Abilene Roofing Companies about 1 year later:

    Thank you. I have checked out how this server works with my current application too. So far there is no problem

  843. Avatar
    Light bulbs about 1 year later:

    Thank you for taking the time to publish this information very useful! I?m still waiting for some interesting thoughts from your side in your next post thanks.

  844. Avatar
    android games about 1 year later:

    Have a nice flash game site. Would you visit. Thank you admin of this site. just click on the links. Thanks again.

    android games

  845. Avatar
    palmiye about 1 year later:

    Have a nice flash game site. Would you visit. Thank you admin of this site. just click on the links. Thanks again.

    palmiye

  846. Avatar
    y8 about 1 year later:

    Have a nice flash game site. Would you visit. Thank you admin of this site. just click on the links. Thanks again.

    palmiye

  847. Avatar
    sac longchamp about 1 year later:

    Il n’est pas un rêve de posséder un sac longchamp, il vous faire plus de beauté, peut-être vous êtes maintenant wating pour cette journée, et un sac de grande qualité, parfois vous faire sentir à l’aise, si vous sortez avec un escompte longchamp pas cher, vous serez amusant tout de suite, ce n’est pas un rêve, les sacs longchamp pas cher vente peut faire venir vrai!

    sac longchamp est une marque célèbre dans le monde, beaucoup de filles toujours changer leurs sacs sans aucune réflexion, mais un prix élevé des sacs de mode peut être une question pour eux. Ne vous inquiétez pas! longchamp sac à vendre fournir des produits bon marché avec tout le monde de haute qualité, c’est une bonne chance, les sacs longchamp pas cher vous donnera un moment mémorable.

    Bienvenue à Sac Longchamp Pas Cher, il ya beaucoup de produits, les gensaiment toujours à choisir Sac Longchamp Solde de haute qualité et bas prix ainsi queun bon aper u. Un sac de marque mondialement connue sac a main longchamp peut être votre premier choix. Ils peuvent vous être plus de confiance et que vous vous sentiez à l’aise.

  848. Avatar
    Austin Lake Estate about 1 year later:

    good comments

  849. Avatar
    pregnancy cramping about 1 year later:

    I learn something new on different blogs everyday. It is always refreshing to read posts of other blogger and learn something from them. Thanks for sharing.

  850. Avatar
    Manhattan Breast Implants about 1 year later:

    Nice Site With lot of Information

  851. Avatar
    Manhattan Breast Implants about 1 year later:

    Nice Site With lot of Information

  852. Avatar
    Bowtrol about 1 year later:

    Blog posts about wedding and bridal are always rare to find , at least with great quality,you qualify for a great blog post writer title,kep the great job happening

  853. Avatar
    http://www.cheaps-stores.com/ about 1 year later:

    This is the best weblog for anyone who wants to know about this subject. You know a lot its virtually challenging to argue with you . You certainly place a new spin on the topic thats been composed about for many years. Fantastic things, just fantastic! http://www.wholesaletous.com/

  854. Avatar
    Crescent Processing Comapany about 1 year later:

    this is super cool i wanna thank you for sharing keep it up

  855. Avatar
    metal flower bed edging about 1 year later:

    You should write professionally, this stuff is simply fantastic.

  856. Avatar
    rhinoplasty healing about 1 year later:

    Yes, there is a difference between Just Ship and Clean Ship. Just Ship is, as per Joel’s terminology is Mr. duct tape, which I consider mixture of technical debt and mess (depending upon programmers goodness). Well, the difference can become more clear if you ask – how long you would like to see your software running? If its just for version one Duct tape is acceptable, but if you want your software a-horse-of-long-race Mr. clean ship always wins.

    I would like to echo famous quote on unix little bit differently: Cool-ness (like templates, COM, TDD, patterns and practises, refactoring, etc) is simple. And it requires smart brain to understand cool-ness.

    Mr. Just ship would always refrain from changes (or the acceptance will result into mess over mess, a patch for patch scenario) while Mr. Clean ship will always accept the change (stolen directly from Agile manifesto shamelessly).

    At the end I would appreciate Joel for his ship-biased spirit and thankful to uncle bob to bring that spirit to clean level.

  857. Avatar
    perfect about 1 year later:

    I found your website perfect for my needs. It contains wonderful and helpful posts. I have read most of them and got a lot from them. To me, you are doing the great work.eczema cream

  858. Avatar
    http://www.doctordelrosario.com about 1 year later:

    She’s received keys to cities, multimillions in federal funding, and helped thousands! Dr. Jacqueline Del Rosario is “The How to lady.” She teaches people to have better marriages, live life better, and recapture lost visions.

  859. Avatar
    Bangkok Condo sale about 1 year later:

    I’m still learning from you, but I’m making my way to the top as well. I absolutely liked reading everything that is written on your blog.Keep the information coming. I enjoyed it

  860. Avatar
    Bangkok Apartment for sale about 1 year later:

    I’m still learning from you, but I’m making my way to the top as well. I absolutely liked reading everything that is written on your blog.Keep the information coming. I enjoyed it

  861. Avatar
    Bangkok property agents about 1 year later:

    Track and field (also known as track and field sports and track and field athletics) is a sport comprising various competitive athletic contests based around the activities of running, jumping and throwing.

  862. Avatar
    Crescent Processing Company about 1 year later:

    Very good points you wrote here..Great stuff…I think you’ve made some truly interesting points.Keep up the good work

  863. Avatar
    Crescent Processing Company about 1 year later:

    I am Glad to find your way of writing the post impressive. Now it easy for me to understand Become implementation and the concept. Thanks for sharing the post

  864. Avatar
    Crescent Processing Company Scam about 1 year later:

    aweosme blog nice

  865. Avatar
    Sahil about 1 year later:

    This is me i am king u will love me

  866. Avatar
    bangkok rent apartment about 1 year later:

    Mobile advertising is very important to get a broad market. Local market is the most important.

  867. Avatar
    bangkok property about 1 year later:

    Marea articol. I se marcaj acest post ?i pe perete Facebook meu imediat. ?i î?i desf??oar? un gând interesant, de asemenea. Wireless nu beneficiaz? de publicitate ?i îmbun?t??e?te-l foarte mult.

  868. Avatar
    Kiadó Lakás Budapest about 1 year later:

    Very useful article! Thank you!

  869. Avatar
    billigste taletid about 1 year later:

    Very good points you wrote here..Great stuff…I think you’ve made some truly interesting points.Keep up the good work

  870. Avatar
    http://www.doctordelrosario.com about 1 year later:

    The best neighborhoods in Newport Beach are the ones that have active homeowners association because rules and regulations protect property values. Any neighborhood in Newport Beach real estate is a great place to live, however a neighborhood with an active homeowner’s association becomes one of the best places to live. Newport Beach realtors say that an excellent neighborhood is so much more than beautiful views, modern conveniences and desirable locations. A neighborhood becomes truly stellar when residents feel pride in their accomplishments through cooperative activities to protect and beautify their Newport Beach real estate. Determination and vision on the part of the residents and Newport Beach realtors makes a great neighborhood. They don’t wait for the government to care about each other and their neighborhood. A village in Newport Beach real estate is made through efforts of many people, Newport Beach realtors, and government insiders. Cooperative activities like picking up trash, discouraging loitering and vandalism, and working to solve environmental issues connects business owners, senior citizens, children and teenagers, Newport Beach realtors and all citizens in the community. Small victories empower people and build confidence to solve other problems and make a positive difference. Newport Beach has a couple of hundred community associations which can be found here, http://www6.city.newportbeach.ca.us/website/gis/pdf_maps/commassoc_11X17.pdf. Prospective home buyers can look at the map, find their desired locations and find the name of the homeowner’s association. Calling the association for more information, calling Newport Beach realtors or doing a simple web search may be very helpful in finding the best neighborhoods. Many associations in Newport Beach real estate have websites, including information about activities and upcoming events. Homeowners associations are usually governed by a Board of Directors. Usually the board will hire a manager who follows a set of rules, the CC & R’s. Associations are consistent with rules in order to maintain property values in Newport Beach real estate. Keep the Noise Down Newport Beach has a brand new anti-party ordinance which makes people throwing loud parties or for contributing or permitting parties deemed excessive to be fined $3,000 on the spot by police. While the City Council passed the ordinance, business owners, homeowners associations, Newport Beach realtors and residents got together and pushed for it. Homeowners associations in L.A. and Sherman Oaks have also been hounding their cities to pass tough noise rules. Newport Beach realtors say that any neighborhood now in Newport Beach real estate is likely to be quiet and under control. An Association Will Speak Up Whether an association is right or wrong is largely immaterial as they deal with government and laws. However, a homeowners association in Newport Beach real estate that speaks up at all is to be desired. Consider the board of directors at a local association who went to the city for rules clarification about the types of flag being flown at a residence. The City ruled that the resident had the right to fly the flag of his country of origin. The homeowners association was overruled but they were honest and direct with the issue.

  871. Avatar
    konkurrencer about 1 year later:

    Thanks for informative and helpful post, obviously in your blog everything is good.If you post informative comments on blogs there is always the chance that actual humans will post.click through.

  872. Avatar
    billigste taletid about 1 year later:

    we desire for an excellent work from you and there is no doubt that this is a good work done by you. thanks to you for your great effort on this post.

  873. Avatar
    motorcycle deals about 1 year later:

    Why this brand is so popular, maybe the best reasons for this are that Coach Bags are excellent in quality and reasonable in price,full range of sizes and specifications.

  874. Avatar
    Belas about 1 year later:

    I try to use Google translate for this article. Thanks for sharing your article. Thanks

  875. Avatar
    randy ortan about 1 year later:

    Acknowledgement of informative and useful, obviously, his blog is all good.If informative commentary blog posts, there is always the possibility that real human beings through post.click. garage shoes

  876. Avatar
    global about 1 year later:

    Why this brand is so popular, maybe the best reasons for this are that Coach Bags are excellent in quality and reasonable in price,full range of sizes and specifications.retirement income solutions

  877. Avatar
    Bubble hash bags & Pollen presses about 1 year later:

    Took me time to read all the comments, but I really enjoyed the article. It proved to be Very helpful to me and I am sure to all the commenters here ! It’s always nice when you can not only be informed, but also entertained ! I’m sure you had fun writing this article.

  878. Avatar
    IT Consulting about 1 year later:

    I tend to hold in higher regard people who actually do stuff than people who talk about the best way to do stuff.

    Both Joel and Bob fall in the latter category somewhat but Joel has way more do-stuff cred.

  879. Avatar
    IT Consulting about 1 year later:

    Took me time to read all the comments, but I really enjoyed the article. It proved to be Very helpful to me and I am sure to all the commenters here ! It’s always nice when you can not only be informed, but also entertained ! I’m sure you had fun writing this article.

  880. Avatar
    IT Consulting about 1 year later:

    This is a great post; it was very informative. I look forward in reading more of your work. Also, I made sure to bookmark your website so I can come back later I must say that this makes your work great.You have an unique way of presenting ideas.In a way that anyone would have interpretation.

  881. Avatar
    IT Consulting about 1 year later:

    ciation. Calling the association for more information, calling Newport Beach realtors or doing a simple web search may be very helpful in finding the best neighborhoods. Many associations in Newport Beach real estate have websites, including information about activities and upcoming events. Homeowners associations are usually governed by a Board of Directors. Usually the board will hire a manager who follows a set of rules, the CC & R’s. Associations are consistent with rules in order to maintain property values in Newport Beach real estate. Keep the Noise Down Newport Beach has a brand new anti-party ordinance which makes people throwing loud parties or for contributing or permitting parties deemed excessive to be fined $3,000 on the spot by police. While the City Council passed the ordinance, business owners, homeowners associations, Newport Beach realtors and residents got together and pushed for it. Homeowners associations in L.A. and Sherman Oaks have also been hounding their cities to pass tough noise rules. Newport Beach realtors say that any neighborhood now in Newport Beach real estate is likely to be quiet and under control. An Association Will Speak Up Whether an association is right or wrong is largely immaterial as they deal with government and laws. However, a homeowners association in Newport Beach real estate that speaks up at all is to be desired. Consider the board of directors at a local association who went to the city for rules clarification about the types of flag being flown at a residence. The City ruled that the resident had the right to fly the flag of his country of origin. The homeowners association was overruled but they were honest and direct with the issue.

  882. Avatar
    C4ISR about 1 year later:

    Your work is very good and I appreciate you and hopping for some more informative posts. Thank you for sharing great information to us.

  883. Avatar
    http://1coupleavie.com about 1 year later:

    réseau contact, réseaucontact, rencontre rencontre

  884. Avatar
    http://freeediblearrangementscoupons.com about 1 year later:

    Edible Arrangements Coupons, Edible Arrangements Coupon Code

  885. Avatar
    Landscaping VT about 1 year later:

    Very interesting to read this post..But you did correct only..Thanks for sharing this experience over here.

  886. Avatar
    karmaloop coupon code about 1 year later:

    Thanks for the reminder. I almost forgot that fall is coming.Perhaps I should take some preparations I made sure to bookmark your website so I can come back later I must say that this makes your work great.

  887. Avatar
    karmaloop coupon code about 1 year later:

    Thanks for the reminder. I almost forgot that fall is coming.Perhaps I should take some preparations I made sure to bookmark your website so I can come back later I must say that this makes your work great.

  888. Avatar
    cashmere sweaters on sale about 1 year later:

    Hi,You explained the topic very well.The contents has provided meaningful information thanks for sharing info I learn something new on different blogs everyday. It is always refreshing to read posts of other blogger and learn something from them. Thanks for sharing.

  889. Avatar
    cashmere sweaters on sale about 1 year later:

    Thanks for the reminder. I almost forgot that fall is coming.Perhaps I should take some preparations I made sure to bookmark your website so I can come back later I must say that this makes your work great.

  890. Avatar
    Helotes Land about 1 year later:

    January millions could not get health care because the free market worked for them when they were healthy but often did not work at all when they needed care.

  891. Avatar
    beats by dre store about 1 year later:

    h care because the free market worked for them when they were healthy but often did not work at all when they needed care.high quality headphones new design headphones

  892. Avatar
    mobile signal booster about 1 year later:

    In this blog post i found such an intresting stuff for us and it will be very important for us to having knowledge about this certain points that you have covered in this blog post./

    mobile signal booster

  893. Avatar
    Dressing Gowns about 1 year later:

    I can observe the reality. This is very nice one and gives useful information. Thanks for this nice blog

  894. Avatar
     Assignment Help about 1 year later:

    Thanks for sharing the information. I found the information very helpful. That’s a awesome article you posted. I will come back to read some more.

  895. Avatar
    Massagistas about 1 year later:

    freedom to focus on your core business by allowing you to outsource your whole recruitment function, reducing your overall costs and the time.

  896. Avatar
    Fair Oaks Ranch Homes about 1 year later:

    The online internet provides you with a chance to get in touch with the newest happenings and cyberspace is the best source for it.

  897. Avatar
    Vinyl Flooring about 1 year later:

    InterestingI layout on your blog. I really enjoyed reading it and also I will be back to read more in the future.

  898. Avatar
    Brain vWorker about 1 year later:

    h care because the free market worked for them when they were healthy but often did not work at all when they needed care Halloween Town

  899. Avatar
    alwazer about 1 year later:

    I can observe the reality. This is very nice one and gives useful information. Thanks for this nice blog

  900. Avatar
    Brain vWorker about 1 year later:

    Thanks for sharing the information.ink and toner cartridges I found the information very helpful. That’s a awesome article you posted. I will come back to read some more.

  901. Avatar
    Leather Briefcases about 1 year later:

    I did not understand why would you be suspicious if you didn’t see some duct tape ?

  902. Avatar
    San Antonio Luxury Homes about 1 year later:

    truly nice and well written article. The ideas are strongly pointed out and clearly emphasized. Thanks for sharing your thoughts and ideas on this one.. San Antonio Luxury Homes

  903. Avatar
    Spring Branch Real Estate about 1 year later:

    I agree with you. You have given to us with such an large collection of information. Great work you have done by sharing them to all Spring Branch Real Estate

  904. Avatar
    Crescent Processing Company Complaints about 1 year later:

    I agree with you. You have given to us with such an large collection of informationCrescent Processing Company Complaints

  905. Avatar
    San Antonio Short Sales about 1 year later:

    Thanks for information, I liked a lot reading this article and comments.

  906. Avatar
    Spring Branch Homes about 1 year later:

    Your work is very good and I appreciate you and hopping for some more informative posts. Thank you for sharing great information to us.

  907. Avatar
    bangkok real estate agent about 1 year later:

    I would proceed no more; and I would pledge, by a twice diligence, to retrieve the time that I had lost.

  908. Avatar
    bangkok condo for rent about 1 year later:

    I would proceed no more; and I would pledge, by a twice diligence, to retrieve the time that I had lost.

  909. Avatar
    Mix Twist about 1 year later:

    This is great to use less duct tape but if using too much it too bad thanks for sharing the information

  910. Avatar
    lbps loan modification about 1 year later:

    Hm, very useful information

  911. Avatar
    spaarkaarten about 1 year later:

    I think some people are actually looking forward to the release of HTML5, it has been a while since new standards have been set into place.

  912. Avatar
    Puerto Vallarta Condos for sale about 1 year later:

    Your work is very good and I appreciate you and hopping for some more informative posts. Thank you for sharing great information to us.

  913. Avatar
    sfe6fer8a about 1 year later:

    I think some people are actually looking forward to the release of HTML5, it has been a while since new standards have been set into place. Contour Abs Belt

  914. Avatar
    sfe6fer8a about 1 year later:

    Kiss all those “resources” goodbye when Obamacare kicks in completely. You know these kids and old people are a drain on the rest of us and are expendable as patong phuket bar they don’t “contribute” enough to society. The reality of this bill has yet to be truly thrown in your face, but it will be.

  915. Avatar
    http://www.goatraveltips.com/ about 1 year later:

    The thinking behind the writing/article is appreciable, good work! Moreover I want to share if you want to get some great information regarding Goa travelling, you can get it here

    http://www.goatraveltips.com/

    http://www.goatraveltips.com"> Goa Travel Tips

  916. Avatar
    gamesliga about 1 year later:

    nd the writing/article is appreciable, good work! Moreover I want to share if you want to get some great information regarding

  917. Avatar
    Poker about 1 year later:

    Every new visit i have always a new stuff of information in your blog. Really your blog, is marvelous. Thanks for stuff.

  918. Avatar
    Gifts For Women about 1 year later:

    great!! i have read many articles about this topic and every time i learn something new i don’t think it will ever stop always new info , Thanks for all of your hard work!

  919. Avatar
    San Antonio Homes about 1 year later:

    I just hope that you will keep posting those useful posts because there are no other place online like your blog. Thanks!Bandera Real Estate San Antonio Homes

  920. Avatar
    San Antonio Homes about 1 year later:

    lph I manage to include your blog among my reads every day because you have interesting entries that I look forward to. Here’s hoping there’s a lot more great material coming!Bandera Real Estate San Antonio Homes

  921. Avatar
    Watch The Darkest Hour Online Free about 1 year later:

    Watch The Darkest Hour Online Free

    Now we know who the ssebnile one is here. Great post! I simply wanted to thank you a lot more for your amazing website you have developed here. It can be full of useful tips for those who are actually interested in this specific subject, primarily this very post. Your all so sweet in addition to thoughtful of others and reading the blog posts is a great delight in my opinion. And thats a generous present! Dan and I usually have enjoyment making use of your recommendations in what we need to do in the near future. Our checklist is a distance long and tips will certainly be put to excellent use.

  922. Avatar
    phone spyware about 1 year later:

    this is a nice complements of this blogs i learn something new i don’t think it will ever stop always new info some great information regarding

  923. Avatar
    gain height about 1 year later:

    Now we know who the ssebnile one is here. Great post! I simply wanted to thank you a lot more for your amazing website you have developed here. It can be full of useful tips for those who are actually interested in this specific subject, primarily this very post. Your all so sweet in addition to thoughtful of others and reading the blog posts is a great delight in my opinion. And thats a generous present! Dan and I usually have enjoyment making use of your recommendations in what we need to do in the near future. Our checklist is a distance long and tips will certainly be put to excellent use. this is a nice complements of this blogs i learn something new i don’t think it will ever stop always new info some great information regarding

  924. Avatar
    buy condo in bangkok about 1 year later:

    This is a really good read for me. Must agree that you are one of the coolest blogger I ever saw.

  925. Avatar
    condo sukhumvit about 1 year later:

    The plan does not detail the tunnel but only offers it as one option to alleviate Rehavia’s traffic troubles.

  926. Avatar
    bangkok apartments about 1 year later:

    I thought I would leave my initial comment. Keep writing, cause your posts are impressive!

  927. Avatar
    ?????????? ????????? about 1 year later:

    Pretty useful articles for newbies like us

  928. Avatar
    cell phone tapping about 1 year later:

    This is a really good read for me. Must agree that you are one of the coolest blogger I ever saw.

  929. Avatar
    Calgary Hotels about 1 year later:

    Can design & install a nice background for our You Tube Video on You Tube

  930. Avatar
    New York Mover about 1 year later:

    it’s very hard to installed for me thanks for the articles very useful just book mark this.

  931. Avatar
    Boliger i Thailand about 1 year later:

    I have to say i am very impressed with the way you efficiently website and your posts are so informative. You have really have managed to catch the attention of many it seems, keep it up!

  932. Avatar
    locthien over 2 years later:

    “The initial indications are that the surgery has been successful and Jack will now undergo a prolonged period of rehabilitation.?baccarat

  933. Avatar
    how to taller over 2 years later:

    I have to say i am very impressed with the way you efficiently website and your posts are so informative. You have really have managed to catch the attention of many it seems, keep it up!

  934. Avatar
    Cambridge Life Solutions over 2 years later:

    I like your blog, It is very good?I am very happy to leave comment here for you! I hope you come to my site to see! Communicate with each other

  935. Avatar
    satellite receiver over 2 years later:

    Your blog is very good, I leave comment here first time.

  936. Avatar
    Oil Paintings Reproductions over 2 years later:

    Saying thanks will not just be sufficient, for the tremendous lucidity in your writing. I will immediately grab your rss feed to stay privy of any updates

  937. Avatar
    how do you get tall over 2 years later:

    Saying thanks will not just be sufficient, for the tremendous lucidity in your writing. I will immediately grab your rss feed to stay privy of any updates

  938. Avatar
    trace phone location over 2 years later:

    but why is that ?

  939. Avatar
    Mesothelioma over 2 years later:

    Same can be said about unit tests: you can produce quality software without any tests. Companies do it every day. Programmers do it every day. The developers are scared to touch code in case it breaks existing code. And they are right, because they have no way of knowing if they have broken anything.

  940. Avatar
    casio over 2 years later:

    its nice great site have added in my list

  941. Avatar
    top 20 songs right now over 2 years later:

    A very informative article and lots of really honest and forthright comments made! This certainly got me thinking about this issue thanks all.

  942. Avatar
    donna cerca uomo bergamo over 2 years later:

    It is good to see some detailed information on this topic which is very rarely discussed on the internet!

  943. Avatar
    Office Assistant Job Description over 2 years later:

    I am very much impression in this website and nice technology is visible in this blog. I had really like it very much for using the great info in this blog. Thanks a lot for using the great info

  944. Avatar
    System Administrator Job Description over 2 years later:

    This is very great for providing this website and sharing the info to those guys. The guys are very sportive answers to those guys. I am very much thanking to these guys for providing the nice info.

  945. Avatar
    Sales Director Job Description over 2 years later:

    This is amazing info in this website and the nice info in this blog. I am very much satisfied by the info in this blog. Thanks a lot for providing the nice impression in this blog.

  946. Avatar
    Human Resource Job Description over 2 years later:

    I had really like this info in this website. This is very nice info by providing this website and great info in this blog. Thanks a lot by providing this website and using the great services.

  947. Avatar
    Gifts For Kids over 2 years later:

    It really is very sweet and full of a great time for me personally and my office peers to search your blog at the very least 3 times weekly to see the latest guidance you have got. Not to mention, we are at all times satisfied concerning the mind-blowing inspiring ideas served by you.

    Electronic Toys

  948. Avatar
    Apartment Budapest over 2 years later:

    Very useful article! Thank you!

  949. Avatar
    free standing towel rack over 2 years later:

    Such a useful and helpful read, thanks again!

  950. Avatar
    cloud anbieter over 2 years later:

    I am very much impression in this website and nice technology is visible in this blog. I had really like it very much for using the great info in this blog. Thanks a lot for using the great info

  951. Avatar
    how to become over 2 years later:

    I am How To Become God really providing the superb info is visible How To Become A Therapist in this blog and using How To Become A Pilot In The Air Force the nice How To Become A Body Piercer technology in this blog

  952. Avatar
    how to become over 2 years later:

    This is How To Become A Better Person really great How To Become A Professional Gamer services How To Become A Teacher In Florida in this How To Become A Pro Wrestler blog that How To Become CEO to sharing the great technology in this blog and How To Become Drug Dealer using the nice services in this blog

  953. Avatar
    hub over 2 years later:

    I had How To Become A Plastic Surgeon really impressed How To Become A Witch With Powers with the great How To Become Professional Wrestler info is visible in How To Become A Fashion Model this blog and using the nice services in this blog. Thanks a lot for providing the nice info is visible in this How To Become A Fitness Instructor blog

  954. Avatar
    disability lawyer over 2 years later:

    wow this is good i really like it keep up

  955. Avatar
    disability lawyer over 2 years later:

    Such a useful and helpful read, thanks again!

  956. Avatar
    p90x workout over 2 years later:

    Nice short and also this short article aided me alot in my college assignement. Say thank you you as your information.

  957. Avatar
    Louboutins over 2 years later:

    asdas d+f9a8s+9d89d

  958. Avatar
    moncler over 2 years later:

    asdfsd f9+8gsd895d5d5d5

  959. Avatar
    Christian over 2 years later:

    asas f7d/889ssss

  960. Avatar
    individual health insurance illinois over 2 years later:

    I had really like this info in this website. This is very nice info by providing this website and great info in this blog.

  961. Avatar
    casa vendita over 2 years later:

    I would like to thank you for the efforts you have made while writing this post. I am hoping for the best work of the same from you in future!

  962. Avatar
    asigurari de viata over 2 years later:

    I think duct tape programmers can achieve success quicker than normal programmers. They just make and ship their products really fast. Of course some of them might have bugs which require fixing, but the volume of finished projects vastly surpasses the one of traditional programmers.

  963. Avatar
    disability attorney over 2 years later:

    good i could not ask for more detail for this blog.cause its actually awesome nice work.

  964. Avatar
    Airport Transfer Sydney over 2 years later:

    Hi Uncle Bob. I’ve read the article and yeah, programmer should be meticulous with their work, be innovative but there are things in programming that you still have to stick with basics.

  965. Avatar
    Injury Lawyer Boston over 2 years later:

    Nice and informative article! I also love the simplicity of web design. It is indeed a Worth reading blog! Thanks to the author.

    Injury Lawyer Boston

  966. Avatar
    yaz class action over 2 years later:

    I appreciate your hard work and diligence. You have some very interesting ideas, and this is the format to share them

  967. Avatar
    yaz class action over 2 years later:

    I can tell that you are passionate about the subject matter. It comes through in your writer.

  968. Avatar
    viagra over 2 years later:

    I am very much impression in this website and nice technology is visible in this blog. I had really like it very much for using the great info in this blog. Thanks a lot for using the great info

  969. Avatar
    Igrice Games over 2 years later:

    I consider myself as a duct tape programmer. But I also love my code to be elegant and clean. The missing factor is time. I usually get things up and running and afterwards, I like to do some backtracking and refactor my code. In that way I can assure the managers that my product will ship at a specific time, but not how pretty the code is going to be. For me it is more important to finish projects before deadline than code-elegancy.

  970. Avatar
    garages over 2 years later:

    Thank you for this great information, you write very well which i like very much. I am really impressed by your post

  971. Avatar
    Bastrop Condos over 2 years later:

    I was surprised, also like. And the website, make the person feels very comfortable, you pay a lot of time on this web site is too great. Continue refueling. Bastrop Condos Mueller Development Homes

  972. Avatar
    tiny prints over 2 years later:

    The duct tape programmer haha good story here mate thanks for it

  973. Avatar
    Franchise. over 2 years later:

    Is it really necessary to have god gifted talent to be a good programmer or not ? Franchises

  974. Avatar
    retail management consultants over 2 years later:

    Your blog is very interesting and I really like it. Thanks for your original writing!

  975. Avatar
    Business Analyst over 2 years later:

    Useful information like this one must be kept and maintained so I will put this one on my bookmark lis

  976. Avatar
    birth defects over 2 years later:

    Your take on the topic is certainly interesting and well done.

  977. Avatar
    fake jewelry over 2 years later:

    This summer, the leading global supplier of travel plan Samsonite special honour black mark out Vintage series, intention to travelers like through time and space and to return to the elegant romance of the 20 th century 10 s of three or four.

  978. Avatar
    fiance visa over 2 years later:

    Cool facilities like this will enhance better participation rate. I hope so. Furthermore, good marketing will also help.

    fiance visa

  979. Avatar
    zimmer knee lawsuit over 2 years later:

    Thank you for your opinions, and I will do something myself . I think this is the best suggestion t qualizer shirt . I totally agree with your opinion aboutt . Great point! We all benefit from this excellent article

  980. Avatar
    Dubai SEO over 2 years later:

    Drivefly provides a cost effective and hassle free Meet & Greet Airport Parking service! Drivefly meet and greet parking at heathrow is available 24 hours a day, 7 days a week, specializing in services for Terminals 1 to 5. School of Business

  981. Avatar
    ysbearing/yisong@1stbearing.com over 2 years later:

    Slewing bearing called slewing ring bearings, is a comprehensive load to bear a large bearing, can bear large axial, radial load and overturning moment. http://www.1stbearing.com

  982. Avatar
    package Thailand over 2 years later:

    ou’re so cool! I don’t think Ive read anything like this before. So good to find somebody with some original thoughts on this subject.

  983. Avatar
    brussels apart hotel over 2 years later:

    Thanks for informative and helpful post, its true in your blog everything is great. If you post informative comments on blogs there is always the chance that actual humans will click through

  984. Avatar
    Yaz lawyer over 2 years later:

    Nice post! I’ve been looking for a vps and I’m going to take a look at linode. Yaz lawyer

  985. Avatar
    Yaz lawyer over 2 years later:

    Your post is really heart touching,Your choice is good.Your concepts were easy to understand that I wondered why I never looked at it before. Glad to know that there’s an individual out there that definitely.Thanks for sharing your information with us. Yaz lawyer

  986. Avatar
    Actos Lawyer over 2 years later:

    I agree with what you’ve got written and appear ahead to far more of this kind of updates.

  987. Avatar
    Actos Lawyer over 2 years later:

    I will certainly staying tuned for your forthcoming updates. Stay cool! :-)

  988. Avatar
    CASINO FAIR over 2 years later:

    Wow, this is really superb info is visible in this blog that to using the great services in this blog. Thanks a lot for visiting the amazing info that to using the great approach in this blog.

  989. Avatar
    ?????????? ????????? over 2 years later:

    hanks for informative and helpful post, its true in your blog everything is great. If you post informative comments on blogs there is always the chance that actual humans will click through

  990. Avatar
    Enfield Homes over 2 years later:

    Great! I really enjoyed what you had to say. Keep going because you definitely bring a new voice to this subject. Not many people would say what you’ve said and still make it interesting. Well, at least I’m interested. Enfield Homes South Austin Waterfront Homes

  991. Avatar
    cialis over 2 years later:

    I certainly enjoyed the way you explore your experience and knowledge of the subject! Keep up on it. Thanks for sharing the info

  992. Avatar
    cialis over 2 years later:

    Thanks for sharing..!! I love your post .. I am looking more post like this one on this blog .. this post proves really helpful for me ..

  993. Avatar
    cialis over 2 years later:

    Many thanks for making the sincere effort to explain this. I feel fairly strong about it and would like to read more. If it’s OK, as you find out more in depth knowledge, would you mind writing more posts similar to this one with more information

  994. Avatar
    Jesus Raminez over 2 years later:

    while a newbie programmer can be excused for just “gettin er done” (translation:using StackOverlow and/or Google to find the answer), a senior programmer ought to know more than just hacks. Hacks are why I find 16 nested tables used for layout.

    A senior programmer ought to know of the following: GoF, Posa, Fowler, Beck, Liskov, Meyer, Crockford, Booch, TDD, DDD, IEEE, ACM, CI, and REST.Spa sensations memory foam mattress

  995. Avatar
    mesothelioma law firm over 2 years later:

    this blog explaine something good and the good is about your topic..thanks its a good pleasure for me to write comments and from now on im your fan,one big fan thanks again for posting keep it up…

  996. Avatar
    Visit Berlin City over 2 years later:

    I had really, really like it very much for using the great technology is visible in this blog. I had really like it very much for using the nice info in this blog. Thanks a lot for using the nice info in this blog.

  997. Avatar
    Split Testing over 2 years later:

    Split Testing

    Hi Admin,I know this is really boring and you are skipping to the next comment, but I just wanted to throw you a big thanks you cleared up some things for me!

  998. Avatar
    zhonghanubo over 2 years later:

    With 50 DuoNian history of the French “old” Moncler, http://www.monclerstyle2011.com absolutely is manufacturing and design down jacket of experts, had become France and Italy were HuaXueDui country of necessary costume. Step into the 21 century, Moncler not only to reignite hot, also successfully down by sport jump into fashion, all by brand in for breakthrough revolution,== http://www.monclerstyle2011.com == Haute Couture fashion series launched down, bold innovation design, completely beyond the previous established sports image; Then trigger DuoGe fashion brand with the palace down to partner with cross, successful model a MONCLER today bright, sexy inviting, independent and subtle rebel brand style.

  999. Avatar
    fake jewelry over 2 years later:

    Before next year’s designers have spread H&M co-branded series is going to to the Italian national treasure of the SONY brand meters (Missoni) pull to the partnership, but how do we may have to wait and?

  1000. Avatar
    tegaderm over 2 years later:

    Your site gives me much interesting stuff here, I really enjoyed. I will be back for more new updates here.

  1001. Avatar
    wellington property for sale   over 2 years later:

    We are lucky enough to have access to all the information on the web. We need not feel worried for true information now because we easily get whatever we need to know about in such rich posts. Thanks somerset west properties

  1002. Avatar
    home retention services over 2 years later:

    I really love your writing, unlike most blogs I actually learn things, find the content useful and it’s well written.

    home retention services

  1003. Avatar
    home retention services over 2 years later:

    Great stuff – I’ve been looking for information like this now for a minute so this has come in really helpful – Thanks!

    home retention services

  1004. Avatar
    MP4 speler over 2 years later:

    Well said ! i must say that it is very informative article. This is another really very amazing and interesting post. You have provided the post that is directly related to our interest. Thanks for this post.MP4 speler

  1005. Avatar
    mesothelioma claim over 2 years later:

    The information and the detail were just perfect. I think that your perspective is deep, its just well thought out and really fantastic to see someone who knows how to put these thoughts down so well. Great job on this.

    mesothelioma claim

  1006. Avatar
    fiance visa over 2 years later:

    Hi guys, it’s nice to be part of this blog; well I hope we can learn new things here. Anyway, I like the idea of letting us post our thoughts here.

  1007. Avatar
    fiance visa over 2 years later:

    There’s no word to describe such a great masterpiece. You made such an interesting piece to read, giving every subject an enlightenment for us to gain knowledge and information without any arguments to deal with.

  1008. Avatar
    moncelr over 2 years later:

    I like the idea of letting us post our thoughts here.

  1009. Avatar
    doudoune moncelr over 2 years later:

    who knows how to put these thoughts down so well. Great job on this.

  1010. Avatar
    Samsung Un55D8000 over 2 years later:

    Awesome article nice work!

  1011. Avatar
    L Tod Schlosser over 2 years later:

    I have read a few of the articles on your website now, and I really like this blogging. I added it to my favorites blog site list and will be checking back soon. Please check out my site as well and let me know what you think.

  1012. Avatar
    L Tod Schlosser over 2 years later:

    Thank you so much for sharing your valuable information.

  1013. Avatar
    copper price today over 2 years later:

    I will instantly grab your rss feed to stay privy of any updates.

  1014. Avatar
    copper price today over 2 years later:

    Solid work and much success in your business enterprize! .

  1015. Avatar
    L Tod Schlosser over 2 years later:

    I like the valuable knowledge you be offering for your articles. I definitely love studying all the things that’s written on your blog.

  1016. Avatar
    ?????? ????? over 2 years later:

    ???[/url][/b]???????????????????[b][url=http://www.monclerdown-japan.com/??????-c-17.html]?? ??[/b]????????????????????????

  1017. Avatar
    seo training indore over 2 years later:

    Next week her concert will be held on my hometown. I will watch it with all my friends. We’ve got our ticket

  1018. Avatar
    filipina women over 2 years later:

    I am also impresse about this article. Very Useful information shared..

  1019. Avatar
    filipina women over 2 years later:

    so We are very happy to check out this article.Thank you for giving us vital information.

  1020. Avatar
    Admirals Cove over 2 years later:

    Organization should be included in this. Always commenting out code is a wise move. I can’t tell you how many times I have gone back to my code and wondered…what the heck is this?

  1021. Avatar
    FitFlops over 2 years later:

    Programming deserves to be smart, and use common sense.

  1022. Avatar
    Dr.Dre Casque over 2 years later:

    They actual beats through Beats de Dr.Dre Solo HD Graphiteprovide a classy and cozy pattern also as extraordinarily crispy sound reactionbeats by dre Solo Noir. beats by dre Solo pourpretop of the range related to audio is balanced, in conjunction with snug mids and conjointly walloping striped bassbeats by dre Studio Pourpre. Beats By Dre Studio PinkProvided completely are a nice travel case also as a brand new music-telephone-compatible cableBeats By Dre Studio Michael Jackson. the actual Beast Conquer headphones couldn’t be taken devoid of battery powerBeats By Dre Studio Yellow. Beats By Dre Studio All RedPolished African yank style and elegance is quite smudge-prone,beats by dre Pro Blanco and a few songs sound unpleasant. Right dr dre headphones rattles whereas you go. beats by dre Studio MoradosYou’re initial and trendy Huge Surpasses by means of Medical skilled. Dre earphones turn out stable sound, helpful add-ons, and conjointly a look that is not at all imitator.beats by dre LeBron James pro mate relating to fashion-frontward folks that have make the most acquire in order that you’ll spare,beats by dre Studio Blanco they’re fantastic alternative.

  1023. Avatar
    Dr.Dre Casque over 2 years later:

    They actual beats through Beats de Dr.Dre Solo HD Graphiteprovide a classy and cozy pattern also as extraordinarily crispy sound reactionbeats by dre Solo Noir. beats by dre Solo pourpretop of the range related to audio is balanced, in conjunction with snug mids and conjointly walloping striped bassbeats by dre Studio Pourpre. Beats By Dre Studio PinkProvided completely are a nice travel case also as a brand new music-telephone-compatible cableBeats By Dre Studio Michael Jackson. the actual Beast Conquer headphones couldn’t be taken devoid of battery powerBeats By Dre Studio Yellow. Beats By Dre Studio All RedPolished African yank style and elegance is quite smudge-prone,beats by dre Pro Blanco and a few songs sound unpleasant. Right dr dre headphones rattles whereas you go. beats by dre Studio MoradosYou’re initial and trendy Huge Surpasses by means of Medical skilled. Dre earphones turn out stable sound, helpful add-ons, and conjointly a look that is not at all imitator.beats by dre LeBron James pro mate relating to fashion-frontward folks that have make the most acquire in order that you’ll spare,beats by dre Studio Blanco they’re fantastic alternative.

  1024. Avatar
    scrubs over 2 years later:

    Anyway I desired to say that great to understand that someone else also mentioned this as I had trouble finding precisely the same info elsewhere.

  1025. Avatar
    ionut over 2 years later:

    COOOOOOOOOL

  1026. Avatar
    your bookmaker over 2 years later:

    not cool!

  1027. Avatar
    cigarettes newports over 2 years later:

    Buy newport cigarettes with wholesale price. As low as cheaper.

  1028. Avatar
    Verticrete over 2 years later:

    This information is very interesting, I really enjoyed, I would like get more information about this, because is very beautiful, thanks for sharing

  1029. Avatar
    handmade rugs los angeles over 2 years later:

    Thank you for sharing the article . It let me know something I didn’t know .I hope everyone here can find his or her dream ,then make it come true..

  1030. Avatar
    No insurance MRI over 2 years later:

    There is obviously a great deal to be aware of this. There’s no doubt that you’ve made good quality points in Features also.

  1031. Avatar
    Actos Cancer over 2 years later:

    thanks for your post, I really enjoy your blog. Long time lurker, first time commenter, you know the drill. I tried to share this one time before, I don’t think it posted correctly…hopefully it will this time!

  1032. Avatar
    SEO Specialist Philippines over 2 years later:

    Hi author, Very enlightening and beneficial to someone whose been out of the circuit for a long time. You have some bugs in html or css code in the footer.

  1033. Avatar
    Yaz lawyer over 2 years later:

    This kind of publish may seem to redeem considerable readers. Make a decision publicize it? Which provides a very good distinctive hurt referring to ideas. Man developing items specific or simply massive to make home elevators is essential event.

  1034. Avatar
    botox lehigh valley over 2 years later:

    It really is very sweet and full of a great time for me personally and my office peers to search your blog at the very least 3 times weekly to see the latest guidance you have got. Not to mention, we are at all times satisfied concerning the mind-blowing inspiring ideas served by you.

  1035. Avatar
    <a href="http://www.itjobsdelhi.net">IT jobs</a> over 2 years later:

    Nicccccccceeeeeeeeeee!!!!!!!!!!!!!!!!!!!!!!!!!!!

  1036. Avatar
    it jobs over 2 years later:

    This is nice for me.

  1037. Avatar
    Fresher over 2 years later:

    Thanks for sharing that job Portal site it’s really useful and effective.

  1038. Avatar
    Fresher over 2 years later:

    thanks for sharing that kind of site which is provide alltype of jobs in one place and another information .

  1039. Avatar
    ????? ???? over 2 years later:

    This is really useful and interesting information for me. If you all want to know more like this information about Obiee Online Training you can join with us. OBIEE is one of the most emerging reporting tool ever since Oracle has taken over

  1040. Avatar
    sex toys over 2 years later:

    Super Saiyan Backlinks specializes in high-quality backlinks, forcing the competition to surrender their top positions in search engines,

  1041. Avatar
    firmenname finden over 2 years later:

    I like this site.I am interest inprogramming.Its very informative site. firmenname finden

  1042. Avatar
    mercy medical center over 2 years later:

    Impressive, I perfectly agree with you! I will surely bookmark this for future reference. I’m glad that you shared this useful information to us. Beautifully done!

  1043. Avatar
    <a href="http://blackjackhot.com/">blackjack hot</a> over 2 years later:

    Thank you very much for using the nice technology that to sharing the great approach is visible in this blog that to the way of presentation is really cool

  1044. Avatar
    fort worth bankruptcy over 2 years later:

    Hi all! I seriously enjoy reading your website! Should you keep making great posts I will return every day to keep reading!

  1045. Avatar
    dharmendra.yadav105@gmail.com over 2 years later:

    I seriously enjoy reading your website! Should you keep making great posts. banks jobs

  1046. Avatar
    cialis over 2 years later:

    What a great thought. This post is really nice. I always love to make addition to my knowledge and this one really fulfils my need.

  1047. Avatar
    IT Support Markham over 2 years later:

    I will definitely visit this site again because I learned a lot and got very helpful information from your blog.

  1048. Avatar
    triumph motorcycles over 2 years later:

    I like your website. You then have a wide range of great material that can be helpful to so many readers.

  1049. Avatar
    http://www.soulcachaca.com/ over 2 years later:

    Hi, Brilliant, just what I needed to know, thank you!

    Cachaca

  1050. Avatar
    web design dallas over 2 years later:

    Don’t delay a solution to a customer unless it is necessary. Don’t put processes in place that delay shipment unless the process has value.

  1051. Avatar
    e?arp over 2 years later:

    Some people really make difference. I totally agree with the point of the writer. We should all promote this blog. I never though that things can be understood in this way also.

  1052. Avatar
    berghaus jackets over 2 years later:

    I am impressed by the above info I found here. This is really a great news. I myself love such kind of news. Happy winter season to all.

  1053. Avatar
    ustensiles de cuisine over 2 years later:

    Don’t delay a solution to a customer unless it is necessary. Don’t put processes in place that delay shipment unless the process has value.

  1054. Avatar
    fotocamera over 2 years later:

    The site was informative and contain useful content for the visitors. It got good posts as well. I will bookmark this site for future viewing. Thanks for sharing.

  1055. Avatar
    Best IRA accounts over 2 years later:

    So it’s that simple?! I supposed it to be more complicated than it seems to be. What ever,thanks for such a nice display.

  1056. Avatar
    l tod schlosser over 2 years later:

    Thanks this post really opened my eyes. it is not only eye opening rather very beneficial for the people those who want to do something good in his life .

  1057. Avatar
    best driving schools over 2 years later:

    This is providing the pretty posts are display in this website. I am really very happy for visiting the nice info in this website. Thanks a lot for providing the nice info in this blog.best driving schools, the culinary arts schools, a registered nurse salary

  1058. Avatar
    trust deeds over 2 years later:

    Although this blog is two years old, the content is still very relevant today. Thanks for sharing

  1059. Avatar
    life insurance advice over 2 years later:

    Nice article. I agree with you on this subject.

  1060. Avatar
    debt arrangement scheme over 2 years later:

    In terms of reality, this article is amazing and all is very much all good and I am in the mood to move away from work and procastinate further by reading more of this blog.

  1061. Avatar
    IVA advice over 2 years later:

    Jolly good blog old boy.

  1062. Avatar
    Split Rail Fence over 2 years later:

    Tomas Edison succeeded, because he had experimented thousands of times to find the best material for lights.

  1063. Avatar
    parking stops over 2 years later:

    mulberry outlet The morning is bitter, looks like it’s no end going without running shoes. I often located on your roof, watched the sunlight drop, I skip direct sunlight on the north, the spot that the sunlight grows out of the wheat fields, after which it drill back. He has acquired a major wheat color.

  1064. Avatar
    heating los angeles over 2 years later:

    Pretty section! It feels great reading such post like this, very informative and interesting. I’ve learned. Here’s another source that worth a look about this also. Thanks for sharing this info!..

  1065. Avatar
    heating los angeles over 2 years later:

    Pretty section! It feels great reading such post like this, very informative and interesting. I’ve learned. Here’s another source that worth a look about this also. Thanks for sharing this info!..

  1066. Avatar
    http://bedstyler.com over 2 years later:

    I am new comer in this blog.I like this blog very much.thanks duvet covers

  1067. Avatar
    custom reusable bags over 2 years later:

    Great article …Thanks in your great information, the contents are quiet interesting. I will be watching for the next post.

  1068. Avatar
    spanish wines over 2 years later:

    Thanks for the post. Really good info. spanish wines

  1069. Avatar
    teatros madrid over 2 years later:

    Thanks for sharing this information. Very interesting post. Please keep writing.

  1070. Avatar
    ?????? over 2 years later:

    This is one of the best post that I have ever read. You have provided a great piece of information. I will definitely share it with my other friends. Keep up the good work, I would to stay in contact with your posts.info@ralf(??).com

  1071. Avatar
    Bone Graft Lawyers over 2 years later:

    I am not certain if I agree with all of this. That being said, your post is very informative, and lots of people will leave from this article feeling more informed than when they arrived. Overall, you have done a superb job.

  1072. Avatar
    lawn mower over 2 years later:

    This is one great products for and we find tother with popular by women!Women really love with top quality, especially under the financial crisis.

  1073. Avatar
    jacksonville marketing over 2 years later:

    Don’t know what is wrong what is rite but i know that every one has there own point of view and same goes to this one

  1074. Avatar
    mercy medical center over 2 years later:

    To begin with i must appreciation for the truly amazing and informative entry. I have to admit i never learned about this data. I have noticed many new facts in my opinion. Thanks a lot for sharing this useful and attractive information and i are going to be expecting other interesting posts of your stuff in the nearest future.

  1075. Avatar
    mercy medical center over 2 years later:

    The concept of the band goes with the name of the band. I like all the comments about this band.Great job you done.

  1076. Avatar
    Optomas GT750E over 2 years later:

    This is a fantastic web site. Good polished user interface and nice informative articles. I will be coming back in a bit, thanks for the great blog.

  1077. Avatar
    Havehegn over 2 years later:

    Youre truly well-informed. I cant believe how much of this I just wasnt aware of. Thank you for bringing more information to this topic for me. Im truly grateful and really impressed.

  1078. Avatar
    download vector art over 2 years later:

    Some people really make difference. Blog carries great informative material. One should read this one and appreciate. Thanks.

  1079. Avatar
    Toronto IT Support over 2 years later:

    Knowledgeable blogs are always welcome. This blog carries great informative material. I have read this post. Now my knowledge has been increase about above topic. Thanks to blog owner.

  1080. Avatar
    karmaloop coupon codes over 2 years later:

    Great presentation about the .advanced coldfusion orm I find this very informative and very useful. Thank you for sharing this with us. You did an awesome job.

  1081. Avatar
    ?????? over 2 years later:

    This is one of the best post that I have ever read. You have provided a great piece of information. I will definitely share it with my other friends. Keep up the good work, I would to stay in contact with your posts.

  1082. Avatar
    local mri over 2 years later:

    second among U.S.-born players.Toni Lydman also are signed through the next three

  1083. Avatar
    Dubai Offices over 2 years later:

    Bookmarked!! Hope i will visit this blog again.

    Dubai Offices

  1084. Avatar
    free shipping nike air max shoes over 2 years later:

    When your PC was good >>>go >>> back there: Some Time we are Remove any software, we are face to a big problem because that soft Remove some Windows file, Then we can’t work properly, This time we need PC Format or Back to When our PC is good condition. Go to C:\WINDOWS\System32\Restore open this and find rstrui.exe & Double Click you see a new Windows you Select the “ Restore my Computer to an earlier time ” and NEXT you see a Calendar you thing witch the day your pc was good conditions Select that day and NEXT see new Windows again NEXT Your PC Will restart, Now you see your PC is OK. If not go to 1 or 2 days back.

  1085. Avatar
    gold price over 2 years later:

    Thanks for both using do follow links and for posting up your rules. I also allow do follow links for many of my blog sites, and really cant get my head around the opposition to them that many blog owners.

  1086. Avatar
    Bolsas reutilizables personalizadas over 2 years later:

    It is our main duty to find out that what we want to do in the future life. It will must be fixed and we should follow the best way.

  1087. Avatar
    SEO over 2 years later:

    This is very great services are visible in this website. This website is providing the great technology and that to using the great services. I am very much appreciating for this website and providing the lot for information.

  1088. Avatar
    deals over 2 years later:

    I got it, thanks for the detailed explanation!! Appreciate it!

  1089. Avatar
    Austin Hydroponics over 2 years later:

    Great interview with Mr. Steve Martin. Well I think you will always thinking when you are doing comedy it’s what’s next, what’s next, what’s next.

  1090. Avatar
    Hydroponics Austin TX over 2 years later:

    Great interview with Mr. Steve Martin. Well I think you will always thinking when you are doing comedy it’s what’s next, what’s next, what’s next.

  1091. Avatar
    north face khumbu over 2 years later:

    This article is impressive,I hope that you will continue doing nice article like this.

  1092. Avatar
    tax preparation los angeles over 2 years later:

    It has plenty of useful information.

  1093. Avatar
    Electric Houston Texas over 2 years later:

    That is very good comment you shared.Thank you so much that for you shared those things with us.Im wishing you to carry on with ur achivments.

  1094. Avatar
    Poker site reviews over 2 years later:

    Nice posts are visible in this blog and the great technology in this blog. I am very much satisfied by the technology in this website. This website is providing the great designs are visible in this blog.

  1095. Avatar
    Poker website reviews over 2 years later:

    I had really like it very much for providing the different info in this blog. I am really thanked to visit the nice info in this blog and using the great service in this blog.

  1096. Avatar
    Online Gambling over 2 years later:

    This is really satisfied by the nice services in this blog that to really providing the wonderful info is visible in this blog. Thanks a lot for sharing the nice technology in this blog that to nice services in this blog.

  1097. Avatar
    Online Gambling over 2 years later:

    This is really satisfied by the nice services in this blog that to really providing the wonderful info is visible in this blog. Thanks a lot for sharing the nice technology in this blog that to nice services in this blog.

  1098. Avatar
    Online Gambling over 2 years later:

    This is really satisfied by the nice services in this blog that to really providing the wonderful info is visible in this blog. Thanks a lot for sharing the nice technology in this blog that to nice services in this blog.

  1099. Avatar
    Online Gambling over 2 years later:

    This is really satisfied by the different technology is visible in this blog that to sharing the nice services in this blog. Thanks a lot for using the great info that to using the wonderful info.

  1100. Avatar
    steelerscheap ugg boots over 2 years later:

    I am absolutely amazed at how terrific the stuff is on this site. I have saved this webpage and I truly intend on visiting the site in the upcoming days. Keep up the excellent work!

  1101. Avatar
    for the bride over 2 years later:

    Budget will never be absent in any wedding plans. However, the most common problem that arises concerning budgeting is the

    fact that people do not stick to it.

  1102. Avatar
    wedding Rings over 2 years later:

    There are affluence of types for the tennis chaplet abstraction by application Cubic Zirconia Jewellery lower in abstracts in accession to circular, alternating ancient gemstones or accepting a aboveboard design set aigrette because the axial akin of the necklace.

  1103. Avatar
    adult toys over 2 years later:

    I am very enjoyed for this blog. Its an informative topic. It help me very much to solve some problems. Its opportunity are so fantastic and working style so speedy. I think it may be help all of you. Thanks a lot for enjoying this beauty blog with me. I am appreciating it very much! Looking forward to another great blog. Good luck to the author! all the best!

  1104. Avatar
    Cachaca over 2 years later:

    Hi, Brilliant, just I have learnt, what I needed to know. thank you for writing such an excellent article.Please keep it up.

    Cachaca

  1105. Avatar
    new to dvd over 2 years later:

    Hi there! This is my 1st comment here so I just wanted to give a quick shout out and say I genuinely enjoy reading through your articles. Can you suggest any other blogs/websites/forums that cover the same subjects? Many thanks!

  1106. Avatar
    bdd over 2 years later:

    BDD > TDD

  1107. Avatar
    Insulation over 2 years later:

    I was having trouble opening up this web page today. I am using firefox and it was doing something weird with the layout. Just thought I would let you know.

  1108. Avatar
    relatiegeschenken over 2 years later:

    There have been a few versions of this concept put through already and the most recent one is still under deliberation.

  1109. Avatar
    ceretta brasiliana over 2 years later:

    This is very great services are visible in this website. This website is providing the great technology and that to using the great services. I am very much appreciating for this website and providing the lot for information.

  1110. Avatar
    PPI Complaints over 2 years later:

    nice details, have not seen an article on the same subject be as informative as yours!

  1111. Avatar
    http://www.c.com/car over 2 years later:

    wow

  1112. Avatar
    Template Design over 2 years later:

    Excellent post. I want to thank you for this informative read. Keep up your great work. Impressive I like it! Attractive collection, Thanks for them with us . Template Design

  1113. Avatar
    web hosting Pakistan over 2 years later:

    Thanks for sharing ideas and thought,I like the right and bright things in your blog and would bookmark this blog for further use. web hosting Pakistan

  1114. Avatar
    carp fishing blog over 2 years later:

    Great post, cant wait for the follow up!

  1115. Avatar
    carp fishing blog over 2 years later:

    Great post, cant wait for the follow up!

  1116. Avatar
    New York traffic ticket over 2 years later:

    I really admired for the nice info is visible in this blog. Thanks a lot for providing the nice info is visible in this blog and using the great technology is visible in this blog.

  1117. Avatar
    ithemes coupon code over 2 years later:

    nice details, have not seen an article on the same subject be as informative as yours!nice details, have not seen an article on the same subject be as informative as yours!

  1118. Avatar
    iolo coupon over 2 years later:

    I like this concept. I visited your blog for the first time and just been your fan. Keep posting as I am gonna come to read it everyday. Thanks for sharing.

  1119. Avatar
    Computerhulp over 2 years later:

    You’ve done a great job, very informative blog this is a definite bookmark thanks.

  1120. Avatar
    gietvloeren prijzen over 2 years later:

    the information which you describe over here is excellent

  1121. Avatar
    qwert over 2 years later:

    “try coming on to a project that has been going for two years that has NO unit tests and lots of complicated, messy logic.”

    If it wasn’t so messy, they wouldn’t be so scared to change anything.

    Unit tests have nothing to do with your problem,

  1122. Avatar
    public service jobs over 2 years later:

    Really like your Blog content the way you put up the things. I want to show my admiration of your writing skill and ability to make audience, browse the whole thing to the end.

  1123. Avatar
    cheap business flights over 2 years later:

    I have been exploring for a bit for any high quality articles or weblog posts in this kind of space .

  1124. Avatar
    ropa interior online over 2 years later:

    I’d have to check with you here. This is not something I usually do! I enjoy reading a post that will make people think. Also, thanks for allowing me to comment

  1125. Avatar
    bruidsfotograaf over 2 years later:

    This was a genuinely quality post. I’d like to write like this too – taking time and real effort to make a fantastic post

  1126. Avatar
    weight loss spray over 2 years later:

    The blog is to good and informative where i like to discuss about this in my blog thanks for sharing.

  1127. Avatar
    prefabrik over 2 years later:

    I follow your blog for a long time I find a very successful issues.

  1128. Avatar
    goedkope matrassen over 2 years later:

    I wanted to thank you for this great blog! I really enjoying every little bit of it and I have you bookmarked to check out new stuff you post

  1129. Avatar
    loopband kopen over 2 years later:

    Thanks for taking the time to discuss this, I feel strongly about it and love learning more on this topic. If possible, as you gain expertise, would you mind updating your blog with more information? It is extremely helpful for me.

  1130. Avatar
    prolaveto over 2 years later:

    Great blog, I follow it for quite some time! thank you!!

  1131. Avatar
    pros4s over 2 years later:

    Thanks for the great article and the fantastic blog!!

  1132. Avatar
    free cell phone spy over 2 years later:

    This article is really the greatest about on this noteworthy subject. I agree with your conclusions and will always look forward to your future posts. Saying thanks will not just be enough, for the superb lucidity in your writing

  1133. Avatar
    weight loss spray over 2 years later:

    Your blog is outstanding! I mean, I have never been so entertained by anything in my life! Thanks for sharing such a nice post.

  1134. Avatar
    Samsung galaxy s3 over 2 years later:

    You’ve done a great job, very informative blog this is a definite bookmark thanks.

  1135. Avatar
    westminster parking fines over 2 years later:

    Well done post, very informative, please keep up this great work

  1136. Avatar
    security officers Brownsville over 2 years later:

    Excellent post, it is true, sometimes you just have to get the job done, get it done right, but don’t mess around. Thanks.

  1137. Avatar
    psb over 2 years later:

    thank you very much thanks admin

  1138. Avatar
    Classified Ads Punjab over 2 years later:

    As common i am seeking some useful details, quickly i found this content and obtain some useful details great work such a great mind to use. Classified Ads Punjab

  1139. Avatar
    Classified Ads Tripura over 2 years later:

    Dude.. I am not much into looking at, but somehow I got to go through many articles articles on your website. Its incredible how useful it is for me to check out you very often. <a href=” http://geboon.com/tripura/”>Classified Ads Tripura

  1140. Avatar
    Appetite Control spray over 2 years later:

    Now that is one big ass burrito!! I though the burritos around LA were big, but this is the real deal. Mmmmmmmm. . .seven pounds of greasy mayhem.

  1141. Avatar
    gietvloeren prijzen over 2 years later:

    Hi I am so glad I discovered your site, I truly found anyone by miscalculation, while My partner and i was seeking on Askjeeve for something else, Nonetheless My business is here right now and would just as to state cheers for a incredible post along with a all around enjoyable blog

  1142. Avatar
    groene thee afvallen over 2 years later:

    Good writing…keep posting dear friend This discussion unexpectedly takes my attention to join inside. Well, after I read all of them, it gives me new idea for my blog. thanks

  1143. Avatar
    Mondolike Seo over 2 years later:

    Well done post, very informative, please keep up this great work

  1144. Avatar
    colin over 2 years later:

    Great blog, just looking around some blogs, seems a pretty nice platform you are using. I’m currently using Wordpress for a few of my sites but looking to change one of them over to a platform similar to yours as a trial run. locksmith washington dc

  1145. Avatar
    Naturalsleep Aid over 2 years later:

    Game theory is gives an outstanding idea that is very helpful for all the people on the web. Thanks for sharing this information and I’ll love to read your next post too.

  1146. Avatar
    Naturalsleep Aid over 2 years later:

    I ain’t a lot into comic but I think that the cover of that comic is quite good. naturalsleep aid

  1147. Avatar
    ejaketkulit.com over 2 years later:

    Great info and straight to the point. I am not sure if this is actually the best place to ask but do you guys have any thoughts on where to get some professional writers? Thank you

  1148. Avatar
    parental alienation syndrome over 2 years later:

    Excellent post and great points on getting things done and out the door.

  1149. Avatar
    gantt chart excel template over 2 years later:

    C++ is so powerful, I’m surprised its not used more

  1150. Avatar
    <a href="http://filthylimper.com/">Poker Podcast</a> over 2 years later:

    Sounds like my experiences from working on websites, deserves a share Poker Podcast .

  1151. Avatar
    "poker podcast":http://filthylimper.com over 2 years later:

    Sounds like my experiences from working on websites, deserves a share Poker Podcast

  1152. Avatar
    http://filthylimper.com over 2 years later:

    Sounds like my experiences from working on websites, deserves a share

  1153. Avatar
    Poker Podcast over 2 years later:

    Sounds like my experiences from working on websites, deserves a share

  1154. Avatar
    Poker Podcast over 2 years later:

    Sounds like my experiences from working on websites, deserves a share

  1155. Avatar
    Poker Podcast over 2 years later:

    Sounds like my experiences from working on websites, deserves a share

  1156. Avatar
    Mother's Day Flowers over 2 years later:

    After reading this article, I am going to recommend others to read it as well, since I know they will enjoy it as much as I did.

  1157. Avatar
    ooglaseren over 2 years later:

    I will not write the thing, therefore can only everywhere have a look, discovered that you wrote have been too good, I very unusual like..

  1158. Avatar
    curcumin over 2 years later:

    Curcumin protects DNA damage in a chronically arsenic-exposed population of West Bengal.

  1159. Avatar
    Insurance Company Reviews over 2 years later:

    Thank you for posting this article. It was very informative and I’m bookmarking it for future reference.

    Insurance Company Reviews

  1160. Avatar
    lilliput lcd over 2 years later:

    Sounds like my experiences from working on websites, deserves a share

  1161. Avatar
    http://www.quotesaver.com/ over 2 years later:

    Quite insightful post. Never believed that it was this simple after all. I had spent a great deal of my time looking for someone to explain this topic clearly and you’re the only one that ever did that. Kudos to you! Keep it up

  1162. Avatar
    vijay over 2 years later:

    I truly enjoyed reading your post. I found your site from Bing. Will bookmark to return later. Thanks! car insurance compare rates

  1163. Avatar
    Rückenschmerzen unterer rücken over 2 years later:

    As a well-spent day brings happy sleep, so a life well spent brings happy death. I want to know where to find Rückenschmerzen unterer rücken, do you?

  1164. Avatar
    autolease over 2 years later:

    Betty Millen wedding gown simply leaves the most successful?discount karen millen impact in regards to the nearly all wonderful evening?

  1165. Avatar
    motorcycle fairings over 2 years later:

    Creating blogs might not easy at all. This requires a lot of knowledge and determination in making the blogs fruitful and meaningful. This is also a one concept that might let the readers attract the article and your chosen topic.

  1166. Avatar
    oranje artikelen over 2 years later:

    Time also sometime has list for multiply listing. A lot of big company and famous people are in the list that Times create.

  1167. Avatar
    Elysse over 2 years later:

    I totally agree. Keep giving us more info. It’s truly helpful.. thanks a lot..keep them coming..

  1168. Avatar
    viagra over 2 years later:

    A very interesting site all worthwhile to visit. I’m glad i found this site. I has helped me fascinated me with its content. Keep up the good works guys.

  1169. Avatar
    leaseauto over 2 years later:

    Nice Information ! I personally really appreciate your article. This is a great website. I will make sure that I stop back again !.

  1170. Avatar
    Brett Rodgers over 2 years later:

    This was a great website about carpet cleaning. I really learned a lot. My family and I have just moved into a new apartment and we need some really good carpet cleaning people pronto. I just need to find out where they are.

  1171. Avatar
    michael kors over 2 years later:

    Useful information shared.I am very happy to read this article.thanks for giving us nice info.

  1172. Avatar
    Security Companies St Albans over 2 years later:

    Hello, I truly enjoyed reading your post. I found your site from Bing. Will bookmark to return later. Valuable information and excellent post you got here!

  1173. Avatar
    Turkish Radio and Television Corporation over 2 years later:

    Turkish Radio and Television Corporation (TRT) has selected a promising young Jewish songwriter and singer, Can Bonomo (born 1987), to represent his country at the 57th Eurovision Song Contest 2012. The contest is being held on May 22-26 in Baku, Azerbaijan. Singers from 43 countries are expected to participate in the event.

  1174. Avatar
    chalet over 2 years later:

    nice post i had read your post and bookmarked your post further knowledge.

  1175. Avatar
    stacaravan over 2 years later:

    Great stuff from you man. Ive read your stuff before and you’re just too awesome. I love what you’ve got here love what you’re saying and the way you say it. You make it entertaining and you still manage to keep it smart. I cant wait to read more from you. This is really a great blog.

  1176. Avatar
    chalet over 2 years later:

    I think this is one of the most important information for me. And i’m glad reading your article. But wanna remark on some general things, The site style is wonderful, the articles is really nice : D. Good job, cheers

  1177. Avatar
    http://buyviagraonline11.webstarts.com over 2 years later:

    hgf

  1178. Avatar
    viagra over 2 years later:

    Hello, I truly enjoyed reading your post

  1179. Avatar
    bedrukte tassen over 2 years later:

    It is in point of fact a nice and useful piece of info. I’m happy that you just shared this useful information with us. Please keep us informed like this. Thank you for sharing.

  1180. Avatar
    nitin over 2 years later:

    She is a well blended cocktail of dreamer and realist. Emotan does other genres of music but presently she is launching her recent works in electronic dance with techno flavor. Her music is pure, heartfelt, spiritual, sensual, eccentric and down to earth practical. Emotan is earthy and deep rooted in the African culture. Emotan is a world class brand that is marketable and has a growing fan base and audience that are both local & international. Please like her page www.facebook.com/emotan3 to listen her music or watch her awesome music video on youtube – www.youtube.com/em0tan

  1181. Avatar
    BMW leasen over 2 years later:

    Creating blogs aint easy ll. This requires a lot of knowledge and determination in making the blogs fruitful and meaningful. This is also a one concept that might let the readers read this

  1182. Avatar
    AngeL over 2 years later:

    Thank you for another essential article. Where else could anyone get that kind of information in such a complete way of writing? I have a presentation incoming week, and I am on the lookout for such information.

    I await the arrival of friends behind it in my blog … Water Heater Maintenance Thanks ,..

  1183. Avatar
    administratie over 2 years later:

    I really bookmark it,for further reading,So thanks for sharing the information. Experiment with different values â??â??to see the impact on the performance of page loading.

  1184. Avatar
    Magento Commerce over 2 years later:

    I LOL sooo hard when the little computer programmer nerd was duct taped…they were brawling with the real bikers, he never had a girlfriend and just aquired one, he says to the bikers…, “I have a girlfriend, you can’t punch that out of me b!tches” hahahahhahaha

  1185. Avatar
    lease Amsterdam over 2 years later:

    This has been a outstandig quality article. thank you

  1186. Avatar
    Lease Amsterdam over 2 years later:

    Some surprising insights

  1187. Avatar
    http://www.mudanzasenlevante.com/ over 2 years later:

    Thanks for sharing this great article! That is very interesting Smile I love reading and I am always searching for informative information like this!

  1188. Avatar
    http://www.web-designs-company.com over 2 years later:

    Nice inputs ..really excellent.

  1189. Avatar
    Dejting gratis over 2 years later:

    Thanks for sharing this great article! That is very interesting Smile I love reading and I am always searching for informative information like this!

  1190. Avatar
    nutricion over 2 years later:

    nice blog, just looking around some websites, seems a really nice platform you are using. I’m currently using Wordpress for a few of my sites but looking to change one of them over to a platform similar to yours as a trial run.

  1191. Avatar
    BMW leasen over 2 years later:

    Good article. Would like to hear and read more of about this Duct tape programmer

  1192. Avatar
    MOV Converter over 3 years later:

    A very interesting site all worthwhile to visit. I’m glad i found this site. I has helped me fascinated me with its content. Keep up the good works guys., free download mov converter to convert mov to video and all video to mov format

  1193. Avatar
    Ramen Noodle Recipes over 3 years later:

    that is great articles i happy visit your site you can visit my site Ramen Noodle Recipes Ramen Noodle Recipes to get more info

  1194. Avatar
    vermaseo over 3 years later:

    This is such an interesting article. You must have invested much effort and skill in doing such.web design

  1195. Avatar
    debt advice scotland over 3 years later:

    amazing gotta love the duct, that’s my point of view on this.

  1196. Avatar
    Price over 3 years later:

    A lot of big company and famous people are in the list that Times create.

  1197. Avatar
    Harry peoples over 3 years later:

    Find your very own Jonathan Toews Authentic Jersey, simply click on solitary of the images underneath wherever you will be taken to Shop.NHL.Com wherever you can take the size, color (home, road or third), and even add your own customization to the sweater. Jonathan Toews Jersey

  1198. Avatar
    State Divorce over 3 years later:

    I hope Joel eventually realizes this. Programmers who say they don’t have time to write tests are living in the stone age. They might as well be saying that man wasn’t meant to fly.

  1199. Avatar
    injury claims scotland over 3 years later:

    Duct tape has been known to cause injuries to people. In Scotland, the problem is actually more common in some places.

  1200. Avatar
    customised bags over 3 years later:

    Benefits for education could be unlimited. I’m planning to start a collaborative video project with another school elsewhere in the UK. Pay my airfare and I’ll come and talk to you about it!

  1201. Avatar
    Josh over 3 years later:

    The US didn’t always have a good schooling system and the signs were clear for it. We like to donate at least one custom neon signs to school each year to support the future of kids.

  1202. Avatar
    San Diego Plumber over 3 years later:

    Thanks for putting this together. Very easy to read and understand!

  1203. Avatar
    San Diego Fireplaces over 3 years later:

    Highly enjoyable, thanks for the post!

  1204. Avatar
    language lab over 3 years later:

    Really wonderful! I read various articles from this site. I like your articles and will continue follow you site!!

  1205. Avatar
    Louboutin Outlet US over 3 years later:

    http://www.louboutins-outlets-us.com

  1206. Avatar
    Florist In Bangkok over 3 years later:

    Hi, I maintain a flowers superstore. There are many items flowers. I Sells flowers. You needs flowers please contracts with me. Flowers are Symbol of passion. We are Supplier. Our Company Supply Birthday, Marriage daylight hours & Other Programmer Flowers. Florist In Bangkok

  1207. Avatar
    nazmulhaque175@gmail.com over 3 years later:

    Hi, I bear a flowers supermarket. There are many items flowers. I Sells flowers. You needs flowers please contracts with me. Flowers are Symbol of be attracted to. We are Supplier. Our Company Supply Birthday, Marriage calendar day & Other Programmer Flowers. Florist In Bangkok

  1208. Avatar
    Josh Warren over 3 years later:

    Wonderful thought and a good concept attracts viewer’s attention and provides a good learning experience.Above post have both features which have completely impressed me.Joshua Warren

  1209. Avatar
    Plummer over 3 years later:

    Looks cool, I never knew you could post about it, good to know thanks! You show very latest and important things. This is very nice post! I will bookmark this blog.Let us know about myself.I am a Plummer.I worked at Al’s Plumbing, Locally owned and operated company.

  1210. Avatar
    bluster over 3 years later:

    I hope Joel eventually realizes this. Programmers who say they don’t have time to write tests are living in the stone age. They might as well be saying that man wasn’t meant to fly.

  1211. Avatar
    Magento Customization India over 3 years later:

    Great post. I’m about to take on a similar project for a friend and this will be VERY helpful!

  1212. Avatar
    Customize Joomla Template over 3 years later:

    This is a great blog with excellent posts and links.

  1213. Avatar
    creative recreation shoes over 3 years later:

    Creative Recreation trainers are made in the USA, but essentially the CR design team have combined a shoe with a trainer whilst adding bling. The result is something totally different from anything else on the market today. Creative Recreation sell high-tops as well as Milano low’s. Some key styles include: Testa Reflective, Cesario and Marino. Although our favourites are the Milao Low Black Vintage Khaki footwear collection. Creative Recreation encourage you to be different and endulge in the finer things in life with a colour to suit every mood and outfit. Creative Recreation trainers are a firm favourite with celebs and available to buy from Jada Styles.

  1214. Avatar
    Claim Back PPI over 3 years later:

    awesome post, lots of great tips in here for all levels of skill.

  1215. Avatar
    Sarong over 3 years later:

    she is launching her recent works in electronic dance with techno flavor. Her music is pure, heartfelt, spiritual, sensual, eccentric and down to earth practical. Emotan is earthy and deep rooted in the African culture

  1216. Avatar
    feshion over 3 years later:

    I admire the way you brought out the general essence of your topic. Thanks for this blog.

  1217. Avatar
    www.justbeenpaidscam.net online over 3 years later:

    Wow this article is so true. duct tape is a great metaphor for this situation. Thank you for taking the time and write this for us. Have a great week Mark

  1218. Avatar
    Injection Mold over 3 years later:

    Intertech Machinery Inc. provides the most precise Plastic Injection Mold and Rubber Molds from Taiwan. With applying excellent unscrewing device in molds,

    Intertech is also very professional for making flip top Cap Molds in the world. Mold making is the core business of Intertech (Taiwan). With world level technology, Intertech enjoys a very good reputation for making Injection Mold and Plastic Molds for their worldwide customers.

  1219. Avatar
    Louis Vuitton Prezzi Borse over 3 years later:

    Reality!

  1220. Avatar
    www.justbeenpaidfraud.com over 3 years later:

    It is very hard to program this specific action. I do believe people should consult more because in a later phase they will be sorry about it. Have a great week. Thank you.

  1221. Avatar
    SubmitCore over 3 years later:

    Quality read. I found your blog on google and i have your page bookmarked on my personal read list! Seo I’m a fan of your Website. Keep up the great work

  1222. Avatar
    Moda Feminina over 3 years later:

    You needs flowers please contracts with me. Flowers are Symbol of be attracted to.

  1223. Avatar
    Leasen over 3 years later:

    Typical Blogarticle of objectmentor

  1224. Avatar
    Moving to Washington dc over 3 years later:

    information on the fit is good enough to increase my knowledge. Moving to Washington dc

  1225. Avatar
    www.tacklebox.co.uk over 3 years later:

    tackle box fishing tackle

  1226. Avatar
    assos otelleri over 3 years later:

    this page is insightful and helpful. Lots of people will assert that everything in your site is great.

  1227. Avatar
    emrickenoch@yahoo.com http://www.sixthreezero.com over 3 years later:

    With a bright and energetic color scheme, the Dreamcycle is fun cruiser that really makes a statementCalifornia Bikes.

  1228. Avatar
    emrickenoch@yahoo.com over 3 years later:

    With a bright and energetic color scheme, the Dreamcycle is fun cruiser that really makes a statementCalifornia Bikes.

  1229. Avatar
    Henry Brehmer over 3 years later:

    Duct programmer are the now most valuable and creative. I am really enjoying reading your well written articles. I think you spend numerous effort and time updating your blog. I have bookmarked it and I am taking a look ahead to reading new articles. Please keep up the good articles! formation vente gestion du stress

  1230. Avatar
    plastic pipe over 3 years later:

    Thanks for the sharing of such information. we will pass it on to our readers. This is a great reading. Thanking you plastic pipe

  1231. Avatar
    pradaxa lawsuit over 3 years later:

    Nice to be visiting your blog again, Well this article that i’ve been waited for so long. I need this article to complete my assignment in the college, and it has same topic with your article. Thanks, great share.

  1232. Avatar
    Actos Lawyer over 3 years later:

    Nice information, valuable and excellent design, as share good stuff with good ideas and concepts, lots of great information and inspiration,thanks for all the enthusiasm to offer such helpful information here.

  1233. Avatar
    Buy High PR Link SEO over 3 years later:

    this page is insightful and helpful. Lots of people will assert that everything in your site is great.

  1234. Avatar
    company registration over 3 years later:

    Welcome to today’s discussion – the live Q&A is officially open. We’ve already some interesting comments and questions and we’re looking forward to hearing from the panel this afternoon.

  1235. Avatar
    drug rehab centers over 3 years later:

    Your post is simply spectacular and I can assume you are an expert on this field. Thanks a million and please keep up the fabulous work. Thanks a lot once again.

  1236. Avatar
    drug rehab san diego over 3 years later:

    I appreciate your hard work and diligence. You have some very interesting ideas, and this is the format to share them.

  1237. Avatar
    divorce lawyers orange county over 3 years later:

    I really wanted to love this camera, the feature set appeared to be excellent. The set up was fairly simple to set up a static IP address and I even gave it a higher port number.

  1238. Avatar
    kremil over 3 years later:

    You really knew what you are talking. And I admire your honesty for having consideration on what he has written and follow your heart on what you thing was right to do

  1239. Avatar
    kremil over 3 years later:

    You really knew what you are talking. And I admire your honesty for having consideration on what he has written and follow your heart on what you thing was right to do

  1240. Avatar
    LCI over 3 years later:

    Waw, your site is truely awesome. A lot of useful information and I feel enjoy visit here. Thanks yoo~

    With love,

    LCI.

  1241. Avatar
    plastic injection mold over 3 years later:

    Intertech Machinery Inc.

    With more than 25 years of experience, Intertech provides an extensive integrated operational ability from design to production of molds 100% made in Taiwan. Additional to our own mold making factory, we also cooperate with our team vendors to form a very strong working force in Taiwan.

    Main Products:

    Injection Mold, Silicone Molding, Rubber Mold, Silicone molding, PC High-Gloss Plastic Mold, Die Casting Mold, Silicone Mold, Silicone Rubber Mold, Liquid Silicone Rubber , Cosmetic Packaging Mold, Medical Products Mold, Engineering Plastic Molds, Home Appliances Mold, etc…

  1242. Avatar
    estate planning checklist over 3 years later:

    Very good written post. It will be helpful to anybody who utilizes it, including myself. Keep up the good work – i will definitely read more posts.

Comments