"Quality Doesn't Matter That Much" -- Jeff and Joel 1231

Posted by Uncle Bob Sun, 01 Feb 2009 00:34:29 GMT

I was riding my exercise bike, listening to Stack Overflow #38 when I heard Jeff Atwood and Joel Spolsky say “Quality just doesn’t matter that much.” I nearly fell off my bike.

I mean this is Joel Spolsky right? His buddy Jeff makes this incredibly dumb statement and Joel grunts his approval. WTF?

This is the kind of idiotic statement I would expect to hear from junior hackers, or people who haven’t written very much code. You simply cannot deliver software products for more than a few years and think that quality doesn’t matter very much.

Now I need to be fair. I don’t think Jeff meant to say this exactly the way it came out. Just before he said it, he said that lately he had been getting less and less concerned with code hygiene. So possibly he was trying to say that code quality just doesn’t matter that much.

But that doesn’t make me feel any better; because one thing you learn after four decades of coding is that code quality matters one hell of a lot. So to respond to Jeff I’ll simply fall back on the old saw “Faithful in little, faithful in much.” In other words, if you can’t keep your code clean, no way can you keep your systems clean.

So I think the fairest thing I can say about this is that Jeff was probably saying things he didn’t really mean because he felt his mentor, Joel, was approving.

To make matters worse, all of this was preceded by a truncated rant by Joel about TDD. Joel and Jeff were agreeing that unit testing was really not very important and that testing is often a waste of time. (I’m starting to wonder if anyone should be using any of their products.)

Again, to be fair I think Joel was playing devil’s advocate a bit. He was saying that it’s a waste to write tests for every last little thing. This is certainly true. However the discipline of TDD does not recommend the position that Joel was resisting. TDD specifically tells us not to bother testing getters and setters and itty bitty methods that simply can’t fail. So Joel clearly didn’t understand what he was arguing against.

Joel went on to say that 100% code coverage by unit tests is a waste. I agree. I think that 100% code coverage is unachievable. However, I think that it is not a waste to drive that number up as high as practicable. For example, I keep FitNesse at about 90%. This requires very little effort on my part and pays back enormous dividends. Again, I think Joel was arguing without reasoning. Yes, 100% is silly; but 90%, or even 95%, is not.

Joel went on to complain about the fragile test problem which is that as you make changes to your code, some of your tests naturally fail. Joel quoted the statistic 10%. That’s laughable, and indicates that Joel has never tried to to gain anything beyond a surface understanding of TDD (a failing typical of business wonks). If you design your tests such that 10% of them fail due to a single point change, then you need a new career. Test design, like any other part of software design, is about decoupling.

I’m not religious about TDD. I consider it a discipline worth following. I don’t write all my tests first. Some small number of them are simply more convenient to write after the code. There is even some code I don’t write tests for at all, because it’s just not worth it. But those are exceptions to the rule. The vast majority of the code I write, I write test first. (And no, Joel, this isn’t a waste of my time.)

At some point in the discussion, Joel took on the SOLID principles. He said that these principles are so extremely bureaucratic that they must have come from the mind of someone who doesn’t write a lot of code. He also used the word “idiotic”.

Again, this is a symptom of someone who has focussed on business and lost his technical chops. Euclid once told a king, “There is no royal road to Geometry.” There is no executive summary that explains the SOLID principles well enough that you can comment on them critically.

I won’t go into his exegesis of the principles because it’s, frankly, embarrassing. I’ll simply say that I’ve been a coder for 40 years. I’ve written many systems taking them from inception to delivery and into maintenance. I have shipped one hell of a lot of product. And if anyone wants to know how much code I’ve written over the last six months, they are free to inspect my github repository.

Joel said that the SOLID principle aren’t “agile”. (sigh). Everybody and his uncle thinks he knows what the term “agile” means. But I’m the guy who called the meeting where the name “agile” was picked. I’ve been writing about Agile development since the term Agile development was created. I think I know what is Agile and what isn’t. And I think I have the authority to override Joel on this one. Joel, the SOLID principles are agile.

I think that maintaining your technical chops is a full time job. For that reason I have avoided becoming a business wonk. I hire people to do that for me so I can keep my technical skills as sharp as possible and remain relevant to my profession. I don’t believe I can offer technical advice unless I am living that technical advice.

You see, I think quality matters. I think the quality of my code matters, even at the smallest scale. I think the quality of my systems matters. I think the quality of my tests matters. And… I think the quality of my advice matters.

Comments

Leave a response

  1. Avatar
    Mike Wilson 17 minutes later:

    I’d been following your tweets, dying to hear the story. I’m half tempted to listen to the podcast but frankly, it doesn’t sound like it would be good for my blood pressure.

    Not an HOUR ago I had another Mike Feathers “When would I possibly have found that?” moment during a TDD session.

    et tu Spolsky?

    sigh

  2. Avatar
    Dave Hoover 25 minutes later:

    “I think that maintaining your technical chops is a full time job.”

    Thanks for making that statement. Technical mastery requires constant practice. Masters need to be living in the trenches where business and technology clash and/or mesh every day.

  3. Avatar
    Dave Hoover 26 minutes later:

    “I think that maintaining your technical chops is a full time job.”

    Thanks for making that statement. Technical mastery requires constant practice. Masters need to be living in the trenches where business and technology clash and/or mesh every day.

  4. Avatar
    Jesper Kamstrup Linnet about 1 hour later:

    Glad to read your response!

    The podcast was rather hilarious (if depressing due to the complete lack of understanding.) I can only hope that Mr. Spolsky made his statements out of an urge to stir the debate – otherwise he really, really need to check his facts…

  5. Avatar
    Eduardo Scoz about 1 hour later:

    I was listening to the podcast during my way to work when they started talking about TDD and quality, and I the same WTF?? feeling. Honestly, I started laughing in the bus..

    It’s great to know I was not alone. Thanks for the response, Bob.

  6. Avatar
    Interested Observer about 1 hour later:

    Ooo ooo blog fight! Joel and Jeff both mentioned during the podcast that they knew they would bring the ire of many, so not entirely unexpected.

    Rather than take this as a personal attack, or an affront to SOLID principles (although I’d say there’s justification for both) you could take this as an opportunity to realize that the marketing of the principles is lacking, and could do with some improvement. Hell, record a quick rebuttal and submit it to Joel for possible inclusion in the next podcast.

  7. Avatar
    Emilio Cavazos about 1 hour later:

    Dear Uncle Bob,

    Thank you for setting the record straight. Statements like, “Quality just doesn’t matter that much” shouldn’t go unaddressed.

    Personally, SOLID has transformed my career. SOLID has made my career as a software developer more enjoyable. I speak from experience when I say, maintaining a system that wasn’t written with SOLID in mind is the opposite of enjoyable.

    I may not always be SOLID compliant but that’s why TDD is so important. TDD is my truth serum. TDD ensures I move towards SOLID and not away from SOLID.

    It frightens me to think that new developers are listening to Jeff and Joel and not listening Uncle Bob Martin.

    - Emilio

  8. Avatar
    Bil Kleb about 1 hour later:

    I’ve listened to all the StackOverflow podcasts, and I’ve heard them make comments that made me think that they really didn’t understand TDD or Agile. In podcast #38 they overtly revealed their ignorance.

    I now firmly believe they have never tried TDD (or BDD). I have never met anyone that has honestly given it a fair trail (20 days or so) and not become addicted for life.

  9. Avatar
    Jim Anderson about 1 hour later:

    While I was shocked at Joel’s rejection of SOLID principles and can’t agree with him there, I think I understand his point. Some zealots are giving ahering strictly to dogmatic methodologies (not necesarily SOLID) a higher priority than delivering software and satisfying customers. If your code is incredibly clean, but doesn’t meet the user’s needs, it is useless. Of course, ideally, principles and methodolgies are used pragmatically in delivering software that does meet customer’s needs but I have seen developers forget the objective of the system they were working while obsessing on the details of the implementation.

  10. Avatar
    Corey Haines about 1 hour later:

    I agree completely with the thoughts, and I wanted to emphasize something you said:

    “I hire people to do that for me so I can keep my technical skills as sharp as possible”

    I think it is very important for people to realize that there are too many things out there to try to do them all. Find what you want to get good at, then pay someone to do the other things. Same reason that I pay someone to change the oil in my car.

  11. Avatar
    Dagfinn Reiersøl about 2 hours later:

    In this landscape, there appears to be a many who believe that they can understand and make valid judgments about principles and practices out of superficial aquaintance.

    Although this is about a different set of practices, I find it revealing that one recent post on a blog about Scrum ( http://agilesoftwaredevelopment.com/blog/janusz-gorycki/dont-use-scrum ) says you just need to “familiarize yourself” with its principles and then you can pick and choose. Well, you need to do more than that. You need to actually learn the skills that are necessary to practice them, and then you can try them out. Otherwise, you’re just dabbbling and you have no basis for an independent opinion. You may think you can form an opinion by observing others who are following the practices, but you really can’t know whether they are doing it correctly.

  12. Avatar
    Jim Anderson about 2 hours later:

    He (Spolsky) also backs off on his criticism of SOLID and admits he didn’t know what he was talking about in Stackover #39.

  13. Avatar
    Torbjörn Gyllebring about 2 hours later:

    Fantastic, I agree completely.

  14. Avatar
    William Pietri about 2 hours later:

    Thanks for this, Bob. Great stuff.

    I think you’re right that maintaining your technical chops is a full-time job. At least. And I think that’s so because it’s a Red Queen problem.

    In my view, the basic limit on technical innovation isn’t our collective ability to come up with new things. It’s our ability to absorb them. That means that the field is changing about as fast as most developers can handle things. For most people, taking time off means you slip behind, your instincts and tricks becoming less and less relevant.

    And it’s even worse than that. We aren’t a unified profession; each tribe (e.g., .NET vs Java vs Rails) is moving ahead as fast as they can, but in somewhat different directions. So consider a manager, exec, or pundit with experience five years stale. If they convince themselves that they understand what a mixed set of teams is really doing today, they’re fooling themselves twice over.

  15. Avatar
    William Pietri about 2 hours later:

    Thanks for this, Bob. Great stuff.

    I think you’re right that maintaining your technical chops is a full-time job. At least. And I think that’s so because it’s a Red Queen problem.

    In my view, the basic limit on technical innovation isn’t our collective ability to come up with new things. It’s our ability to absorb them. That means that the field is changing about as fast as most developers can handle things. For most people, taking time off means you slip behind, your instincts and tricks becoming less and less relevant.

    And it’s even worse than that. We aren’t a unified profession; each tribe (e.g., .NET vs Java vs Rails) is moving ahead as fast as they can, but in somewhat different directions. So consider a manager, exec, or pundit with experience five years stale. If they convince themselves that they understand what a mixed set of teams is really doing today, they’re fooling themselves twice over.

  16. Avatar
    Tim Linquist about 2 hours later:

    Writing quality code demonstrates more than just discipline. It displays your integrity, compassion for the team, and commitment to the project as well. Taking the time to produce quality code is something that we should all do every time we put our fingers to the keyboard. Our teammates will thank us for it, we’ll feel better when we finish, and even business wonks might thank us in the end.

  17. Avatar
    BlackWasp about 2 hours later:

    Sounds like a Gerald Ratner moment. I hope not for Joel’s sake.

  18. Avatar
    John Bender about 3 hours later:

    Always glad to see some Jeff bashing. ;)

  19. Avatar
    John Bender about 3 hours later:

    Always glad to see some Jeff bashing. ;)

  20. Avatar
    Cynical about 3 hours later:

    So wait, you’re saying that someone who sells bug tracking software is encouraging programmers to slack off on quality? Sounds like a clever marketing campaign to me.

  21. Avatar
    Dang about 3 hours later:

    Burn them at the stake!

  22. Avatar
    Josh about 4 hours later:

    Ironically, the two products they are famous for are best in class. What have you guys done?

  23. Avatar
    Joel Spolsky about 4 hours later:

    Uncle Bob -

    Reading your post, I didn’t even recognize who you were arguing with here. I don’t think your memory of the podcast exactly corresponds to what you’re objecting to, so I transcribed the whole 10 minutes where we had that conversation:

    http://www.joelonsoftware.com/items/2009/01/31.html

    I’m convinced that you’re misrepresenting Jeff’s views. He said pretty clearly, “Anything that improves quality is good.”

    I think you’re misrepresenting my views, too. Check the transcript (I edited it a little bit for clarity, but not for meaning) and I think you’ll find that we’re not really disagreeing about that much.

  24. Avatar
    James about 4 hours later:

    “But that doesn’t make me feel any better; because one thing you learn after four decades of coding is that code quality matters one hell of a lot.”

    This is true, but having a business to work at matters even more. They are not arguing against code quality as much as TDD, which they say helps mediocre programmers write better code. Writing tests that intentionally break, and then writing code that makes the tests pass is one step too many for some people, especially if the code they are writing already would pass muster (I would argue that most good developers already write code good enough).

    “For example, I keep FitNesse at about 90%. This requires very little effort on my part and pays back enormous dividends.”

    What dividends? What metrics are you using? Are you that bad of a software developer that 90% of the code you write is not to be trusted unless MORE code is written around the original code?

    “Again, this is a symptom of someone who has focussed on business and lost his technical chops.”

    Baloney. Just because a another developer doesn’t agree with your style of development doesn’t make their technical chops less than yours. These guys have written software the a LARGE number of people have used and loved.

    “You see, I think quality matters.”

    Who is really arguing this? I think they see less value in TDD than you do. TDD is A* way of getting quality better—it is not the *only or even best way.

    “But I’m the guy who called the meeting where the name “agile” was picked.”

    Appeal to Authority is a fallacy. I’ve heard agile thrown around so often that it has been disabused of any “right” idea that some guy in a room came up with. Like most words and ideas it has grown up with a life of its own.

  25. Avatar
    Joe about 4 hours later:

    @Josh – Ironically, those designations mean nothing in software as there is no governing body to decide what “best in class” means and who and how they are compared. How long have you been doing this?

    Everyone else. Testing is important. Automated testing and TDD are very, very important. No unit tests, functional tests or integration tests? Just stupid. Not testing at all? I don’t even know what that means.

  26. Avatar
    Jean-Francois Couture about 4 hours later:

    Jeff and Joel both write well and can tell funny stories. That’s it. They are entertainers in the field of software. That’s the only reason to ever read or listen to them, to be entertained. For good advice, look elsewhere.

  27. Avatar
    Steve Bohlen about 5 hours later:

    Its hard to imagine that anyone in today’s day-and-age would argue against the value of unit tests in anything but the most trivial of systems; whether we are talking TDD or test-after is another value debate, but we cannot seriously be asking ‘is testing valuable’, can we?

    Not writing tests AT ALL is like saying “I can read the code and deduce its behavior better than the compiler can” and although I’ve met a number of very good software engineers in my life, NONE of them read code as well as the compiler.

    Re: Jeff and Joel having running software without tests (success being the only useful metric considered here—BTW a tremendous fallacy, but a debate for another thread), I think we should consider that both of their ‘successes’ are in fact quite simple software systems that may in fact lack the complexity of behavior that would benefit significantly from unit tests. Both appear to largely be forms-over-data apps with little business rules/behavior worth testing (at least at first glance to me).

  28. Avatar
    Jeff L. about 5 hours later:

    “People that say things like this have just never written a heck of a lot of code. Because what they’re doing is spending an enormous amount of time writing a lot of extra code, a lot of verbiage, a lot of files, and a million little classes that don’t do anything and thousands of little interface classes and a lot of robustness to make each of these classes individually armed to go out into the world alone and do things, and you’re not going to need it.”

    Funny, this comment from the transcript smacks to me of someone who has written a lot of unnecessary code. I’ve done a lot of TDD and found that it enables the ability to get rid of all that excess code that programming geniuses like Spolsky slop into their code. Spolsky apparently doesn’t understand incremental refactoring or TDD.

  29. Avatar
    J.P. Hamilton about 5 hours later:

    I learned about the SOLID principles around 1998-1999 by reading your articles, and then applying that knowledge. The effect on the quality of my code was immediate, literally. When I heard this podcast I was sickened and embarrassed.

    The remarks made with regard to TDD, Agile, and SOLID have to be the most ridiculous things I have heard in recent memory. I just hope there weren’t any impressionable newcomers to our profession who took anything they said to heart.

  30. Avatar
    Josh N about 5 hours later:

    Joel doesn’t seem to fully understand TDD.

    In his example of testing the JPEG compression rate for CoPilot he cites that the setup code for the test would be large, and take more time than it was worth.

    If he fully understood TDD he would know that large setup is a code smell of the God object (an object that tries to do too much). Refactoring the objects responsibilities into other classes would make it more testable.

  31. Avatar
    Lee Brandt about 6 hours later:

    Best post in awhile. Definitely gonna skip #38. Thanks for sharing your thoughts.

    Keep ‘em in coming.

    ~L

  32. Avatar
    joran about 6 hours later:

    This blog post reads like a rant. I question, now, how much any affirmer in the comments honestly values software over software-the-way-they’ve-been-told-is-right.

    A million systems without unit tests function gloriously. Take your head out of the sand and look at code that’s stood the test of time. Statistics are on Joel’s side of the argument.

  33. Avatar
    unclebob about 6 hours later:

    James about 4 hours later:

    This is true, but having a business to work at matters even more.

    Keeping your code clean is a good way to help you keep a business to work at.

    They are not arguing against code quality as much as TDD, which they say helps mediocre programmers write better code.

    Jeff and Joel are arguing from a position if ignorance. They don’t know what TDD is. This is clearly evident from their naive discussion of the topic.

    Writing tests that intentionally break, and then writing code that makes the tests pass is one step too many for some people, especially if the code they are writing already would pass muster (I would argue that most good developers already write code good enough).

    I would argue that few programmers write code well enough to work the first time. If there is a chance that your code has a bug, then you need to test it somehow. Testing it manually (again and again at every release) is horrifically inefficient. Writing your tests up front is simple, and has a profound beneficial effect.

    “For example, I keep FitNesse at about 90%. This requires very little effort on my part and pays back enormous dividends.” What dividends? What metrics are you using? Are you that bad of a software developer that 90% of the code you write is not to be trusted unless MORE code is written around the original code?

    I push a button and 35 seconds later I have executed 90% of the code in the entire system, and seen it work. This means I have a very simple way to ensure that any change I make has not broken anything. If you can’t work out the benefits that obtain from that, I’m sorry.

    “Again, this is a symptom of someone who has focussed on business and lost his technical chops.” Baloney. Just because a another developer doesn’t agree with your style of development doesn’t make their technical chops less than yours. These guys have written software the a LARGE number of people have used and loved.

    I’ve written lots of very profitable software too. So what? The point is that their arguments are non-sequitur because they don’t know what they are talking about. They have taken a position based, primarily, on ignorance. That they are ignorant of TDD is evident on the surface of their arguments.

    So, it’s not that they disagree with TDD, they don’t know TDD and have taken a public position based on that ignorance.

    “You see, I think quality matters.” Who is really arguing this?

    Jeff Atwood, and by his silence, apparently Joel. Listen to the podcast, or read the transcript.

    I think they see less value in TDD than you do. TDD is A* way of getting quality better—it is not the *only or even best way.

    I have no problem when someone presents a reasoned critique of TDD. There’s plenty to criticize. TDD doesn’t solve world hunger. Unfortunately, Joel and Jeff presented no such reasoned critique.

    “But I’m the guy who called the meeting where the name “agile” was picked.” Appeal to Authority is a fallacy.

    Not in this case, since I am one of the authors.

    I’ve heard agile thrown around so often that it has been disabused of any “right” idea that some guy in a room came up with. Like most words and ideas it has grown up with a life of its own.

    And that is unfortunately due to unreasoned and ignorant arguments made by people like Jeff and Joel.

  34. Avatar
    unclebob about 6 hours later:

    joran about 6 hours later:

    This blog post reads like a rant. I question, now, how much any affirmer in the comments honestly values software over software-the-way-they’ve-been-told-is-right.

    It was a rant. Joel called his own words in the podcast “a rant”. One good rant deserves another.

    A million systems without unit tests function gloriously. Take your head out of the sand and look at code that’s stood the test of time. Statistics are on Joel’s side of the argument.

    I doubt it’s a million. There have, however, been many good systems written without unit tests. Many patients were before sterile procedure was invented too. So what? There are no statistics on Joel’s side, because Joel doesn’t have a side that’s based on any real experience with TDD.

  35. Avatar
    Kelvin about 7 hours later:

    You’re naive. This industry runs on bad code, bad code makes a lot more money than good code. Bad code means quicker to market, bad code means lock-in, bad code means more billable hours. Sure it hurts down the road, but by then your “good code” competitors have bankrupted themselves.

    Quality doesn’t matter. I don’t like it, but that’s how it is.

  36. Avatar
    Chris Wash about 7 hours later:

    This discussion spawned a blog post for me:

    http://cwash.org/2009/01/31/in-response-to-stackoverflow-38quality-doesnt-matter-that-much-jeff-and-joel/

  37. Avatar
    Uncle James about 7 hours later:

    “I push a button and 35 seconds later I have executed 90% of the code in the entire system, and seen it work.”

    You have seen it work for test cases that you yourself have come up with. Most of the problems I have seem come from what a programmer HASN’T been able to forsee. I agree that putting tests in for parts of code that see a lot of change or have certain kinds of logic makes sense, but putting a test around everything strikes me as naive and a waste of resources. I’ve done TDD on a few projects now, usually at the behest of some junior Java programmer who had the religion and talked the rest of us into it. Taking the full time and resources spent on the tests and comparing it to the very few times where any of them have caught problems, and I just don’t see the value. I’d rather have a team of guys that use their brains and write tests where they are obviously needed instead of writing tests for every little thing.

  38. Avatar
    Joel Spolsky about 7 hours later:

    Uncle Bob, I’m confident that you’re misrepresenting what Jeff and I said. I put a transcript of our conversation up on Joel on Software and you can judge for yourself. We’d love to have you on the Stack Overflow podcast.

  39. Avatar
    pete w about 7 hours later:

    Kelvin-

    I do agree that this is the prevalent trend, such as the gaming industry where throw-away code is written because RTM date is a key factor.

    There have been many a research paper that attempts to gauge various measures of code quality directly to cost-effectiveness.

    Kelvin there are many places where code quality will literally make or break the company.

    Most companies have no iota of a clue how much “bad software” is costing them.

  40. Avatar
    Kevin about 7 hours later:

    My only real question is who or what is validating your tests? If you write code that needs that level of testing then you probably shouldn’t be writing the tests. [for the record, I’m not claiming that my code doesn’t need that level of testing]

    The other obvious question is “Do you actually understand the problem you are trying to solve?” – in other words, how many “bugs” have come about due to poor understanding vs. poor code?

  41. Avatar
    Barry Kelly about 7 hours later:

    “If you design your tests such that 10% of them fail due to a single point change, then you need a new career”

    This statement destroys your credibility for me. It’s too extreme to mark you out as anything other than an ideologue.

    People who’ve made a successful career building software and getting paid for it are by definition not in need of a new career; to claim otherwise, you’re trying to argue against the existence of facts.

  42. Avatar
    Barry Kelly about 7 hours later:

    “If you design your tests such that 10% of them fail due to a single point change, then you need a new career”

    This statement destroys your credibility for me. It’s too extreme to mark you out as anything other than an ideologue.

    People who’ve made a successful career building software and getting paid for it are by definition not in need of a new career; to claim otherwise, you’re trying to argue against the existence of facts.

  43. Avatar
    Barry Kelly about 7 hours later:

    (I don’t know if your tests have caught it, but the user experience for posting comments from within Firefox 3 is not good – it’s very susceptible to duplicates!)

  44. Avatar
    erwinroots about 9 hours later:

    In my experience it is true that, “Quality just doesn’t matter that much.” After 9 years of supporting a government agency, I look back to the tremendous increase in productivity my websites have provided the workers that formerly had to exchange spreadsheets to do their job. I have always provided updated capabilities in response to their requirements in a timely manner. The quality of my code is poor but it serves the purpose.

  45. Avatar
    Amy about 9 hours later:

    If you’d ever used Fogbugz, I don’t think you’d be surprised.

    It’s horrible. I think it took them something like 2 years to fix the PHP quote escaping problem.

    Guess they were too busy writing cross-language compilers or something.

    I simply cannot understand why people assume that Joel Spolsky is a beacon of quality and reasonableness. With the bizarro cross-language-compiling stuff they do, the horribleness of his main product, and the inane and incorrect things he writes about interface design… it all adds up to a message that says “DON’T TRUST!” to me.

    So he wrote some apparently great articles on software pricing. That’s nice. They clearly make money. But it doesn’t make him somebody I’d listen to about other topics.

  46. Avatar
    CentrifugalBumblepuppy about 9 hours later:

    This article reminds in some ways of a typical Slashdot linux rant. There is a lot of appeal to authority, holier-than-thou “you-just-don’t-get-it-’s-your-problem”, deep-seated anger and defensiveness but ultimately the casual reader comes a way thinking “meh, so what?”.

    Actually you know what it reminds me more of – the arguments that guitar players have – who is better, Joe Satriani or Kurt Cobain? Joe Satriani clearly is technically superior, but Kurt Cobain was the one who revolutionized music. Satriani didn’t.

    Stackoverflow is probably one of the best websites for regular-programmers ever. Possibly the most revolutionary tool to come along in years, at least when you take into account its scope and reach. Plus it does so many things better than anyone else out there.

    On planet earth, people with creative ideas and creative energy set the standard, change the way we do things, make piles of money, get the glory, get the women. People with only technical chops work 9-5 to someone else’s vision.

    If TDD and SOLID is too obscure that regular-intelligent people don’t get it, then the problem is with TDD and SOLID, not with the regular-intelligent people. People have limited time to invest. I would rather Joel and Jeff’s invested in something with the chops they already have – made something useful for ME. I don’t care how they do it, just do it and make it good for ME.

  47. Avatar
    unclebob about 10 hours later:

    Kelvin about 7 hours later:

    You’re naive. This industry runs on bad code, bad code makes a lot more money than good code. Bad code means quicker to market, bad code means lock-in, bad code means more billable hours. Sure it hurts down the road, but by then your “good code” competitors have bankrupted themselves.

    Quality doesn’t matter. I don’t like it, but that’s how it is.

    I prefer my naivete to your cynicism. And besides, you’re just wrong. Bad code always takes longer to create than good code. If you don’t believe that, you need to change professions.

  48. Avatar
    unclebob about 10 hours later:

    Uncle James about 7 hours later:

    “I push a button and 35 seconds later I have executed 90% of the code in the entire system, and seen it work.” You have seen it work for test cases that you yourself have come up with. Most of the problems I have seem come from what a programmer HASN’T been able to forsee.

    Sure. That’s why we have BA/QA folks write automated acceptance tests. However, there is a powerful benefit when software developers state their intention twice. It’s rather like accountants who practice dual-entry bookkeeping. If you say it twice in two different ways, you have a good chance of avoiding stupid mistakes. And if the tests are automated, you have a very good chance of avoiding future breakage.

    I agree that putting tests in for parts of code that see a lot of change or have certain kinds of logic makes sense, but putting a test around everything strikes me as naive and a waste of resources.

    Of course. TDD is not about testing everything. TDD isn’t actually about testing at all. TDD is a discipline for designing, developing, and preserving software.

    .bq. I’ve done TDD on a few projects now, usually at the behest of some junior Java programmer who had the religion and talked the rest of us into it. Taking the full time and resources spent on the tests and comparing it to the very few times where any of them have caught problems, and I just don’t see the value.

    I’m sorry. What? You don’t see the value in hitting a button and quickly knowing that the system works. If you are seriously telling me that, then I have to doubt that you are a software developer. Most software developers would give their right arm to have a button like that.

    I’d rather have a team of guys that use their brains and write tests where they are obviously needed instead of writing tests for every little thing.

    A team that truly uses it’s brains adopts repeatable disciplines.

  49. Avatar
    unclebob about 11 hours later:

    Joel Spolsky about 7 hours later:

    Uncle Bob, I’m confident that you’re misrepresenting what Jeff and I said. I put a transcript of our conversation up on Joel on Software and you can judge for yourself. We’d love to have you on the Stack Overflow podcast.

    I look forward to it. You can contact me at .

  50. Avatar
    unclebob about 11 hours later:

    Kevin about 7 hours later:

    My only real question is who or what is validating your tests? If you write code that needs that level of testing then you probably shouldn’t be writing the tests. [for the record, I’m not claiming that my code doesn’t need that level of testing]

    When you say something twice, in two different ways, you are far more likely to understand it well, and detect errors.

    The other obvious question is “Do you actually understand the problem you are trying to solve?” – in other words, how many “bugs” have come about due to poor understanding vs. poor code?

    Much bad software is due to poorly understood requirements. Acceptance tests can help to clarify requirements, but do little to ensure they are the right requirements. Nevertheless, TDD is a powerful way to understand and preserve the solution you are creating.

  51. Avatar
    unclebob about 11 hours later:

    Barry Kelly about 7 hours later:

    “If you design your tests such that 10% of them fail due to a single point change, then you need a new career” This statement destroys your credibility for me. It’s too extreme to mark you out as anything other than an ideologue.

    If a software developer creates a design that is so fragile that 10% of it breaks due to a single point change, then that developer needs significant remedial training.

    People who’ve made a successful career building software and getting paid for it are by definition not in need of a new career; to claim otherwise, you’re trying to argue against the existence of facts.

    Actually, there are quite a few developers who collect a paycheck and do more damage than good. Indeed, that’s one of our bigger problems.

  52. Avatar
    Chris about 11 hours later:

    Frankly, I think there’s some rather dishonest selective quotation going on in this post. For anyone who is interested in a bit more context, the entire exchange is available on the Stack Overflow Podcast transcript (https://stackoverflow.fogbugz.com/default.asp?pg=pgWiki&;command=view&ixWikiPage=29025). I’ve reproduced Jeff and Joel’s remarks before and after the snipped that Bob quoted below.

    Atwood: Right. The longer I think about this, the less I care about code hygiene issues (laughs). Because the unit of measure that really matters to me is, how quickly you can respond to real business needs with your code. And by that I mean, how well are you serving the people that are using your code. To me that’s what it’s all about. Anything that gets in the way of you fixing your code or improving your code in a way that your customers can appreciate, is a negative. If that means using Ruby, or having lots of unit tests: whatever’s working for you: do that. But if it’s getting in the way, if it becomes friction, like, “I’d love to have this great new feature but I’d have to have 1000 unit tests,” that’s a negative.

    Spolsky: Yeah. And the worst thing that happens is that you get people that just stop thinking about what they’re doing. “This is the principle, to always write unit tests, so I’m always going to write unit tests,” and then they’re just not thinking about how they’re spending their time, and they wind up wasting a lot of it.

    Atwood: Yeah, it’s a balancing act. And I don’t want to come out and say I’m against [unit] testing, because I’m really not. Anything that improves quality is good. But there’s multiple axes you’re working on here; quality is just one axis. And I find, sadly, to be completely honest with everybody listening, quality really doesn’t matter that much, in the big scheme of things… There was this quote from Frank Zappa: “Nobody gives a crap if we’re great musicians.” And it really is true. The people that appreciate Frank Zappa’s music aren’t going, “that guitar was really off.” They’re hearing the whole song; they’re hearing the music, they’re not really worried whether your code has the correct object interfaces, or if it’s developed in a pure way, or written in Ruby or PHP… they don’t really care about that stuff. We do internally, but it’s important to balance that, I think, and I think that gets missed a lot, which is, maybe, the point you’re getting at.

    Spolsky: Yeah.

    Atwood: I think over time, more and more, I’ve become really lax on my thinking about this, because what matters is what you deliver to the customer, and how happy the customer is with what you’ve delivered. There’s many, many ways to get there.

  53. Avatar
    unclebob about 11 hours later:

    In my experience it is true that, “Quality just doesn’t matter that much.” After 9 years of supporting a government agency, I look back to the tremendous increase in productivity my websites have provided the workers that formerly had to exchange spreadsheets to do their job. I have always provided updated capabilities in response to their requirements in a timely manner. The quality of my code is poor but it serves the purpose.

    I leave it to you to figure out why that paragraph is an oxymoron.

    Software quality is important because the most valuable attribute of software is it’s ability to be changed and adapted to the changing needs of the users. Bad software is hard to change. Indeed, that’s a good working definition of low quality software.

    TDD makes software much easier to change.

  54. Avatar
    unclebob about 11 hours later:

    CentrifugalBumblepuppy about 9 hours later:

    This article reminds in some ways of a typical Slashdot linux rant. There is a lot of appeal to authority, holier-than-thou “you-just-don’t-get-it-’s-your-problem”, deep-seated anger and defensiveness but ultimately the casual reader comes a way thinking “meh, so what?”.

    Do you always use five paragraphs of appeals to authority to say “meh?”

  55. Avatar
    unclebob about 11 hours later:

    Chris about 11 hours later:

    Frankly, I think there’s some rather dishonest selective quotation going on in this post.

    Chris, please point out the dishonesty. Be specific please.

  56. Avatar
    joran about 12 hours later:

    this discussion has rapidly descended into self-assured sniping on both sides. let’s face it: as people proud of our work, we want to write unit tests, we want to use our favorite language, we want to do all the things for the sake of future generations.

    but so much of this code does not get reused and so much of its value is time-sensitive. we can still artisan great software if we cut corners for the greater good.

    though they might love to enskeleton every structure with admantium, even great engineers understand that the cost of doing so exceeds any value it delivers. (not to mention demolition costs down the line!). they hold to tolerances of failure and yielding stress.

    what joel is saying is that an emphasis on “high-quality” software can be both over-engineering and masturbatory. for those with half a century of experience unit testing and SOLIDifying, it might be trivial to always do so, but for the majority of software writers, in the plurality of cases, it’s not.

    like appropriate technology, there is appropriate coding

  57. Avatar
    o.s. about 13 hours later:

    I’m stunned at the number of people who have come out in the comments against TDD. It has obvious benefits for crafting better code but you have to not be so lazy to ignore them. Larry Wall once stated that programmers have the trait of being lazy and this is probably the main roadblock that stops people from taking the extra time to write a unit test first.

  58. Avatar
    Chris about 13 hours later:

    “Chris, please point out the dishonesty. Be specific please.”

    You claimed Jeff and Joel were saying, flat out, software quality doesn’t matter. What they actually said was that software quality is one element that has to be traded off against others: time to market, features delivered to the customer, etc. To expand the quote from less than one sentence to two: “But there’s multiple axes you’re working on here; quality is just one axis. And I find, sadly, to be completely honest with everybody listening, quality really doesn’t matter that much, in the big scheme of things”

    You took the smallest excerpt you could (not even a whole sentence) and turned it into a strawman to argue against.

  59. Avatar
    Dagfinn Reiersøl about 13 hours later:

    Many assume automatically that writing unit tests translates into additional time spent. It’s a natural and intutitive assumption, but it’s incorrect.

    The key is that when you practice TDD, you spend more time writing tests, but far less time debugging (and in particular: searching for bugs). Having more robust and flexible software afterwards is a bonus.

  60. Avatar
    Chris about 13 hours later:

    “Chris, please point out the dishonesty. Be specific please.”

    You claim that Joel and Jeff said flat out that, “Quality just doesn’t matter that much.” What they actually said was that quality was one element that has to be traded off against things like time to market, and delivering features to customers. To expand the quoted section from less than one sentence to two: “But there’s multiple axes you’re working on here; quality is just one axis. And I find, sadly, to be completely honest with everybody listening, quality really doesn’t matter that much, in the big scheme of things.”

    You took the smallest bit you could (less than one sentence) and used it as a strawman to argue against.

  61. Avatar
    Liam McLennan about 13 hours later:

    This is very similar to a recent conference panel that Uncle Bob was on.

    http://www.dotnetrocks.com/default.aspx?showNum=358

    It is interesting that this whole ‘is quality important’ thing keeps coming up. When listening to the various arguments it is important to know that no one is saying that bad quality software is good and no one is saying that you should pursue quality at the expence of all else – the argument is about where you stand on the continuum.

    Sorry about the long sentence; like Mark Twain I hadn’t enough time to make it shorter.

  62. Avatar
    Stephan Schmidt about 14 hours later:

    Don’t be too harsh with them, one is a manager of a small company and the other a blog writer. Neither is a full-time developer, and both seem to have little experience with larger projects (their blogs are good read – but not for programming reasons – perhaps except the leaky abstractions and iceberg principle parts :-)

    Stephan

    — Programming is hard – http://blog.codemonkeyism.com http://twitter.com/codemonkeyism

  63. Avatar
    Lee Winder about 15 hours later:

    I have to admit to being surprised but some of the content of the SO podcasts, especially since I hear so much about these guys in respect to them pushing the engineering field forward.

    I suppose this really comes down to the fact that the podcast is pretty much ‘made up’ as they go along, something that maybe should be a little more planned?

    Anyway, I stopped listening to SO when Jeff linked to Wil Shipley’s rant on Unit Testing (on Twitter) but wouldn’t give any real justification as to why. It just seemed like stirring for no good reason, something I think was coming across in the podcasts – which is probably exactly why they said what they said.

    Shame really, as this whole series could have been a much more focused cast and it seems to be moving away from that.

  64. Avatar
    Casper about 16 hours later:

    I stopped listening to StackOverflow a long time ago. The overly authoritative yet unqualified tone by Mr. Spolsky in particular, no matter the topic, is especially annoying to listen to and strikes me as potentially dangerous. I’m only surprised I haven’t seen more critical entries like this one before.

  65. Avatar
    unclebob about 20 hours later:

    joran about 12 hours later:

    What joel is saying is that an emphasis on “high-quality” software can be both over-engineering and masturbatory.

    I disagree that this is what they were saying. What Jeff said was “And I find, sadly, to be completely honest with everybody listening, quality really doesn’t matter that much, in the big scheme of things…” This is dead wrong. Quality matters a lot. Joel, on the other hand, was talking about TDD and SOLID in a manner that made it clear he didn’t know much about either.

    for those with half a century of experience unit testing and SOLIDifying, it might be trivial to always do so, but for the majority of software writers, in the plurality of cases, it’s not.

    That’s a convenient excuse, but it doesn’t fly. It’s like saying: “Doctors with 50 years experience with sterile procedure can afford it, but most doctors don’t have time to wash their hands.”

    like appropriate technology, there is appropriate coding

    Certainly. But it is never appropriate to make a mess.

  66. Avatar
    unclebob about 20 hours later:

    Chris about 13 hours later:

    “Chris, please point out the dishonesty. Be specific please.”

    You claim that Joel and Jeff said flat out that, “Quality just doesn’t matter that much.”

    It wasn’t a claim, it was a statement of fact. Jeff said: ”...quality really doesn’t matter that much…” He’s wrong. He’s dead wrong. And so is Joel for not jumping on that statement with both feet.

    What they actually said was that quality was one element that has to be traded off against things like time to market, and delivering features to customers.

    They said that too, but they are wrong about that as well. Quality vs. Speed is a false dichotomy. You don’t go faster by making a mess. THAT is my real beef with this whole thing. If you want to go fast, you do the best job you can! High quality is a lubricant not an impediment.

    To expand the quoted section from less than one sentence to two: “But there’s multiple axes you’re working on here; quality is just one axis. And I find, sadly, to be completely honest with everybody listening, quality really doesn’t matter that much, in the big scheme of things.”

    Dead wrong. Quality is not an axis. Quality applies to all axes.

    You took the smallest bit you could (less than one sentence) and used it as a strawman to argue against.

    If you read my whole blog you’ll find that I actually talked about quite a bit of the podcast. Nor do I think I pulled anything out of context. In any case, the word “dishonest” is a very strong word to use, and you should take care with it.

  67. Avatar
    Chris about 21 hours later:

    ‘It wasn’t a claim, it was a statement of fact. Jeff said: ”…quality really doesn’t matter that much…”’

    Now this is the way you should have written it in the first place. Those ellipsis and either end of the quote indicate to the reader that you’ve plucked out a portion of a sentence rather than an entire statement.

  68. Avatar
    Brandon Carlson about 22 hours later:

    Unfortunately, for the masses, I don’t think quality does really matter that much. The problem is that poor quality in software has become the norm, accepted practice. When you’re talking to the sales guy and he says “Yeah, our system does that”. You make the bit purchase, and then find that the feature is unusable because there are 25 defects in it. It’s akin to being assured that “you can drive this baby to and from work every day” by the car dealer but, upon purchase you find that on any commute of over 15 miles the car shuts just stops running. This is not acceptable in any business but software… Sad…

  69. Avatar
    Kay Johansen about 22 hours later:

    The argument doesn’t seem to be over whether crappy code is good. We can see systems getting built all the time on crappy code, and they deliver business value. The question seems to be whether quality, crafted code is better than what the industry generally does now.

    Could we go faster if we wrote unit tests and used SOLID principles? Would we have a competitive advantage? Can we discuss tradeoffs authoritatively if we don’t have experiences from both ends of the spectrum?

  70. Avatar
    unclebob about 23 hours later:

    Brandon Carlson about 22 hours later:

    Unfortunately, for the masses, I don’t think quality does really matter that much. The problem is that poor quality in software has become the norm, accepted practice. When you’re talking to the sales guy and he says “Yeah, our system does that”. You make the bit purchase, and then find that the feature is unusable because there are 25 defects in it. It’s akin to being assured that “you can drive this baby to and from work every day” by the car dealer but, upon purchase you find that on any commute of over 15 miles the car shuts just stops running. This is not acceptable in any business but software… Sad…

    It’s not acceptable in software either.

  71. Avatar
    Jean-Francois Couture about 23 hours later:

    After reading the transcript, I think what they’re trying to say, as far as tradeoff between quality and other things, is the 80/20 rule. There is a point of diminishing of return, like in trying to get absolute 100% code coverage.

    They worded it poorly, but I think that’s what they were trying to say.

  72. Avatar
    Andrew Wall about 23 hours later:

    I’m with Uncle Bob on the matter of code quality.

    If Jeff and Joel want to say that they don’t use TDD, or that they don’t follow the SOLID principles, then that’s fine. If they were to say that they achived 100% coverage once, but it took a long time to get there, then that’s fine. However, asserting that you are likely to often “make a change to your code that, somehow, breaks 10% of your unit tests” isn’t a given: it only means you’ve got a bad design and you should start refactoring so that doesn’t happen again.

    I’ve done a small project where I could get code coverage metrics. They were in the high 90’s because I’d written the code using TDD and only took a short while to get 100% coverage. If I’d had the metrics available from the start I’d have been able to get continuous 100%. I’ve just started a few Python projects and I’ve built in coverage stats, so I work with 100% only.

    Joel comments on the ISP, but doesn’t understand why you need an interface with just the six methods your own class uses – Joel, it means that you can pass in ANY other class that implements those six methods and you’re not limited to passing the original class that has 40 methods. It makes it easier to re-use your class.

  73. Avatar
    Peter Hendriks 1 day later:

    The discussion triggered me to write this blog post:

    Not doing something costs time and money, too

    Keep up the good work Robert, and please don’t fall of your bike!

  74. Avatar
    Chris 2 1 day later:

    So who test the TEST cases?

  75. Avatar
    Forrest Humphrey 1 day later:

    ...Since Joel doesn’t allow comments, I guess this goes here…

    They’re saying a lot of things about unit testing that I said before I really got serious about testing and tried TDD. For example, this issue of “time, time, time” is the big thing that kept me from jumping head first into it in the first place. It’s counter-intuitive to someone that hasn’t actually tried it.

    The two things I can say that I think of when reading their transcript are:

    1) Take the “time” it will spend you to write unit tests up front and realize that all of that time is spent writing code instead of stepping through your debugger. Think of the tests as a chance to practice before you write the real production code. 2) TDD is almost equally about design as it is about testing. My code looks so much better when the tests are written first. It doesn’t get over-engineered, I’m forced to break things up into smaller, more cohesive methods/classes/modules, etc.

    So with all of the emotions left aside, I think Jeff and Joel sound like the lucky guys who are good enough to be successful without relying on unit tests and code quality very much. For the rest of us, though (or at least for me) TDD is just as essential a skill as OOAD.

    ...And quality does matter. Broken windows, man…broken windows…

  76. Avatar
    Chris 2 1 day later:

    Quality is important. No argument there. BUT, who will test and validate the unit TEST scripts?

    ....anyone?

  77. Avatar
    Parag Mehta 1 day later:

    TDD is not just about “unit testing”. TDD is much more! It’s about Design as well. Joel somehow implied TDD as a Testing and QA tool but it is way more then that.

    I am big fan of Joel, but I don’t take this rant. I think it is insulting to call someone “You don’t know because you haven’t coded enough”. Somehow Joel implied that referring to Uncle Bob. Which is sad and cheap means of publicity stunt.

  78. Avatar
    dhui 1 day later:

    @Chris 2 see this please: http://butunclebob.com/ArticleS.UncleBob.TheSensitivityProblem

  79. Avatar
    Monti Tredway 1 day later:

    I think Joel and Jeff’s views on quality make sense if you think that TDD/BDD is a testing activity. It makes no sense from the standpoint of a design activity.

    So let me be clear; TDD is a design activity, TDD is a design activity, TDD is a design activity!!!

  80. Avatar
    Chris 2 1 day later:

    @dhui: Yes that article described the importance of TDD however that doesn’t answer my question at all. So again, who tests the TESTS?

  81. Avatar
    raveman 1 day later:

    WOW, you guys are really brainwashed. I know its easier to repeat than to think, but you guys dont even fight the argument, just say its bad :(

  82. Avatar
    raveman 1 day later:

    the funny thing is that this blog has repeated posts, so why TDD was not used here? Maybe 100% code coverage just doesnt work?

  83. Avatar
    Philip Schwarz 1 day later:

    @Joel

    To start with, I must stress that I have not listened to the podcast on Hanselminutes, so this comment is based purely on the content of Robert Martin’s book: Agile Software Development – Principles, Patterns, and Practices.some of Robert Martin’s books and papers (which I higly recommend to any serious software devleoper).

    You say: Last week I was listening to a podcast on Hanselminutes, with Robert Martin talking about the SOLID principles. (That’s a real easy-to-Google term!) It’s object-oriented design, and they’re calling it agile design, which it really, really isn’t. It’s principles for how to design your classes, and how they should work.

    Either you have not read this book, or you didn’t digest its content. His definition of agile design makes it clear that he does not claim that the principles themselves are agile design:

    So, what is agile design? Agile design is a process, not an event. It’s the continous application of principles, patterns, and practices to improve the structure and readability of the software. It is the dedication to keep the design of the system as simple, clean, and expressive as possible at all times.

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

    By clean code, Martin means code that doesn’t smell:

    How do we know how whether the design of a software system is good? Here are some symptoms of poor design (design smells): Rigidity, Fragility, Immobility, Viscosity, Needless complexity, Needless repetition, Opacity. Often, the smell is caused by the violation of one of more design principles:

    1. The Open/Closed Principle (OCP)
    2. The Single-Responsibility Principle (SRP)
    3. The Liskov Substitution Principle (LSP)
    4. The Dependency-Inversion Principle (DIP)
    5. The Interface Segregation Principle (ISP)

    [the] object-oriented design principles … help developers eliminate the symptoms of poor design smells and build the best designs for the current set of features.

    By the way, when you say that the SOLID principles are OO design, you are actually agreeing with Martin, amongst whose definitions of the principles is the following:

    [the principles are] the hard-won product of decades of experience in software engineering. They are not the product of a single mind but represent the integration of the thoughts and writings of a large number of software developers and researchers. Although they are presented here as principles of object-oriented design, they are really special cases of long-standing principles of software engineering.

    You may ask: what is agile about about applying the SOLID principles? I’ll come to that when I look at your next few comments:

    People that say things like this have just never written a heck of a lot of code. Because what they’re doing is spending an enormous amount of time writing a lot of extra code, a lot of verbiage, a lot of files, and a million little classes that don’t do anything and thousands of little interface classes and a lot of robustness to make each of these classes individually armed to go out into the world alone and do things, and you’re not going to need it. You’re spending a lot of time in advance writing code that is just not going to be relevant, it’s not going to be important. It could, theoretically, protect you against things, but, how about waiting until those things happen before you protect yourself against them?

    This is the big mistake you are making: you are telling one of the fathers of Agile design to adhere to YAGNI, and you don’t realise that while you accuse him of advocating the application of the design principles in a Big Design Up Front(BDUF) fashion, you are unaware that his key message is that:

    ...agile developers do not apply [the] principles and patterns [of s/w design] to a big, up-front design. Rather, they are applied from iteration to iteration in an attempt to keep the code, and the design it embodies, clean.

    And again:

    Agile teams apply principles only to solve [design] smells; they don’t apply principles when there are no smells. It would be a mistake to unconditionally conform to a principle just because it is a principle. The principles are there to help us eliminate bad smells. They are not a perfume to be liberally scattered all over the system. Over-conformance to the principles leads to the design smell of needless complexity.

    Of the OCP, which is the most important of the principles, and from which the others are derived, Martin says that

    In general, no matter how “closed” a module is, there will always be some kind of change against which it is not closed. ...

    Since closure cannot be complete, it must be strategic. That is, the designer must choose the kinds of changes against which to close the design, must guess at the kinds of changes that are most likely, and then construct abstractions to protect against those changes. ...

    conforming to OCP is expensive. It takes development time and effort to create the appropriate abstractions. Those abstractions also increase the complexity of the software design. There is a limit to the amount of abstraction that the developers can afford. Clearly, we want to limit the application of OCP to changes that are likely.

    How do we know which changes are likely? We do the appropriate research, we ask the appropriate questions, and we use our experience and common sense. And after all that, we wait until the changes happen! ...

    You read that right! What you are recommending is exactly what he advocates:

    “Fool me once, shame on you. Fool me twice, shame on me.” This is a powerful attitude in software design. To keep from loading our software with needless complexity, we may permit ourselves to be fooled once. This means that we initially write our code expecting it not to change. When a change occurs, we implement the abstractions that protect us from future changes of that kind. In short, we take the first bullet and then make sure that we are protected from any more bullets coming from that particular gun.

  84. Avatar
    dhui 1 day later:

    @Chris 2: The Code and The TESTs test each other.

  85. Avatar
    Pau Sanchez 1 day later:

    I think quality is key! I also think that in order to live from a product, and get market share, you can’t obsess on quality, you should be delivering versions over time (although of course, you don’t want to deliver a version with bugs or crashes).

    Probably there should be always sort of balance between quality and quantity, but I agree that quality matters a lot, and as you said, over time it pays it’s dividends ;)

  86. Avatar
    kirlich 1 day later:

    I would put it this way:

    Let’s suppose you have a system of a high quality. Then you have some requirement for that system that need to be addressed. You have two choices here:

    1. Implement it as fast as you can to please your users. Don’t care about quality of design, just about how quick your response to the requirements are.

    2. Implement it a bit slower but in TDD fashion (TDD != just tests, or as Monti pointed out TDD is a design activity). So do care about design quality and tests.

    From user point of view it’s clear that you should choose (1) The only case when it makes sense for you as a developer to chose (1) is if that is the last change you’ll ever make, which sure is not. An here is why:

    Suppose that after you’re done, another requirement, that is somehow related to previous one, comes in. Again you have the same two choices as in previous case. But the difference now is that you don’t have the high quality system (which you traded for speed) anymore. So, since this new requirement is related to the previous one which is not well designed, it’s likely that it will be harder to adapt it to new changes, as opposed with well designed system. Essentially what you have done when responding to the first requirement fast, apart from trading quality for speed, you stole the time from the next related requirement. Suddenly choice (1) is not so fast anymore, and time accumulates as you keep choosing it, thus your response time is getting slower and slower. By sticking to (2), that time is relatively constant. So you end up with faster response time, better quality/design, and you have “the button” that Uncle Bob mentioned.

    Now which one you choose?

  87. Avatar
    craig 1 day later:

    I’ve pretty much given up on Joel. Rarely does he say something intelligent about software development anymore. I think you’ve hit the nail on the head about how he is now a business person and no longer a developer.

  88. Avatar
    Paul W. Homer 1 day later:

    If quality really mattered, Bill Gates wouldn’t be one of the richest men in the world.

    As techies, we love quality and often believe that it is the most significant quality, but in the world around us “good-enough” is often the baseline. Things just need to work well enough, to get the job done. You don’t need a Rolls Royce to get to work, or 100% guaranteed connection to ensure your email arrives. Quality is a noble goal, but in many ways it’s become strangely anti-capitalist. Competition drives down quality, it’s a Walmart effect of some kind. Sadly, we’ve moved into a period of cheap and disposable goods, which has obviously effected software too (although I think software got there first).

    Paul.

  89. Avatar
    Tim Ottinger 1 day later:

    I’ve never spent any time at a shop where they lost productivity because of quality. I’ve been at plenty where productivity was in the toilet because of the lack of quality. In the face of that, how does anyone say that quality is unimportant?

    Unless, of course, they only work on their own code, so it’s other people suffering from their mistakes and not vice-versa.

  90. Avatar
    Krishna Kumar 1 day later:

    I think the root cause of this dispute is that you and Joel inhabit different worlds. While he is into product development, you are into consulting. So, he is more concerned with faster releases and less into adhering strictly to design & test considerations.

    But remember, Joel hires developers of the highest calibre (you can read about his hiring process on his website), so the typical code that they produce is already of very high quality right out of the gate. So typical problems that you may see with less capable organizations would not be there with FogCreek.

  91. Avatar
    Jason Smith 2 days later:

    Interesting timing … I’ve been trimming the fat from a (company internal) blog post that directly relates to this very issue.

    Various studies suggest between 60-95% of software development costs are incurred post initial product delivery. Up to 60-80% of that cost is spent enhancing product (as opposed to defect remediation). In other words, well over half of your development dollars are spent trying to change software you already delivered.

    It seems to me, from a purely dollars and cents standpoint, it makes sense to write your code from a change friendly perspective (Your customers still want version 2.0 just as fast, right?). Anything else simply begs the scenario Joel railed at in an early blog of his own.

    Change is the very sweet-spot TDD and SOLID principals are pointed at.

  92. Avatar
    Chris 2 days later:

    “I think the root cause of this dispute is that you and Joel inhabit different worlds. While he is into product development, you are into consulting. So, he is more concerned with faster releases and less into adhering strictly to design & test considerations.”

    I agree. Jeff and Joel run small, self-funded startups, run by (and largely for) programmers, focused on producing web or shrinkwrap software directly to customers. I don’t know what sort of business the people participating in this discussion are in, but from comments like the one I quoted above lead me to believe that some of the folks here are work in much larger organizations where their project (or programming in general) is just a small part of the larger scheme of things, or in consulting shops that get their direction from a customer who’s paying them to write code. This may account for some of the very different views on things like SOLID and TDD.

    For instance, SOLID seem to emphasize modularity quite a bit. The ability to change or rip out any portion of your code in response to some external directive makes a lot of sense in a context where the developers don’t have control over the requirements for or future development direction of the software.

    Jeff and Joel, on the other hand, have much more control over the products they’re writing. They still respond to market forces and customer needs, of course, but they’re the ones who make the decision of which direction to go and what is going in the product. There’s not nearly as much incentive to modularize everywhere. They can concentrate their modularity efforts in areas they plan to change in the future.

  93. Avatar
    Brett L. Schuchert 2 days later:
    Krishna Kumar 1 day later:
    ...so the typical code that they produce is already of very high quality right out of the gate…

    Even if this is true (and I don’t accept that axiom), things change . Requirements, understanding, business needs… When this happens, software will need to change. Even so-called “highest calibre” individuals producing initially high-quality code will have problems without support for change.

    Some amount of automated support is definitely a boon to address change. This can be in the form of unit tests, acceptance tests, smoke tests, load tests, integration tests, ... However, for any system of any complexity, lack of automation leads to an increasing cost to release (release debt?) – or releases with more and more bugs.

    TDD is one way (and a very good one if not done badly) to achieve that support structure. It is not enough. TDD is not an either-or choice with, say, acceptance tests. They accomplish different goals.

  94. Avatar
    Dagfinn Reiersøl 2 days later:

    Jeff and Joel, on the other hand, have much more control over the products they’re writing. They still respond to market forces and customer needs, of course, but they’re the ones who make the decision of which direction to go and what is going in the product. There’s not nearly as much incentive to modularize everywhere. They can concentrate their modularity efforts in areas they plan to change in the future.

    I’ve been involved in several startups, and my impression is the opposite. A startup that ignores their customers’ needs will go bankrupt. And there is no way to know those needs with any precision before implementation, so there really is no such thing as “control over requirements”. When the users get their hands on working software, they discover what they really want. A large organization has the same problem in principle, but will at least survive if a project or two isn’t agile enough.

  95. Avatar
    Schneider 2 days later:

    The business/mangers don’t not care about code quality, just the schedule and functionality…

    I try to slap it out quickly, then give me time to re factor/clean-it-up, then the code should be ready for the next last minute requirements due to poor planning…

    The more experienced the developer/s the quicker this cycle can be.

    Schneider

  96. Avatar
    JD Conley 2 days later:

    I actually wrote about something similar recently, but more on the side of “worse code is sometimes better”. Weird.

    http://www.jdconley.com/blog/archive/2009/01/26/put-down-the-abstract-factory-and-get-something-done.aspx

  97. Avatar
    unclebob 2 days later:

    Chris 2 1 day later:

    So who test the TEST cases?

    When you say something twice, in two different ways, you are much less likely make an error. So, the code tests the tests, and the tests test the code.

    This is the same technique that accountants use to protect themselves from error. They say everything twice, once as a debit, and once as a credit. These entries follow separate mathematical pathways until they yield a zero on the balance sheet. It is possible that two complementary errors could be made, but it’s highly unlikely.

  98. Avatar
    Chris 2 2 days later:

    “I’ve been involved in several startups, and my impression is the opposite. A startup that ignores their customers’ needs will go bankrupt. And there is no way to know those needs with any precision before implementation, so there really is no such thing as “control over requirements”. When the users get their hands on working software, they discover what they really want. A large organization has the same problem in principle, but will at least survive if a project or two isn’t agile enough.”

    True.

    TDD has become to commercialized that they focus too much on the quality of the code and forgot what their customer/users want.

  99. Avatar
    Chris 2 2 days later:

    @dhui: Writing tests is also coding in C#/VB which, most likely, will contain bugs too. And, writing a wrong test code that doesn’t fail will obviously pass unit testing.

    So again, who validates these tests?

  100. Avatar
    dhui 2 days later:

    @Chris 2: The wrong code passing the wrong test is possible, but highly unlikely. If someone always do this, he need to change professions.

  101. Avatar
    Chris 2 2 days later:

    @unclebob: Accountants doesn’t have QA. And coding “twice” is expensive.

  102. Avatar
    Chris 2 2 days later:

    @dhui: That is why it is called a “bug”. So are you saying that you write 100% bug-free tests?

  103. Avatar
    Chris Wash 2 days later:
    @Chris 2

    So again, who validates these tests?

    Suggest you do some reading on the Scientific Method before you get too deep down that rabbit hole. From Wikipedia http://en.wikipedia.org/wiki/Scientific_method:

    Note that this method can never absolutely verify (prove the truth of) 2. It can only falsify 2.[7] (This is what Einstein meant when he said “No amount of experimentation can ever prove me right; a single experiment can prove me wrong.”[8])

    All tests and experiments could contain Type I or Type II errors. Your assumptions can only be based on that which has convergent validity and is consistent both empirically and logically.

    The more tests you have telling you the same thing, the more consistency and validity they have. Any one logical error will expose a systematic inconsistency.

  104. Avatar
    dhui 2 days later:

    @Chris 2: TDD is not a way to get 100% bug-free tests, it’s the best and fastest way to get high-quality product. So do you know some other way to get 100% bug-free tests? Or does such a way really exist ? In practical sense, I think TDD is the best.

  105. Avatar
    Chris Wash 2 days later:

    @Chris 2 Also, see this section from Pragmatic Unit Testing:

    Spring the Trap – If you’re not sure that a test is written correctly, the easiest thing to do is to “spring the trap”: cause the production code to exhibit the very bug you’re trying to detect, and verify that the test fails as expected.

  106. Avatar
    Jeff L. 2 days later:

    @Chris 2> ‘And coding “twice” is expensive.’

    Yeah, why would you do that? I wouldn’t. Mostly I use TDD to enable refactoring, so that I write a boatload less production code (and test code) than I otherwise would have. I’ve seen good-sized, “typical” (i.e. poor quality) systems shrunk to 1/3 original size by virtue of adding tests and refactoring, and it didn’t surprise me one bit. And the cool part is that I end up with this side effect that the code is really well-tested and documented.

    In contrast, I’m dealing with a “brilliant” system right now that was developed by people too smart to spend all that effort on doing TDD right. Four or so years in, and >1 million lines of code later, everything takes 5 to 10 times longer than it should, and everyone fears changing the code. Half the time is spent just understanding the impact to even the smallest changes.

    “TDD has become to commercialized that they focus too much on the quality of the code and forgot what their customer/users want.”

    I’m sure that’s happened somewhere, but a) it’s got nothing to do with TDD being “to [sic] commercialized,” b) it’s not typical, and c) once you start criticizing something because of the people who do it poorly, you’re just trying to make yourself feel better about not doing it.

  107. Avatar
    unclebob 3 days later:

    Chris 2 2 days later:

    @unclebob: Accountants doesn’t have QA. And coding “twice” is expensive.

    Codinq twice is, in fact, rather inexpensive when compared to debugging. If coding twice can eliminate 50% of your debugging time (a vast underestimate) then it’s already paid for itself.

    Yes, accountants don’t have QA. Have you asked yourself why? Could it be because the dual entry bookkeeping practice keeps them from making so many errors?

    As you probably know I am the prime maintainer of FitNesse. I release it a few times per year. It’s 50K lines of code. I have no QA. The QA cycle is to run the 90 second script that executes all the tests. If they pass, I ship. Despite thousands of users I have a very small bug list which you can see here scattered amongst the new features and stories.

  108. Avatar
    Esko Luontola 3 days later:

    The test code is also often very straightforward, so making mistakes because of the complexity of the code is very rare. A typical test has three parts:

    1. Initialize the system under test (SUT). In unit tests the SUT is an object or a couple of closely related objects.

    2. Perform some action on the SUT.

    3. Check that the results are what expected. Often this is done by asserting what is the expected value and comparing it to the actual value in the SUT.

    On the other hand, the production code has loops, conditions, mutable variables etc. which makes it more complex and very much different from the test code, even though both the production and the test code state the same intention. So you might have one complex algorithm in the production code, and many simple tests for that algorithm.

    This means that:

    - You state the same intention in two very different ways, so if you make an error in either one of them, you will find it out.

    - The test code is very simple compared to the production code, so the probability of making errors in test code is lower.

    - Also because most of the test code is very simple, writing it is fast, so it does not slow you down. In the time that it takes for you to think about the requirements and what to do next, in the same time you can also write down the requirements as a test case. And when you have written the requirements as tests, they will also serve as detailed documentation of the requirements, when you or others later work on the same code. So you will not face situations where you do not know why some code exists – if you see such production code, just delete it and see which tests fail (if no tests fail, the code was not needed anyways).

    When I started doing TDD, I measured how many lines of production code per hour I produced, when including debugging time etc. Both before and after I started using TDD, I wrote in average about 20 lines per hour. So TDD did not slow me down. Instead it made coding more fun, because (1) I very rarely need to debug the code and look for hard-to-find bugs, and (2) I have all the time a sense of accomplishment and progress when I get a new test to pass every couple of minutes.

    Of course there are some things that are not noticed by TDD:

    - When there is a corner case that did not come into your mind, then by definition you have not written a test for it. But later on, when you notice that corner case (perhaps because of a bug), then you can write a test case for it and the same bug will never again happen.

    - When the requirements are wrong, or you understood them in a wrong way, then the intention of both your tests and your code will be wrong. But when the requirements change (whether they were understood right or wrong), changing the system is not too hard, because of using TDD you have a large regression test suite and your code is decoupled (TDD forces you to write decoupled code, because otherwise you could not test the code).

    To test the requirements, other methods are needed, for example close collaboration with the customer and acceptance tests. (Myself I do user interface design, and I use paper prototypes and some user interface testing methods (with and without users) to test the functional requirements of the system.)

  109. Avatar
    raveman 3 days later:

    on related note

    http://stackoverflow.com/questions/507077/testing-a-test

  110. Avatar
    Sebastian Kübeck 3 days later:

    Bob! It’s great how you defend your position but that’s a battle you cannot win with logical arguing (although your arguments make perfect sense by the way).

    Remember Dilbert’s famous words of wisdom:

    Never argue with an idiot—they drag you down to their level, then beat you with experience.

  111. Avatar
    DAR 3 days later:

    Thanks for setting the record straight UncleBob. I was just about to try to post a comment to Joel’s blog setting the record straight (as if he really cared about the facts, given that he’s already made his mind up on the subject – and based on nothing but his own inexperience with TDD) when I came upon your post. You said everything I wanted to, and much more eloquently and authoritatively.

    BTW, apparently Joel doesn’t allow comments on his blog. I guess it’s better for your career to try to show off how good a pundit you are by loudly proclaiming an opinionated Gospel According To Me and being so over-confident of your own brilliance that you’re not interested in any evidence to the contrary.

  112. Avatar
    Chris 3 days later:

    “BTW, apparently Joel doesn’t allow comments on his blog.”

    He has discussion forums instead.

  113. Avatar
    Chris Riesbeck 3 days later:

    Another part of the answer to “who tests the test cases?”—running the tests before writing the code to pass them. I ask students why anyone would possibly want to do that, when you know the tests will fail. They get it pretty quickly, but they have to be told it’s not a typo first.

  114. Avatar
    Codernaut 3 days later:

    Get over yourselves.

  115. Avatar
    David 3 days later:

    “Accountants doesn’t have QA. “

    Isn’t that what auditors do? (Theoretically at least.)

  116. Avatar
    Philip Schwarz 3 days later:

    @Chris

    Atwood: Yeah, it’s a balancing act. And I don’t want to come out and say I’m against [unit] testing, because I’m really not. Anything that improves quality is good. But there’s multiple axes you’re working on here; quality is just one axis. And I find, sadly, to be completely honest with everybody listening, quality really doesn’t matter that much, in the big scheme of things

    In his first edition of Extreme Programming Explained – Embrace Change Kent Beck said:

    In this model [of software development], there are four [control] variables : Cost, Time, Quality, Scope.
    The way the software development game is played in this model is that external forces (customers, managers) get to pick the values of any three of the variables. The development team gets to pick the resultant value of the fourth variable.

    but he believed the following:

    Quality is another strange variable. Often, by insisting on better quality you can get projects done sooner, or you can get more done in a given amount of time. This happened to me when I started writing unit tests. As soon as I had my tests, I had so much more confidence in my code that I wrote faster, without stress. I could clean up my system more easily, which made further development easier. I’ve also seen this happen with teams. As soon as they start testing, or as soon as they agree on coding standards, they start going faster.
    There is a strange relationship between internal and external quality. External quality is quality as measured by the customer. Internal quality is quality as measured by the programmers. Temporarily sacrificing internal quality to reduce time to market in hopes that external quality won’t suffer too much is a tempting short-term play. And you can often get away with making a mess for a matter of weeks or months. Eventually, though, internal quality problems will catch up with you and make your software prohibitively expensive to maintain, or unable to reach a competitive level of external quality.

    In the second edition of the book, Beck changed his mind about quality being a control variable:

    Sacrificing quality is not effective as a means of control. Quality is not a control variable. Projects don’t go faster by accepting lower quality. They don’t go slower by demanding higher quality. Pushing quality higher often results in faster delivery; while lowering quality standards often results in later, less predictable delivery.
    One of my biggest surprises since the first edition of Extreme Programming Explained was released has been just how far teams have been able to push quality as measured in defects, design quality, and the experience of development. Each increase in quality leads to improvements in other desirable project properties, like productivity and effectiveness, as well. There is no apparent limit to the benefits of quality, only limits in our ability to understand how to achieve higher quality.
  117. Avatar
    Philip Schwarz 3 days later:

    @Chris

    Atwood: Yeah, it’s a balancing act. And I don’t want to come out and say I’m against [unit] testing, because I’m really not. Anything that improves quality is good. But there’s multiple axes you’re working on here; quality is just one axis. And I find, sadly, to be completely honest with everybody listening, quality really doesn’t matter that much, in the big scheme of things

    In his first edition of Extreme Programming Explained – Embrace Change Kent Beck said:

    In this model [of software development], there are four [control] variables : Cost, Time, Quality, Scope.
    The way the software development game is played in this model is that external forces (customers, managers) get to pick the values of any three of the variables. The development team gets to pick the resultant value of the fourth variable.

    but he believed the following:

    Quality is another strange variable. Often, by insisting on better quality you can get projects done sooner, or you can get more done in a given amount of time. This happened to me when I started writing unit tests. As soon as I had my tests, I had so much more confidence in my code that I wrote faster, without stress. I could clean up my system more easily, which made further development easier. I’ve also seen this happen with teams. As soon as they start testing, or as soon as they agree on coding standards, they start going faster.
    There is a strange relationship between internal and external quality. External quality is quality as measured by the customer. Internal quality is quality as measured by the programmers. Temporarily sacrificing internal quality to reduce time to market in hopes that external quality won’t suffer too much is a tempting short-term play. And you can often get away with making a mess for a matter of weeks or months. Eventually, though, internal quality problems will catch up with you and make your software prohibitively expensive to maintain, or unable to reach a competitive level of external quality.

    In the second edition of the book, Beck changed his mind about quality being a control variable:

    Sacrificing quality is not effective as a means of control. Quality is not a control variable. Projects don’t go faster by accepting lower quality. They don’t go slower by demanding higher quality. Pushing quality higher often results in faster delivery; while lowering quality standards often results in later, less predictable delivery.
    One of my biggest surprises since the first edition of Extreme Programming Explained was released has been just how far teams have been able to push quality as measured in defects, design quality, and the experience of development. Each increase in quality leads to improvements in other desirable project properties, like productivity and effectiveness, as well. There is no apparent limit to the benefits of quality, only limits in our ability to understand how to achieve higher quality.
  118. Avatar
    Used motorhomes 4 days later:

    I think it’s Spolsky’s suggestion that people like Robert Martin don’t write much code which bugs Martin the most, and I’m not surprised. Listening to the podcast, I didn’t hear anyone actually say “Quality doesn’t matter”. Maybe I didn’t listen long enough, but I wonder if it’s actually Martin’s spin on what’s been said. Robert Martin is a fervent promoter of code quality.

  119. Avatar
    web development 4 days later:

    So finally we all can take from this that “quality matters”

  120. Avatar
    Steve Dunn 4 days later:

    I’ve never really read or listened to anything from Joel – just the following debates over his opinions.

    “Quality” is a very overloaded word (more overloaded than Agile!).

    “Quality” to a manager means working software. To a developer it means (or at least should mean) well written software.

    There’s lots of instances where working software is poorly written, and I’m sure there’s instances where faulty software has been written well (even when it’s written in an Agile way!).

    IMO, I would say that, overall, concentrating on “Software” quality results in “Product” quality. Managers (most) recognise just one facet of quality – the “Product” quality. Much the same as I recognise a car that’s reliable and smooth whereas would recognise the same car uses a specific way to manufacture pistons and valves. Then again, I wouldn’t go shouting my mouth off on the Automotive Engineer Monthly Podcast saying that any old pistons and valves will do!

  121. Avatar
    Steve Dunn 4 days later:

    I’ve never really read or listened to anything from Joel – just the following debates over his opinions.

    “Quality” is a very overloaded word (more overloaded than Agile!).

    “Quality” to a manager means working software. To a developer it means (or at least should mean) well written software.

    There’s lots of instances where working software is poorly written, and I’m sure there’s instances where faulty software has been written well (even when it’s written in an Agile way!).

    IMO, I would say that, overall, concentrating on “Software” quality results in “Product” quality. Managers (most) recognise just one facet of quality – the “Product” quality. Much the same as I recognise a car that’s reliable and smooth whereas a auto engineer would recognise that the same car uses pistons and valves that are manufactured a specific way.

    Then again, I wouldn’t go shouting my mouth off on the Automotive Engineer Monthly Podcast saying that any old pistons and valves will do!

  122. Avatar
    Brett L. Schuchert 4 days later:
    Barry Kelly wrote:
    (I don’t know if your tests have caught it, but the user experience for posting comments from within Firefox 3 is not good – it’s very susceptible to duplicates!)

    I’m not sure who “your” refers to in your first sentence. You do realize this is not an OM product. The blog is an “OM product” but the blog software is something we (and a lot of organizations) use.

  123. Avatar
    Richard 4 days later:

    Hi Uncle Bob

    Just thought I’d voice my support for your position. Some of the people who commented on this thread clearly did not listen to the same podcast I did. Now there seems to be a bit of damage control going on by Joel. He can deny it and twist your words and his all he wants. He ends up sounding like John Dvorak more and more each day.

  124. Avatar
    Keith Ray 4 days later:

    BTW: Accountants do have occasional “QA” – they are called “auditors”.

  125. Avatar
    architecture astronaut 5 days later:

    Joel is a businessman who created a business (apparently a very successful business) around the idea that his company hired only the best and brightest programmers in the world. He popularized the phrase “Rock star programmer” in his books and blog posts about how to hire Fogbugz caliber developers. He’s made a small fortune around this premise.

    He can not afford to accept a development methodology if he and his team of rock star programmers don’t understand it. It undermines the premise on which his company was founded and the catalysis for his internet celebrity. His opinion is always going to be that the best way to write code is whatever approach his team takes. Anything more complex is the work “architecture astronauts”, anything less complex is the work the non-rock stars who can’t grok programming.

  126. Avatar
    Kyle Szklenski 5 days later:

    I’d just like to respond to the “Who tests the tests?” questions. Bob responded to this well, but I’d like to emphasize the fact that YOU test the tests. When a test breaks, you either realize your design didn’t take something into account, you realize there’s a bug in the test, or you realize there’s a bug in your code.

    Having said that, if the code DOESN’T break and your tests didn’t cover the full gambit of scenarios that you were likely to face, I’d chalk that up to a learning experience. It’s those times when you know there’s an issue, but that has not been accounted for by tests, that you really learn how to be a programmer and debugger. I still think debugging is one of the most fundamental skills a programmer can have, but frankly, if you’re spending time debugging your code and not actually writing your code, then you’re not a programmer. There’s no question about that. That’s not to say that if you don’t write tests first (or last) that you’re not a programmer – rather, not writing tests first (or last, even) makes you irresponsible and foolish.

  127. Avatar
    yorba 6 days later:

    tdd might be sterile procedure

    but it also might be the overuse of antibiotics

  128. Avatar
    AndrewSeven 6 days later:

    Any suggestions on how I can effectively communicate that build-and-fix is not actually an Agile methodology?

  129. Avatar
    Philip Schwarz 7 days later:

    @AndrewSeven

    You could use Fowler’s excellent article Is Design Dead? to explain that code-and-fix was the common, but disastrous, form of evolutionary design, whereas XP is one of the Agile methodologies that made evolutionary design a viable strategy again.

  130. Avatar
    Jeff Anderson 7 days later:

    I’m working for an organization in trying to get them to adopt TDD. This week there is a whole bunch of buzz around “industry experts” saying that TDD is a waste of time.

    Glad to finally know where all of this garbage is coming from. Great response uncle Bob, and like you, I have to fight to keep my technical chops, they can disappear so fast.

    Some “business wonks” do still get it, and listen to the advice you give them.

    Regards Jeff

  131. Avatar
    Andrew Wall 8 days later:

    @AndrewSeven One method I use is to talk about Waterfall/Code-n-fix/XP as three corners of a triangle: http://groups.google.co.uk/group/comp.software-eng/browse_thread/thread/52b0dbd2a208df35?hl=en&;ie=UTF-8&q=phlip+methodology+triangle#4a9d73a126c3231c

    See phlip’s description

  132. Avatar
    Kirk Wylie 8 days later:

    Hi, Uncle Bob,

    You might be interested in My comments on the current contraversy, as well as Jurgen Appelo’s comments about a similar issue.

    This discussion has actually caused some problems for those of us (guilty!) who Believe in agile methodologies, but who believe that the current Authority First discussions devalue the general commentary.

    I hope your readership values our opinion (coming from the Pragmatic side of the agile-vs-Agile spectrum).

    Kirk Wylie

  133. Avatar
    mP 8 days later:

    Joel will say anything to get more publicity that attracts traffic in some form to one of his web presences – be it to JoelOnSoftware – so he can sell his job ads and so on. Just about every discussion ends up with a plug for FogBugz in some form.

    It doesnt really matter who is right or wrong in this case – becaue he has achieved his goal. What is important is did Joel get some eyeballs to one of his sites so he could advertise ?

  134. Avatar
    mikeman 10 days later:

    Correct me if I’m wrong, but it seems that Spolsky expects from the SOLID principles to be some kind of hard-and-fast rules, that you can learn from a presentation in half and hour, and go blindly implementing them.

    I’m not a terribly experienced coder, but I think all of the principles need critical thinking to be useful. Take SRP for example. We all know that the words ‘single’ and ‘one’ are relative. A house can be said that is a ‘single’ object. But you can divide it into rooms. And you can divide them into furnitures. And you can divide them into pieces of wood,fibers, molecules,atoms,etc.

    It all depends how you group things, and what the granularity of your system should be. That means that, when implementing SRP, one must know to keep the correct balance for the system being implemented and where to stop. How does one learn that? Experience, and lots of coding, that’s how. There’s really no shortcut here.

  135. Avatar
    Philip Schwarz 10 days later:

    @Joel

    You said:

    Listening to this interview on Hanselminutes, there seemed to be an intense obsession with creating lots and lots of little classes that all did one particular thing…One of the SOLID principles, and I’m totally butchering this, but, one of the principles was that you shouldn’t have two things in the same class that would be changed for a different reason [PDF].

    In the next sentence you really did butcher the SRP by suggesting that the reasons for change are changes in the values of fields:

    Like, you don’t want to have an Employee class, because it’s got his name which might get changed if he gets married, and it has his salary, which might get changed if he gets a raise. Those have to be two separate classes, because they get changed under different circumstances. And you wind up with millions of tiny little classes, like the EmployeeSalary class, and it’s just… (laughs) idiotic! You can’t build software that way!

    But what Uncle Bob said in the Hanselminutes interview is that the reasons for change are changes in the logic associated with the fields:

    Take a Payroll application, if there is an employee class in that payroll application, you could imagine that it might have a message to calculate pay, or perhaps another method to create a report, perhaps another method in the employee object for…save me to the database .

    What is unfortunate about these three methods existing in the same class, is that they all have completely different reasons to change.

    The calculate pay will change if the accountants decide on new way of calculating pay, the report generator will change if the people who consume the reports want the format of the report to change, the save function will change if the DBAs decide that we need to change the database schema, that means that this one class has three different reasons to change, and there are probably many other classes that depend upon it, and so as it changes, these depending classes also suffer through change, they’ll be affected or impacted by these changes.

    The SRP simply says: find one reason to change, and take everything else out of the class, so that you separate the things that change for different reasons, and you group together the things that change for the same reason.

    Regarding your objection to ‘millions of tiny little classes’, here are some wise words from Jeff Langr (in Clean Code, Uncle Bob’s latest book):

    ...many developers fear that a large number of small, single-purpose classes makes it more difficult to understand the bigger picture. They are concerned that they must navigate from class to class in order to figure out how a larger piece of work gets accomplished.

    However, a system with many small classes has no more moving parts than a system with a few large classes. There is just as much to learn in the system with a few large classes. So the question is: Do you want your tools organized into toolboxes with many small drawers each containing well-defined and well-labeled components? Or do you want a few drawers that you just toss everything into?

    We want our systems to be composed of many small classes, not a few large ones. Each small class encapsulates a single responsibility, has a single reason to change, and collaborates with a few others to achieve the desired system behaviors.
  136. Avatar
    Practicality 11 days later:

    Insults. A whole pile of insults.

    While they may have insulted a principle that you value, you, in turn, directly insulted Jeff and Joel.

    You could have disagreed without starting a flame war. Why make it personal?

  137. Avatar
    Rob 12 days later:

    Bob -

    You said “this is a symptom of someone who has focussed on business and lost his technical chops.” And quite frankly, that scares me.

    Admittedly I haven’t worked at a product-oriented business; my experience in software development can be summed up in two groups: open-source projects and service-oriented agency work. If the entire world were built on open-source software, then scorning someone for losing his technical chops would probably be a valid way to judge someone’s fitness for survival in the software development landscape.

    But, at least in the agency/services business, everything has to come from business needs. Everything we do is driven by our ability to be responsive to the customer, and that’s how we succeed. Now that’s not to say that we don’t adapt processes and techniques to ensure that we’re going to be successful – but I’m not going to institute scrum in a project that’ll take two staff-months to complete within a team of four people.

    There has to be a balance, but at the end of the day, it’s the business – not our technical chops – that pay the bills.

  138. Avatar
    Rob 12 days later:

    Bob -

    You said “this is a symptom of someone who has focussed on business and lost his technical chops.” And quite frankly, that scares me.

    Admittedly I haven’t worked at a product-oriented business; my experience in software development can be summed up in two groups: open-source projects and service-oriented agency work. If the entire world were built on open-source software, then scorning someone for losing his technical chops would probably be a valid way to judge someone’s fitness for survival in the software development landscape.

    But, at least in the agency/services business, everything has to come from business needs. Everything we do is driven by our ability to be responsive to the customer, and that’s how we succeed. Now that’s not to say that we don’t adapt processes and techniques to ensure that we’re going to be successful – but I’m not going to institute scrum in a project that’ll take two staff-months to complete within a team of four people.

  139. Avatar
    Rob 12 days later:

    Bugger, I must have missed the last part of that (your page mis-fired last time) -

    There’s got to be a balance between technical correctness and business needs. But at the end of the day, it’s the business that pays the bills.

  140. Avatar
    Stephen Rylander 12 days later:

    I am wearing a “Code Clean” band on my wrist. I truly believe TDD based design and development improves quality. But I also used to respect Joel. This is a sad day.

  141. Avatar
    Tim Ottinger 12 days later:

    Why is everyone saying that the business need is for bad software, and that working software is a disservice to the business? I’m so lost here.

    I think that there is no basic tenet of business that the code must be crap, must be increasingly bad crap, and must remain crap forever. I don’t know how that is good business.

    I understand choosing to not have the most exquisite, elaborate, intricate, gold-plated software. All the exquisite gold-plated stuff I’ve ever seen/writen has been a wad of crap on a stick. But that’s not what we’re talking about. We’re not even talking about someone’s personal preferences.

    Good software (passes tests, internally clean, minimal) is not something that disables business. If it is, then all those IT shops need to be closed now, and all the competent developers must be let go. If good software is bad business, then there’s no reason to ever do programming again.

    As far as “Believe” and “Faith” are concerned, those words are easily replaced with “trust”. I trust that my TDD code is going to be better than my non-TDD code, and I trust it because it has always been so in the past not because someone told me to. There need be no blindness in faith. There does have to be some honest testing of the waters.

    I think the straw men are piled high enough for us to start a nice bonfire. Can we drop the nonsense and talk about whether quality helps us deliver more, better software and whether it’s true as Deming said that quality is free (and the lack of it is expensive).

  142. Avatar
    Lev 13 days later:
    There is no executive summary that explains the SOLID principles well enough that you can comment on them critically.
    One can comment critically on the “Employee” class example, though. Frankly, it IS bureaucratic. So either it’s a bad example and you have mispresented your principles, or Joel is right.

    Since no one has the authority to define OO, I’ll even venture to say that “Employee” is not OO.

  143. Avatar
    purpleblob 23 days later:

    Wow ! What a lot of hot air. So let’s add to it … ;-)

    I do think it was unfair of Joel to make a comment such as “they all sounded to me like extremely bureaucratic programming that came from the mind of somebody that has not written a lot of code” with regards Bob’s SOLID principles. This is a little bit of a personal attack and not really called for.

    With regards their comments on unit testing – hey if their way of working works for them then who are we to mock them. If your way works best for you then use it and stop worrying about what others say about your way of working.

    At the end of the day users, our customers, are generally more interested on whether a product works than what level of testing or what “quality” metrics have been applied to the code or the architecture used. What matters to the end user is whether they have working piece of software suitable for their needs. Are people really saying that if they knew that software X had no unit tests they wouldn’t touch it ? Ofcourse the Zappa quote in Jeff & Joel’s transcript really says that all far better than me :-)

    Surprising as it may seem, people have been developing successful software for decades without TDD or agile principles and I’m sure many will develop software going forward with or without TDD, agile or other principles. These are all tools, pure and simple – these are not the holy grail of software development – I’ve been around too long and have experienced too many things that were the next great thing in software development. Some things will survive with time and some will fall by the side.

    With regards the religious fever that comes with questioning TDD & unit testing – I’ve seen dreadful code that’s got a high unit test coverage figure – does this mean it’s good quality code ? Of course not! Just because somebody says they do TDD or unit testing doesn’t make them a good programmer and conversely if somebody says they do not do TDD it doesn’t make them a bad programmer.

    Oh and for full disclosure I do write unit tests but having programmed for some twenty odd years I have also written successful programs using assembler, C/C++, Java & C# without a single unit test.

  144. Avatar
    Tomas Varaneckas 25 days 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?

  145. Avatar
    Angsuman Chakraborty about 1 month later:

    I think you are missing the point. Quality of code matters but not to the extent of being the sole driving factor. Business should be the primary driving factor. Most proponents of 100% code coverage do not realize the reducing ratio of benefits versus cost as coverage ratio goes up, often exponentially. You talk about de-coupling tests. It is possible to some extent in most cases but it doesn’t come for free. It costs valuable programmer cycles often going around hoops to implement a simple test which would otherwise take just 5 minutes. So you see there has to be a balancing act.

    I agree with Joel & Jeff on this. It is right time someone highlighted the obvious shortcomings.

  146. Avatar
    Baseball Bats For Sale 5 months later:

    There is always a cost benefit to everything. 100% quality control in a low end market would make a product unprofitable. But, in a high end market quality is a must. As Angusman said it is a balance. But, there will always be purists that say there should be 100% quality control

  147. Avatar
    Cheap Softball Bats 5 months later:

    You can never have 100% quality control. That would be an unrealistic requirement. But, there should be a self regulated quality control done as the work is being done. This will reduce the overall need for generalized quality control parameters implemented after the project is completed

  148. Avatar
    Classic cars 6 months later:

    Very nice article it really catched my own idea of blogging. I really don’t care if how many people are reading my posts as long as I am happy and satisfied of what I want to share to my readers. That’s is why Im not good in writing serious articles, that your acting like your someone who knew something big but actually not. Just being true to your self is the best thing in blogging.

  149. Avatar
    Green Williams 8 months later:

    Well, what do you expect when you get a guy that looks like a nerd (Jeff) and a guy that needs a woman (Joel)- stupid stuff will eventually come out no matter how hard they suppress it.

  150. Avatar
    ed hardy 8 months 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…

  151. Avatar
    Visual C# Kicks 9 months later:

    A bit late, but still can’t believe some people can justify that sort of a position. Without quality (in every sense of the word), things just don’t work/last. Quality comes from the bottom up, no other way around it.

  152. Avatar
    Web design company 9 months later:

    Great article. Thanks.

  153. Avatar
    promotional clothing 10 months later:

    In my view, the basic limit on technical innovation isn’t our collective ability to come up with new things. It’s our ability to absorb them. That means that the field is changing about as fast as most developers can handle things. For most people, taking time off means you slip behind, your instincts and tricks becoming less and less relevant.

  154. Avatar
    kurt cobain wallpaper 10 months later:

    I agree completely with the thoughts, and I wanted to emphasize something you said:

    “I hire people to do that for me so I can keep my technical skills as sharp as possible”

  155. Avatar
    convert mts 10 months later:

    co i dado ,gracis por todos.

  156. Avatar
    sherone 10 months later:

    Reusing or copying code, though in some ways unlawful, I believe is common practice in software development,” said one freelance developer who participated. “Most developers that I come in contact with (including myself) reuse, copy, or even reverse-engineer code to make it work better or to include it in an application that we are programming.

  157. Avatar
    smith 10 months later:

    I haven’t met a developer who wants to hide his/her code,” said one developer. “Developers are proud of their code and want other developers to see its brilliance (and feel proud if others use it). It’s companies and managers who care about copyrighting code

  158. Avatar
    george 10 months later:

    Great writ-up. Thanks for this deeply insight on this matter.

  159. Avatar
    wager 10 months later:

    I think the straw men are piled high enough for us to start a nice bonfire. Can we drop the nonsense and talk about whether quality helps us deliver more, better software and whether it’s true as Deming said that quality is free (and the lack of it is expensive).

  160. Avatar
    wager 10 months later:

    Surprising as it may seem, people have been developing successful software for decades without TDD or agile principles and I’m sure many will develop software going forward with or without TDD, agile or other principles. These are all tools, pure and simple – these are not the holy grail of software development – I’ve been around too long and have experienced too many things that were the next great thing in software development. Some things will survive with time and some will fall by the side.

  161. Avatar
    ring 11 months 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.

  162. Avatar
    jewelry 11 months later:

    Great writ-up. Thanks for this deeply insight on this matter.

  163. Avatar
    http://www.flyingrobin.com/e-cigarette-starter-kits/ 11 months later:

    Great post. Thanks for sharing.

  164. Avatar
    Hosting 11 months later:

    Been a reader for some time now, keep up the great work and hope you have a wonderful new year to come!

    Jenny M K

  165. Avatar
    Wandtattoo 11 months later:

    Great writ-up. Happy new year and best Regards MJ

  166. Avatar
    nicolas 12 months later:

    This is an awesome post, I like quality.

  167. Avatar
    Campervan Hire Australia about 1 year later:

    In our business it is everything.

  168. Avatar
    fotografia ?lubna Bielsko about 1 year 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?

  169. Avatar
    fotografia ?lubna Katowice about 1 year later:

    This is an awesome post, I like quality.

  170. Avatar
    Monoket about 1 year later:

    I Agree, quality matters!

  171. Avatar
    tasche Ipad about 1 year later:

    Whats funny!

  172. Avatar
    mcitp about 1 year later:

    Its good and very much progressive.

  173. Avatar
    ipad apps about 1 year later:

    This does reflect those loaf merchants @ the bankside avenue.

  174. Avatar
    fotograf slubny about 1 year later:

    this is great place!

  175. Avatar
    psycholog online about 1 year later:

    i love being here

  176. Avatar
    brandaver about 1 year later:

    studying noe-developed ones. Fortunately, the operating system of my PC is mac and this portable device runs well on it.

  177. Avatar
    sham about 1 year later:

    Its great aritcle. I was actually searching for the same information. thanks for the sharing.

  178. Avatar
    maddy about 1 year 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.

  179. Avatar
    best rated dishwasher about 1 year later:

    I’m pretty sure he was just joking about how quality doesn’t matter that much.

  180. Avatar
    How to Lose Weight Fast about 1 year later:

    great post this is the vital fact.

  181. Avatar
    Prezent about 1 year later:

    Of course – quality matters

  182. Avatar
    article directory about 1 year later:

    Yes the best quality makers.

  183. Avatar
    Caviar about 1 year later:

    I am delighted to find a great stuff. Thank you

  184. Avatar
    FLV extractor about 1 year later:

    ah ha so what ?

  185. Avatar
    baptist church NY about 1 year later:

    The post is very nicely written and it contains many useful facts. I am happy to find your distinguished way of writing the post. Now you make it easy for me to understand and implement. Thanks for sharing with us.

  186. Avatar
    How to Convert 3GP about 1 year later:

    Great post, very informative. I think a lot of people will find this very useful.

  187. Avatar
    essay about 1 year later:

    as for me quality is matter much more than quantity!

  188. Avatar
    mike about 1 year later:

    Working on the give topic is really a difficult task but your this tutorial made it easy for me to handle it without any problem. If anyone seeking information then this blog is the best place for him as it has quality content for your required information. Thanks for sharing. Gaming

  189. Avatar
    johnbull@hotmail.com about 1 year later:

    I always go with quality over quantity quality

  190. Avatar
    Desentupidora about 1 year later:

    I really don’t care if how many people are reading my posts as long as I am happy and satisfied of what I want to share to my readers. That’s is why Im not good in writing serious articles, that your acting like your someone who knew something big but actually not.

  191. Avatar
    <a href="http://www.overnightpools.com/Pool_Cleaners.htm">pool cleaner</a> about 1 year later:

    Thanks for the info! I’ll be sure to keep it handy!

  192. Avatar
    wegapro about 1 year 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. card reviews

  193. Avatar
    FatCow about 1 year later:

    ya. I agree with you point. No stress need for to maintain quality. Its not matter as you said. Good Voice.

  194. Avatar
    http://netcom4us.com about 1 year later:

    useful information, hope this would be usefull PDF writer

  195. Avatar
    cheap purses about 1 year later:

    you are right, ,i ageww with the jeff

  196. Avatar
    webmarketing about 1 year later:

    I agree completely with the thoughts, and I wanted to emphasize something you said:

    “I hire people to do that for me so I can keep my technical skills as sharp as possible”

    I think it is very important for people to realize that there are too many things out there to try to do them all. Find what you want to get good at, then pay someone to do the other things. Same reason that I pay someone to change the oil in my car.

  197. Avatar
    logo designs about 1 year later:

    Reading the message, I do not even recognize who are here to discuss. I do not think your podcast memory is exactly what I resist, then I will clean the entire 10 minutes, where we had that discussion I am sure that you are misrepresenting the opinion of Jeff. He said the clear weather, "Anything that improves the quality is good." I think you're misrepresenting my views, too. Check the spelling (I have changed a bit 'clearer, but not the sense) and I think you will find that they are not really agree on much.

  198. Avatar
    Web 2.0 Design about 1 year later:

    Superb post. I completely agree – QUALITY DOES MATTER. Well, many thanks for sharing this informative resource. KUDOS :)

  199. Avatar
    animal charms about 1 year later:

    I had gone much.I couldn t judge that I fell in adore with links of london heart bracelets That was one of my big changes. heart bracelet After all, I didn’t like ornaments at all in the launch. Since I fell in dear with links of london Sweetie necklaces , I had realized that an instance of links of london Sweetie rings could bring me much more links of london watch charms

  200. Avatar
    ERP Software for Small Business about 1 year later:

    Quality does matter and software is no exception

  201. Avatar
    Concrete Block Foundation Repair about 1 year later:

    What a great argument, but I think Uncle Bob is correct here.

  202. Avatar
    Annonce moto about 1 year later:

    I agree with you point Thanks for the info!

  203. Avatar
    http://www.freetelecombooks.com/ethernet-passive-optical-networks/ about 1 year later:

    what a great article, this will be usefull

  204. Avatar
    http://www.freetelecombooks.com/ethernet-passive-optical-networks/ about 1 year later:

    what a great article, this will be useful

  205. Avatar
    Petite annonce about 1 year later:

    This is an awesome post, I like quality. thank you

  206. Avatar
    Graphics Designer Middlesex about 1 year later:

    If quality does not matter than no-one buy lee jeans, audi cars, gucci perfumes :) Qualify has it’s own significant which attracts a valuable person and gives huge traffic and sales.

  207. Avatar
    Business Logo about 1 year later:

    This is absolutely authentic

  208. Avatar
    cold storage warehouse about 1 year later:

    It sure is an authentic post….......

  209. Avatar
    Annonce moto about 1 year later:

    I agree with you point.Thank you

  210. Avatar
    aprella about 1 year later:

    Great,..Thanks for share the story ;)

  211. Avatar
    computer repair bury about 1 year later:

    It was a beneficial workout for me to go through your webpage. 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. Thanks for sharing

  212. Avatar
    hosting about 1 year later:

    I fully agree with Ketan about the Joel test. In my experience doing something as simple as having a candidate writing code in front of you can save countless hours of grief and can be much more effective than any certification could ever be.

  213. Avatar
    links london about 1 year later:

    they, however, give off unimaginable faculty. links of london charms The key is how to decide properly. The shape of links of london charms Earrings is connected to one’s face mold. People with triangular charms bracelets face are not apposite to bear long Links Of London Earrings with pendants links of london womens watches while studs in around identity can proffer a substance of coordination. links of london watch uk If you have an oval face, you can erode Links Of London Earrings in any style. cheap links of london rings Please never try too long, too small or too big ones. Round-faced people should links of london rings sale avoid

  214. Avatar
    Court about 1 year later:

    I can go with the example stated by you but truly speaking at the ends its quality that really matters. Exceptions are always there.

  215. Avatar
    blackberry wholesale about 1 year later:

    Don’t really understand it though, but thanks for trying to explain it. Appreciate you

    shedding light into this matter. Keep up your work.

  216. Avatar
    prepaid mobile about 1 year later:

    I think quality is the most important thing in a company, without it you can’t stand a chance.

  217. Avatar
    car shipping rates about 1 year later:

    Again, this is a symptom of someone who has focussed on business and lost his technical chops. Euclid once told a king, “There is no royal road to Geometry.” There is no executive summary that explains the SOLID principles well enough that you can comment on them critically. Great Info

  218. Avatar
    granite sink about 1 year 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

  219. Avatar
    laptops about 1 year later:

    Quality is a must factor for any product. So It’s compulsory thing.

  220. Avatar
    betting bonus uk about 1 year later:

    Thanks for sharing the information. That’s a awesome article you posted. I found the post very useful as well as interesting. I will come back to read some more.

  221. Avatar
    vpn node about 1 year later:

    Happy to see your blog as it is just what I’ve looking for and excited to read all the posts. I am looking forward to another great article from you.

  222. Avatar
    Coach about 1 year later:

    When the users get their hands on working software, they discover what they really want. A large organization has the same problem in principle, but will at least survive if a project or two isn’t agile enough. I’ve been involved in several startups, and my impression is the opposite. A startup that ignores their customers’ needs will go bankrupt. And there is no way to know those needs with any precision before implementation, so there really is no such thing as “control over requirements”.

  223. Avatar
    bilgi about 1 year later:

    Great,..Thanks for share the story ;)

    thanks admin :) good info. add to my archive.
    bilgi blog youtube hosts wordpress temalar?

  224. Avatar
    jones about 1 year later:

    I agree completely with the thoughts, and I wanted to emphasize something you said:

    “I hire people to do that for me so I can keep my technical skills as sharp as possible”

  225. Avatar
    stock market about 1 year later:

    I really loved reading your blog. It was very well authored and easy to understand. Unlike additional blogs I have read which are really not good. I also found your posts very interesting. In fact after reading, I had to go show it to my friend and he enjoyed it as well!

  226. Avatar
    Forbrukslån about 1 year later:

    Nice blog you have!! :)

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

    Quality is compulsory..

  228. Avatar
    Campervan Rental Australia about 1 year later:

    Quality is key

  229. Avatar
    lv handbags on sale about 1 year later:
  230. Avatar
    W2 Tax Forms about 1 year later:

    Quality is must….

  231. Avatar
    Lustige Geschenkideen about 1 year later:

    Whats that for an explanation…quality is very important!

  232. Avatar
    Ben 10 Games about 1 year later:

    I think you cannot compromise on quality. Sooner or later you will be rewarded for maintaining quality.

  233. Avatar
    buy p90x about 1 year later:

    Quality mean good work,and i always do it.and you just have nice and informative topic article,so i didn’t wasted my time to read it,.it is great,Thanks.

  234. Avatar
    Nintento DS Lite Battery about 1 year later:

    as for me quality is matter much more than quantity! Nintento DS Lite Battery

  235. Avatar
    Ayew about 1 year later:

    Quality matters….

  236. Avatar
    Thanks for Sharing about 1 year later:

    Thanks for Sharing This Grateful and helpful post,You share Fabulous Post,Great Man Keep Posting.

    Chantix

  237. Avatar
    gerry9135 about 1 year later:

    Absolutely fantastic posting! Lots of useful information and inspiration, both of which we all need! Thanks for the sharing information we will wait also for your new article keep posting. premium wp themes

  238. Avatar
    minnesota computer repair minneapolis about 1 year later:

    Sorry but I’m forced to disagree. Quality matters more than anything to me.

  239. Avatar
    sitecbinfos about 1 year later:

    Thanks for the nice post.Its long time since I read a useful post like this.I’ll bookmark it and read again.

  240. Avatar
    Columbus DJ about 1 year later:

    I have been visiting this blog for quite awhile and finally thought I’d leave a comment to say I’m enjoying it… thanks!

    Columbus DJ Charlotte Home Remodeling Contractor Grand Rapids Remodeling Omaha Remodeling Akron Real Estate Agent

  241. Avatar
    Charlotte Home Remodeling Contractor about 1 year later:

    Quality in software is always the most important thing to me, as with just about anything.

    Nice article… thanks for sharing!

  242. Avatar
    Grand Rapids Remodeling about 1 year later:

    Excellent article… food for thought. Not sure I’m in agreement… but thats what blogs are for!

  243. Avatar
    Akron Real Estate Agent about 1 year later:

    The article brings up some good points… unfortunately they don’t make a great case for where we’re headed as a country.

  244. Avatar
    Omaha Remodeling about 1 year later:

    Nice article… enjoyed it and learned a thing or two. Thanks!

  245. Avatar
    Columbus DJ about 1 year later:

    Thanks for the insight. I disagree!

  246. Avatar
    Power washer about 1 year later:

    Quality in software is always the most important thing to me, so i disagree your point!

  247. Avatar
    sewing machines for beginners about 1 year 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. sewing machines for beginners

  248. Avatar
    inexpensive patio furniture about 1 year later:

    I’m pretty sure he was just joking about how quality doesn’t matter that much. inexpensive patio furniture

  249. Avatar
    Youtube to Mp3 about 1 year later:

    Thank you for posting. I really enjoyed reading this.

  250. Avatar
    natural treatment of sciatica about 1 year later:

    natural treatment of sciatica is amazing with Dr Allen’s device for lower back pain care. It is strange why people cannot buy it in shop, Diana.

  251. Avatar
    http://alltip.com about 1 year later:

    Uncle Bob, I’m confident that you’re misrepresenting what Jeff and I said. I put a transcript of our conversation up on Joel on Software and you can judge for yourself. We’d love to have you on the Stack Overflow podcast. how to guide /how to Tips

  252. Avatar
    DJs In Columbus about 1 year later:

    Great article… very true unfortunately… thanks again.

    DJs In Columbus

  253. Avatar
    Exterior Window Shutters about 1 year later:

    Great information, thank you for keeping us updated.

    Exterior Window Shutters

  254. Avatar
    Columbus Wedding Photographers about 1 year later:

    Thanks for the nice blog, I visit it often!

    Columbus Wedding Photographers

  255. Avatar
    mahjong about 1 year later:

    The article is old, but it is useful to me now.

  256. Avatar
    seo consultant london about 1 year later:

    SEO UK Get Free consultation from SEO Expert, SEO Consultant Bidyut Bikash Dhar who also offers Link Building Consulting Services in London, UK. If you are searching keywords like SEO consultant UK, SEO expert UK, Link building UK, Local SEO UK, UK SEO, SEO UK, London SEO, SEO London, SEO company London, SEO consultant London, SEO agency London, web London, UK consultant, UK SEO consultant, SEO services London, SEO services UK, SEO Consulting then call us now at +44.2032866561.

  257. Avatar
    executive staffing about 1 year later:

    Staffing agency can be a lead source for good number of executive jobs. And finding a company that can successfully places people with your kind of skills will be key to success. Basically what kind of position they fill or what types of openings they have can give one an idea of whether it’s worth your time to apply.

  258. Avatar
    google adwords about 1 year later:

    Pay Per Click Advertising (PPC) services is one of online marketing services that drives targeted leads to your websites from search engines like Google. Our PPC (pay per click management), CPC expert consultant will ensure best ROI for your business. Call us now for pay per click marketing, pay per click (PPC) advertising, PPC (pay per click) search engine marketing and PPC search marketing services.

  259. Avatar
    best dating service about 1 year later:

    Online dating or Internet dating is a dating system which allows individuals, couples and groups to make contact and communicate with each other over the Internet, usually with the objective of developing a personal, romantic or sexual relationship. Online dating services usually provide un moderated matchmaking over the Internet, through the use of personal computers or cell phones.

  260. Avatar
    W2 Tax Forms about 1 year later:

    I disagree…..

  261. Avatar
    save fuel about 1 year later:

    Jeff both mentioned during the podcast that they knew they would bring the ire of many, so not entirely unexpected.

  262. Avatar
    Long evening dress about 1 year later:

    Well i disagree. Quality does matter. You might be right upto certain level but overall quality does matter.

  263. Avatar
    LCD Monitor Guy about 1 year later:

    Thank you so much for the article it was a great read and very informative :)

    Thanks!

  264. Avatar
    website reviews about 1 year later:

    i think Jeff want to say any thing that improve the quality is good.but you takes her word in another scenes.you share with us so thanks. website reviews

  265. Avatar
    Prank call voices about 1 year later:

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

  266. Avatar
    feiertag about 1 year later:

    cool stuff – thank you much for this info.

  267. Avatar
    Term Life Rates about 1 year later:

    For some industries that may be true, but you always want to lead with some good quality, regardless!

  268. Avatar
    cosplay about 1 year later:

    So wait, you’re saying that someone who sells bug tracking software is encouraging programmers to slack off on quality? Sounds like a clever marketing campaign to me.

  269. Avatar
    Sugar gliders for sale about 1 year later:

    Rather than take this as a personal attack, or an affront to SOLID principles (although I’d say there’s justification for both) you could take this as an opportunity to realize that the marketing of the principles is lacking, and could do with some improvement.

  270. Avatar
    80th birthday gifts about 1 year later:

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

  271. Avatar
    bryan furry about 1 year later:

    Character Illustration is an important part to design your web, it attracts more traffic to your web. I like your illustration work, your creativity and designs are really amazing.

    logo design

  272. Avatar
    ice maker troubleshooting about 1 year later:

    Ironically, these designations do not mean anything in the software as there is no governing body to decide what is best “class” means and who and how they compare. How long have you been doing this?

  273. Avatar
    Patio about 1 year later:

    Yes I too agree with you that quality matters.

  274. Avatar
    lisa alloju about 1 year later:

    I strongly agree with your point!

  275. Avatar
    travel about 1 year later:

    Th4t be an epic da shizzi4 post, th4nkie 4it & in da futures we’ll be seeing more of it

  276. Avatar
    cruises about 1 year later:

    We7ll I8be dat9 ogr6e speekie da speekie, gratz & than4x

  277. Avatar
    flight center about 1 year later:

    heb7e sh8at be th34nkie 4it on da posting left & righ8ty

  278. Avatar
    craigslist calgary about 1 year later:

    correct. I totally agree with your points. There is always a need for your business to work,to keep your code clean. Thanks for such an informative article.

  279. Avatar
    craigslist arizona about 1 year later:

    i think developers should make a contact with this thing that the code which they used for developing their projects if these codes are not suited with the consumer needs than these codes are useless in this sense quality of codes matters for the successful of project http://karalist.com/craigslist/craigslist-arizona-5.htm

  280. Avatar
    premium wordpress themes Coupon Code about 1 year later:

    Very Nice site, I just came to know of it yesterday morning. Bookmarked this and also stumbled upon it. Thanks a lot. You had some nice ideas in the article, I enjoyed reading it.

  281. Avatar
    JACK about 1 year later:

    Very Nice site, I just came to know of it yesterday morning. Bookmarked this and also stumbled upon it. Thanks a lot.premium wordpress themes Coupon Code

  282. Avatar
    cheap vps about 1 year later:

    cheap VPS

  283. Avatar
    Handy Akku Notebookakku PDA about 1 year later:

    There are some great benefits we can get from using our health care in the correct way, there is still tons of things to discuss regarding healthcare!

  284. Avatar
    hand sanitizer about 1 year later:

    There are some great benefits thanks for sharing.

  285. Avatar
    spa manicure about 1 year later:

    i was reading your post and i noticed something.i.e is first you let us know about the statement of jeff and jole in such a way that it shocks us and the word that comes out of mouth is WTF?then you try to support their statement and then all of a sudden you reject the. you have kept both the ends active. you didn’t let us realize that they were not here. there could be many meaning of a statement and they could be used on different occasions. but in case of jeef and jole its different in my opinion if you are giving a statement through a platform that relates other then you need to make some crystal clear statements. thanks for the post.

    spa manicure

  286. Avatar
    car classified about 1 year later:

    Well i disagree. Quality does matter. You might be right upto certain level but overall quality does matter.thanks….....http://www.uscarslist.com/

  287. Avatar
    High heels for women about 1 year later:

    More information about that could be useful

  288. Avatar
    Textübersetzung about 1 year later:

    Thanks for sharing this with us, ive actually already downloaded it and given it a go, works like a charm!

  289. Avatar
    cars classified about 1 year later:

    Well i disagree. Quality does matter. You might be right upto certain level but overall quality does matter.thank you…

  290. Avatar
    <a href="http://flyertemplates.prowebmedia.net">Flyer templates</a> about 1 year later:

    I agree. Quality doesn’t matter, except when it does matter.

  291. Avatar
    http://flyertemplates.prowebmedia.net about 1 year later:

    Sorry for the double post.

  292. Avatar
    flyer temlates about 1 year later:

    Great. triple post…

  293. Avatar
    Grappa Weine italienische Spezialitaeten about 1 year later:

    The story is pretty fun because it can be interactive, i’ve never read it before myelf but i read some great reviews about the book

  294. Avatar
    Retaining wall construction about 1 year later:

    For doing a transaction, kind of the file system is really important. It can affect the process of sending data, so it’s better use the same file system each other.

  295. Avatar
    furniture about 1 year later:

    Hello, very professional high level of writing it! So many people to comment, let me also to comment on it. Because good writing, and I learned a lot, and I am glad to see such a beautiful thing. Thanks very much !the same time, i love living room furniture sale

    Good, good! Agree to your point of view, learn and follow your point of view of the practice of paper! I gain very much! Thank you, wonderful writing, beautiful illustrations, so I feel very comfortable. At the same time I also like living room furniture sale very much

  296. Avatar
    Long Island Swimming Pools  about 1 year later:

    While driving the vehicle we should be very careful.We should wear helmets for our safety precautions and drive slowing concentrating on the route.

  297. Avatar
    craigslist tampa about 1 year later:

    Thanks a lot. You had some nice ideas in the article, I enjoyed reading it. I bookmarked this and also stumbled upon it. Thanks a lot . craigslist tampa

  298. Avatar
    Craiglist Wichita about 1 year later:

    For me quality of anything matters a lot. Whenever the quantity of anything increases the quality goes down. We must try to keep the quality at the best level. Its first time I heard that quality does not matters a lot but for me it is not true.

  299. Avatar
    Fitness Blog about 1 year later:

    Thanks a lot. You had some nice ideas in the article, I enjoyed reading it.

  300. Avatar
    Briggs Motor Rasentraktor Aufsitzmaeher Messerkupplung about 1 year later:

    Definitely a more productive use for facebook than many have come up with! There is no reason why it shouldn’t be very successful indeed

  301. Avatar
    Schlegelmulcher Garten Vertikutierer Forstseilwinden Pfahlbohrer about 1 year later:

    Thanks for posting this article. I am definitely tired of struggling to find relevant and intelligent commentary on this subject. Everyone nowadays seem to go to extremes to either drive home their viewpoint or suggest that everybody else in the globe is wrong. Thanks for your concise and relevant insight.

  302. Avatar
    irishpoetry about 1 year later:

    I was very encouraged to find this site. I wanted to thank you for this special read. I definitely savored every little bit of it including all the arguments and I have you bookmarked to check out new stuff you post.

  303. Avatar
    Coach Outlet Store Online about 1 year later:

    sorry i am not agree with you that quality is the main matter…this is the main thing to maintain business for long time period.

  304. Avatar
    Homes for sale in new bern nc about 1 year later:

    Quality is vitally important…so I gotta disagree with you…sorry!

  305. Avatar
    Buy Jeans about 1 year later:

    nice ideas

  306. Avatar
    Buy Jeans about 1 year later:

    Quality is more important

  307. Avatar
    backgammon about 1 year later:

    Thanks for this nice idea

  308. Avatar
    DM800 about 1 year later:

    communications and highwaLis are being constructed.

  309. Avatar
    hosting packages about 1 year later:

    I can´t agree with you more, quality matters.

  310. Avatar
    Keyless Door about 1 year later:

    Like everything else, quality matters.

  311. Avatar
    rami about 1 year later:

    very nice, thank you

  312. Avatar
    Detox your body about 1 year later:

    That sure caught my attention. How can quality doesn’t matter much?

  313. Avatar
    Trailer brake controller about 1 year later:

    I had been following their tweets, dying to hear the story. I’m half tempted to listen to the podcast, but frankly, there seems to be good for my blood pressure. Not an hour ago I had another Mike Feathers “When I can found that? Time during a session of TDD. Spolsky Et Tu? Sigh I think they must have to fighting hard in the last match because it’s really deciding them to pass to round of last 16. Godd luck for them.

  314. Avatar
    JetsShop about 1 year later:

    Thank you for post this comment there have same you like to chose Jets Jerseys

  315. Avatar
    Indonesia indoor furniture about 1 year later:

    By previewing the title and several paragraphs, I think the title is somehow controversial since quality has been believed and practiced by both academicians and practitioner.

  316. Avatar
    Teak indoor and garden furniture about 1 year later:

    The title made me curious what is all about. In my opinion, quality has to be managed among other several critical variables

  317. Avatar
    website design rotherham about 1 year later:

    I would like to thank you for the efforts you have made in writing this article

  318. Avatar
    fax to email about 1 year later:

    I agree with the idea given by the Jeff and Joel . Thanks for sharing the lot of tips with us.

  319. Avatar
    Ice tea maker about 1 year later:

    “I think the maintenance of their technical chops is a full-time job.” Thanks for making that statement. domination of technology necessitate constant practice. Masters need to be living in the trenches where business and technology shock and / or net every day. really good quote

  320. Avatar
    Inground pool cost about 1 year later:

    “I think the maintenance of their technical chops is a full-time job.” Thanks for making that statement. domination of technology necessitate constant practice. Masters need to be living in the trenches where business and technology shock and / or net every day. I equal how you indite.Are you newsworthy in a location instance communicator job?

  321. Avatar
    Annonces moto about 1 year later:

    great post very informative, thanks

  322. Avatar
    USB TV Tuner about 1 year later:

    Wow! What an argument about QUALITY. Interesting to hear opinions from the GURUS.

  323. Avatar
    Escort listing about 1 year later:

    Great stuff,I’m a big Eggers fan and hope to make it over to Austin TX for the next signing! Keep us posted

  324. Avatar
    Sandy Smith about 1 year later:

    I agree that quality is very important especially in this aspect of what the article is trying to explain.

  325. Avatar
    Havelock NC Homes for sale about 1 year later:

    I think with quality the chance of mistakes is much much less

    Havelock NC Homes For Sale

  326. Avatar
    sapphire laser about 1 year later:

    That would be an unrealistic requirement. But, there should be a self regulated quality control done as the work is being done sapphire laser

  327. Avatar
    Internet fax about 1 year later:

    I think that Jeff and Joel will be able to achieved there targets on the time.

  328. Avatar
    Medical Malpractice Cases about 1 year later:

    yeah i agree with you that it is Joel Spolsky…thanks for sharing

  329. Avatar
    Web Design Company India about 1 year later:

    Web Design Company India is a reliable source for best qualitative web design services. It stands for providing affordable web design services, a renowned name in the field of Web Design Company.

  330. Avatar
    Indonesian Teak Furniture: Indoor Teak Furniture, Teak Garden Furniture, Teak Table, Teak Chairs about 1 year later:

    I’ve been looking something like this. This article must be made in a carefull manner.

  331. Avatar
    IRS Tax Attorney about 1 year later:

    I just read your post and find it very interesting and informative. I’m going to bookmark your page. Thanks for sharing this article.

  332. Avatar
    Pest Control NJ about 1 year later:

    I agreed completely.. No stress need for to maintain quality. Its not matter as you said. Quality is a MUST!

  333. Avatar
    nike about 1 year later:

    mason0507

  334. Avatar
    nike about 1 year later:

    Your article is write very well, I like it very much. mason0507

  335. Avatar
    ejakulasi dini about 1 year later:

    In my view, the basic limit on technical innovation isn’t our collective ability to come up with new things. It’s our ability to absorb them. That means that the field is changing about as fast as most developers can handle things. For most people, taking time off means you slip behind, your instincts and tricks becoming less and less relevant.

  336. Avatar
    SamanthaAdamson about 1 year later:

    @ above i have visited this website before. Its very helpful website for web designers. health insurance dallas texas

  337. Avatar
    scrubs about 1 year later:

    To make matters worse, all of this was preceded by a truncated rant by Joel about TDD. Joel and Jeff were agreeing that unit testing was really not very important and that testing is often a waste of time.

  338. Avatar
    Professional Resume Writers about 1 year later:

    I completely disagree with the title “Quality Does’nt Matter That Much”. I guess if there is no quality, nobody would like it….

  339. Avatar
    Professional Resume Writers about 1 year later:

    I completely disagree with the title “Quality Does’nt Matter That Much”. I guess if there is no quality, nobody would like it….

  340. Avatar
    Professional Resume Writers about 1 year later:

    I completely disagree with the title “Quality Does’nt Matter That Much”. I guess if there is no quality, nobody would like it….

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

    I was listening to the podcast during my way to work when they started talking about TDD and quality, and I the same WTF?? feeling. Honestly, I started laughing in the bus.. It’s great to know I was not alone. Thanks for the response, Bob. 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.

  342. Avatar
    http://www.thenorthernboysclub.com/ about 1 year later:

    Very nicely written.Great work has been done by the blogger.Visit my link as well:

    mens t shirts

  343. Avatar
    Terry Winkle about 1 year later:

    Nice informative article, thanks for sharing with us. conveyor rollers | conveyor belts | wire mesh | woven wire cloth | conveyor roller suppliers

  344. Avatar
    <a href="http://www.aventuresnouvellefrance.com/page/plan/motoneige-quebec.php">motoneige au quebec </a> about 1 year later:

    I just read your post and find it very interesting and informative. I’m going to bookmark your page. Thanks for sharing this article.

  345. Avatar
    Francy Potter about 1 year later:

    interesting article thanks for posting! realizzazione siti web | promozione siti web

  346. Avatar
    Howie Hubler about 1 year later:

    I can see your point about quality, but there needs to be a balance between quantity and quality.

  347. Avatar
    Colon Cleansers about 1 year later:

    I truly like the suggestions you’ve given. Thanks a great deal for sharing.

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

    Ooo ooo blog fight! Joel and Jeff both mentioned during the podcast that they knew they would bring the ire of many, so not entirely unexpected. Rather than take this as a personal attack, or an affront to SOLID principles (although I’d say there’s justification for both) you could take this as an opportunity to realize that the marketing of the principles is lacking, and could do with some improvement. Hell, record a quick rebuttal and submit it to Joel for possible inclusion in the next podcast. Thanks for the information and great ideas. Keep on believing in your dreams and you will achieve success..good luck.

  349. Avatar
    clay bar detailing about 1 year later:

    im sorry but quality is everything.. i understand why you nearly fell of your chair.

  350. Avatar
    jhnsons7 about 1 year later:

    Thanks for make a article related quality doesn’t matter ,Your article is write very well, I like it very much. samsung galaxy tab

  351. Avatar
    los angeles wedding photographers about 1 year later:

    No, Quality is the key factor.

  352. Avatar
    parça tl kontör bayili?i about 1 year later:

    Good post,I think so! Dear Admin, I thank you for this informative article.

  353. Avatar
    jet parça tl kontör bayili?i about 1 year later:

    Very nicely written.Great work has been done by the blogger

  354. Avatar
    labels about 1 year later:

    Thanks for making that statement. Technical mastery requires constant practice. Masters need to be living in the trenches where business and technology clash and/or mesh every day. Labels

  355. Avatar
    Stethoscope about 1 year later:

    So wait, you’re saying that someone who sells bug tracking software is encouraging programmers to slack off on quality? Sounds like a clever marketing campaign to me.stethoscope

  356. Avatar
    instant payday loan online about 1 year later:

    “BTW, apparently Joel doesn’t allow comments on his blog.”

    He has discussion forums instead.

  357. Avatar
    Sytropin about 1 year later:

    It is found by surveys that a when customers want to find a internet site for information or to buy a product or service, they find their site in one of the following ways: The first option is they find their site direct a explore engine. Secondly they find their site by clicking on a link from another website or page that relates to the topic in which they are interested. Occasionally, they find a site by hearing about it from a friend or reading in an article.

  358. Avatar
    Jon about 1 year later:

    i think developers should make a contact with this thing that the code which they used for developing their projects The Truth About Six Pack Abs – Abs Fitness – No Nonsense Muscle Building

  359. Avatar
    Skunk smell removal about 1 year later:

    I’ve listened to all the StackOverflow podcasts, and I’ve heard them make comments that made me think that they really didn’t understand TDD or Agile. In podcast #38 they overtly revealed their ignorance. I now firmly believe they have never tried TDD (or BDD). I have never met anyone that has honestly given it a fair trail (20 days or so) and not become addicted for life. It’s a very creative way to use those stuff and turn it into something beautiful and worth money. Great job

  360. Avatar
    geek3.com about 1 year later:

    I love how this guy give explanations and advices about the software. It is very entertainment.

    Gainesville Computer Repair

  361. Avatar
    Car Accessories about 1 year later:

    Quality is the prime factor in any field. That is my opinion as far as I am concerned as an Engineer.

  362. Avatar
    Carolyn Ward about 1 year later:

    Well a rather complicated one to understand at the start but when given a thought i am surprised at the revelations of this post. Wow, you were way to good to point out out-of-box issues. Star trek online credits

  363. Avatar
    calling cards about 1 year later:

    yeah, who the heck cares about… quality?! right? riiight! phone card

  364. Avatar
    www.midatlantichondas.com about 1 year later:

    Its funny to come across this article as this was just being discussed the other day on my Honda Forum.

  365. Avatar
    <a href="http://www.midatlantichondas.com">k20 k24 b16a b16 h22 h22a turbo prelude</a> about 1 year later:

    I cant agree more with the original post

  366. Avatar
    234 about 1 year later:
    Gold jewelry is not only cheap thomas sabo jewellery, but affordable, links of london gold jewelry how to care for it? Listen to me slowly come ah! Normal wear, it should be handled with care, taboo stiff pull; Do not put heat between jewelry, deformation due to temperature; jewelry is more delicate, taboo to wear jewelry and other household chores in the kitchen or laundry. The following is wearing some of the process of cleaning recommendations: a) general cleaning, you can soak in the alcohol removed after a few minutes, the average sweat will evaporate along with the wine, red look after water, wiped away b) often wear and accumulation of sweat, you can use the old brush dampened in a mild cleaning solution or toothpaste commercial jewelry cleaning solution, brush lightly treatment. In addition to clean the outside,thomas sabo charms K because of the long-term gold surface covered with small friction and wear marks, but also reduce the brightness, on weekdays to K K gold cloth light wear to the gold surface has the effect of polishing, but it is better for 2-3 years polishing and a fine coating treatment can restore the original beauty ofthomas sabo jewellery jewelry and bright light. As long as properly maintained,Thomas sabo will be gold-plated jewelry and links of london jewellery gold jewelry with a long length of the general new stay beautiful Oh!

    thomas sabo jewellery

    thomas sabo charms

    links of london jewellery

    thomas sabo bracelets

    Thomas Sabo Necklaces

    Thomas Sabo Watches

    <a href="http://www.linksoflondon-uk.com/"><strong>links of london jewellery</strong></a>
    
    <a href="http://www.linksoflondon-uk.com/"><strong>links of london charms</strong></a>

    Links of London Necklaces

    Links of London Bracelets ????

  367. Avatar
    http://www.777games777.info about 1 year later:

    quality still matters, this is one of the qualities why customers is loyal to their suppliers, if the quality is not good your not going to have clients that will last.

    http:www.777games777.info

  368. Avatar
    rezultate live about 1 year later:

    Congrats for releasing such a nice post.This is nice post. I was awaiting for such an artice and I have gained some very useful information from this site.I admire the valuable information you offer in your articles. I will bookmark your blog and have my friends check up here often. I am quite sure they will learn lots of new stuff here than anybody else .Thanks for sharing this information.

  369. Avatar
    corso object-c about 1 year later:

    I am hoping the same best work from you in the future as well. In fact your creative writing ability has inspired me. Really the article is spreading its wings rapidly.

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

    While I was surprised by the rejection of sound principles and Joel can not agree with him there, I think I understand your point. Some fans are giving ahering strictly dogmatic methodologies (not necessarily sound) a higher priority than the delivery of software and satisfy customers. If the code is very clean, but does not meet user needs, it is useless. Of course, if possible, the principles and pragmatic methodolgies used in delivering software that meets customer needs, but I’ve seen developers forget the purpose of the system they were working at the same time obsessed with the details of the application. 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

  371. Avatar
    WinShake about 1 year later:

    100% TDD coverage is indeed a terrible waste. Just cover the code that has some logic in it and get on with things.

  372. Avatar
    <a href="http://www.midatlantichondas.com">k20 k24 b16a b16 h22 h22a turbo prelude</a> about 1 year later:

    k20 k24 b16a b16 h22 h22a turbo prelude Honda Forum

  373. Avatar
    Beertender B95 about 1 year later:

    Quality doesn’t matter? What kind of a principle is that?

  374. Avatar
    pest control products about 1 year later:

    Quality shouldnt matter much. Its all about quantity! ;)

  375. Avatar
    Headstones for sale about 1 year later:

    yeah i agreed with jeff …Quality just doesn’t matter that much.. your post is knowledgeable.. thanks for sharing..This article is very good. I like it.

  376. Avatar
    anita777 about 1 year later:

    Jeff and Joel are ridiculous. Quality does matter. Actually, it is the most important thing.

  377. Avatar
    White Camel about 1 year later:

    I really inspired with the ideas of Jeff and Joel . That gives the lot of yips about the profession.

  378. Avatar
    roccosoft about 1 year later:

    I have a question. The iPhone is IPodu’s nephew or son

  379. Avatar
    pandora bracelets about 1 year later:

    f she has help brimming with rings, then investing in a ring Beadsthat she will be able to in no way wear would not be excellent.Aside from choosing coming from a standard keep, rings can even be ordered via online stores. The best thing about buying on the internet is you get to see anything the presents, where in a shop it can be tough to sort nevertheless his or her inventory to uncover the right thing. Mothers love gifts that are memorable. Attempt to present your mom using a gift that is personalized, as an illustration an engagement ring using their name engraved in it. Gold rings make for great gifts since they immortalize your mom’s name in gold. A gold necklace and a pendant produces a fantastic gifts for your mom, and gifts which are most often overlooked .

  380. Avatar
    Structural Glazing about 1 year later:

    Great content. Thank you for this.

  381. Avatar
    UPS Maintenance about 1 year later:

    Fantastic blog. Great read.

  382. Avatar
    online phone card about 1 year later:

    well, this sure makes for an interesting speech!

  383. Avatar
    copper88 about 1 year later:

    I’m sure they have hit their heads with something realllly heavy! like to talk to them

    how to get rid of spots

  384. Avatar
    ace959 about 1 year later:

    What I meant to say is Joel Spolsky right? His buddy Jeff makes this incredibly dumb statement and Joel grunts his approval,I can only hope that Mr. Spolsky made his statements out of an urge to stir the debate – otherwise he really, really need to check his facts… I don’t think Jeff meant to say this exactly the way it came out. Just before he said it, he said that lately he had been getting less and less concerned with code hygiene. So possibly he was trying to say that code quality just doesn’t matter that much. Thanx for giving the valuable info like”if you can’t keep your code clean, no way can you keep your systems clean.”

    Diablo 3

    Diablo 3 Items

    Diablo 3 Power leveling

    Diablo 3 gold

  385. Avatar
    long island swimming pools about 1 year later:

    We should be very careful in riding the vehicle and the vehicle have to be given for the service once in 6 months.

  386. Avatar
    international phone cards about 1 year later:

    I think it’s a serious matter if they even dared say such a thing… prepaid phone cards

  387. Avatar
    lose pounds about 1 year later:

    It’s that age old argument of quality vs quantity eh!

  388. Avatar
    Rocky about 1 year later:

    I have also heared that podcast and i remember I was actually laughing hearing it.

    Thanks, Rocky – the diet solution

  389. Avatar
    : http://www.incarparts.com/ about 1 year later:

    Exciting post; I think quality is truly essential.

  390. Avatar
    Sam about 1 year later:

    i enjoyed reading this post, cell phone number lookup magic of making up review instrumental beats hope the rest of your blog is as good.

  391. Avatar
    Grand Rapids SEO about 1 year later:

    I’ve enjoyed a number of quality articles and I think that along with articles you need good grand rapids web design

  392. Avatar
    Accident Claims Stockport about 1 year later:

    I enjoyed this read, it was really good – keep up the good work!!accident claims manchester

  393. Avatar
    Pest Control Oxford about 1 year later:

    Really Good Post, Please Keep Up The Good Work! Pest Control Oxford

  394. Avatar
    Grand Rapids Lawyer about 1 year later:

    This is a really great article, keep it up.

  395. Avatar
    claim-guide about 1 year later:

    Very nicely written.Great work has been done by the blogger.Visit my link as well:

    personal injury claim value injury claim specialist whiplash accident claim

  396. Avatar
    Chiptuning Ford Mondeo about 1 year later:

    Sehr gut geschrieben, bin bestimmt bald wieder hier!

  397. Avatar
    vikojhons@gmail.com about 1 year later:

    The facts connected with essay could be utilized by custom essays writers. Writing of custom essay writing is not a problem for up to date’s people.

  398. Avatar
    http://www.raisingsmallsouls.com/evenflo-triumph-advance-lx-convertible-car-seat-reviews/ about 1 year later:

    Quality definitely matters, but it depends on whether your goal is to have a reputation for quality or other intention for each particular project.

  399. Avatar
    Online Printing about 1 year later:

    Well you have done a great job by putting on this marvelous information about this particular issue. I think Quality doesn’t matter in that case when you have some solid demands from your client side,and same is the case with code too.The out put must be given no matter what the way you have coded.

  400. Avatar
    Toronto Estate Sales about 1 year later:

    this is something I have been searching for for ages!

  401. Avatar
    Marcus about 1 year later:

    For some industries that may be true, but you always want to lead with some good quality, regardless!

  402. Avatar
    Marcus about 1 year later:

    very good site!

  403. Avatar
    Tatuagens Femininas about 1 year later:

    Very nicely. Great! good information! i love tattoo feminina !

  404. Avatar
    Brochure Design about 1 year later:

    Really great Article :)

  405. Avatar
    high pagerank about 1 year later:

    I enjoy your weblog and will sign up to your feed so I will not miss anything. Fantastic content.

  406. Avatar
    free icon maker about 1 year later:

    Nice to very useful info for me.Because i’m new in blogging and i’m need good tutorial like your post. visit here, and don’t forget to visit our blog to and give me more spirit to continue my blogging activities

  407. Avatar
    Cheap Gypsy Tickets about 1 year later:

    I am glad I did mainly because it was a really fulfilling read.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

  408. Avatar
    Emma30 about 1 year later:

    Well you have done a great job by putting on this marvelous information about this particular issue. I think Quality doesn’t matter in that case when you have some solid demands from your client side,and same is the case with code too. survival kit

  409. Avatar
    dsasadasd about 1 year later:

    dassaddsa

  410. Avatar
    dsasadasd about 1 year later:

    This is a great blog, I’ve loved having a look around today. moncler jackets I’m sure you could definitely make a dollar or two if you sold some more advertising on here!moncler

  411. Avatar
    full version about 1 year later:

    Great work has been done by the blogger. Very good job. full version | version full | | full version software |

  412. Avatar
    juicer about 1 year later:

    Quality will always matter and win out in the end, it also makes your job easier when you have to go back and update the code, to argue and insist poor code is ok is a slippery slope in my opinion. Cheers – juicer

  413. Avatar
    Marcus Everding about 1 year later:

    This was a really great contest and hopefully I can attend the next one. It was alot of fun and I really enjoyed myself.

    Thanks!

    copy ps3 games|copy wii games| how to copy xbox 360 games

  414. Avatar
    Frank about 1 year later:

    Quality is what everbody of us expects if we are sitting in a car or a plane. No or bad quality is such a big risk for a company that she would not survive.

  415. Avatar
    chanel store about 1 year later:

    Here is very different. Thank you

  416. Avatar
    diablo3 about 1 year later:

    Quality matters a lot…i cant agree..

    Diablo 3

    Diablo 3

  417. Avatar
    http://www.manukahoneyhealth.co.uk about 1 year later:

    This is brilliant, thanks.

  418. Avatar
    Transfer a Car about 1 year later:

    Quality does matter…to a certain extent. I guess it depends on the product or service.

  419. Avatar
    Arabic Dictionary about 1 year later:

    I Think quality does matter because if quality of anything is not good then we will not be willing to buy it. So quality is most important thing. Anyhow you have your own thinking. Thanks for this post. Arabic Dictionary

  420. Avatar
    It Support Rochdale about 1 year later:

    Great Post, Please keep up the really good information.

  421. Avatar
    Quanto Custa about 1 year later:

    Quality matter ! Is most important thing! keep going.

    Quanto custa para fazer isso ???

  422. Avatar
    Übersetzungsdienst about 1 year later:

    The story is pretty fun because it can be interactive, i’ve never read it before myelf but i read some great reviews about the book

  423. Avatar
    Pauline about 1 year later:

    I’m french spoken but i think that quality need time, and time is money. So what is the price you can pay for quality ? For money i can suggest : jeux grattage gratuit

  424. Avatar
    dukan diet about 1 year later:

    Thanks for sharing this information! It’s really useful!

  425. Avatar
    cheap clothing about 1 year later:

    gfdg

  426. Avatar
    http://christianlouboutin365.com about 1 year later:

    if you purchase it on line, you can get many cheap ysl tribute platform

    sandal with beautiful colors at a low price. Does this sound familiar to you? Well, it could be the story of a

    million women on the planet who love the brand

    href=”http://www.christianlouboutin365.com/category-17-b0-

    Christian+Louboutin+Pumps.html”>Christian Louboutin Python

    Pumps

    , but unfortunately can’t afford it.

  427. Avatar
    Best Grills Cheap about 1 year later:

    iI think like you that “So I think the fairest thing I can say about this is that Jeff was probably saying things he didn’t really mean because he felt his mentor, Joel, was approving.”

  428. Avatar
    Fourms.Boxsem about 1 year later:

    Forums.Boxsem.com is a forums for help you learn SEO and help you promote your blog or your web. and have a lot of knowhow for Internet Marketing

  429. Avatar
    cheap 42 tv deals about 1 year later:

    Its hard to imagine that anyone in today’s day-and-age would argue against the value of unit tests in anything but the most trivial of systems; whether we are talking TDD or test-after is another value debate, but we cannot seriously be asking ‘is testing valuable’, can we?

  430. Avatar
    Game about 1 year later:

    I agree with you.. Thank you for sharing.

  431. Avatar
    gamehunsa about 1 year later:

    This was a really great content. Thanks.

  432. Avatar
    Maui wedding packages about 1 year later:

    People that think quality doesn’t matter get exactly what they want. Cheap junk.

  433. Avatar
    Janifer about 1 year later:

    The more tests you have telling you the same thing, the more consistency and validity they have. Any one logical error will expose a systematic inconsistency.

  434. Avatar
    jonh Beardcha about 1 year later:

    I enjoy your weblog.This is a really great article, keep it up.

  435. Avatar
    pass4sure 650-177 about 1 year later:

    well Anita you are right,. i am with you in this case… yes quality does and always matter. it is always appreciable by everyone

    Jeffery IT Solutions

  436. Avatar
    New Concrete driveway cost about 1 year later:

    Write quality code shows more than discipline. Show your integrity, compassion for the team, and commitment to the project as well. Taking the time to produce quality code is something everyone should do every time we put our fingers on the keyboard. Our companions will thank us, we will feel better when we finish, and even the ‘experts’ in business may give thanks at the end. The only thing that could spoil a day was people. People were always the limiters of happiness except for the very few that were as good as spring itself.

  437. Avatar
    Catering Sydney about 1 year later:

    It’s a nice post!Thanks for your good work,it helps me a lot!I will come back again!

  438. Avatar
    Cavity wall insulation installers about 1 year later:

    I love seeing websites that perceive the value of offering a top quality useful resource for free. Great job! Cavity wall insulation installers

  439. Avatar
    Cavity wall insulation installers about 1 year later:

    I love seeing websites that perceive the value of offering a top quality useful resource for free. Great job! Cavity wall insulation installers

  440. Avatar
    http://petitprix.plaisir-maximum.fr about 1 year later:

    Posted by Uncle Bob http://fluxsexy.departementsdefrance.fr http://achat.plaisir-maximum.fr/ http://petitprix.plaisir-maximum.fr/ http://choixsexy.plaisir-maximum.fr/ http://meilleur-prix.plaisir-maximum.fr/

  441. Avatar
    web design kingston about 1 year later:

    I wanted to leave a little comment to support you and wish you a good continuation. Wishing you the best of luck for all your blogging efforts

    web design kingston

  442. Avatar
    1080p LCD TV about 1 year later:

    This stands out as the 1st time I have commented right here and I should say you give genuine, and high quality details for bloggers! Fantastic position.

  443. Avatar
    beauty salon maroubra about 1 year later:

    Instead, they happily program away, using trial-and-error. When they can’t figure something out, they type a question into Google.And sometimes, the first result looks like it’s going to have the answer to their exact question, and they are excited, until they click on the link, and discover that it’s a pay site, and the answer is cloaked or hidden or behind a pay-wall, and you have to buy a membership.

  444. Avatar
    driving lessons rochdale about 1 year later:

    Great Information – Please Keep It Up!!

  445. Avatar
    it support manchester about 1 year later:

    Great Work, I love reading interesting things, keep it up!!

  446. Avatar
    accident claims manchester about 1 year later:

    Great Information – Keep It Up, i have subscribed to it now

  447. Avatar
    Outdoor kitchen pictures ideas about 1 year later:

    Sounds like a Gerald Ratner moment. I hope not for Joel’s sake. 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!

  448. Avatar
    Electronic Book Readers about 1 year later:

    I used to be on the lookout for essential information on this subject.

  449. Avatar
    Dog barking control about 1 year later:

    Thanks so much for the inspiring post. I am definitely going to put together an informative blog for folks looking to get a degree or simply better their lives or make more money. I hope to help people and inspire hope. Thanks again.

  450. Avatar
    Westinghouse LD-2685VX about 1 year later:

    This comment from the transcript smacks to me of someone who has written a lot of unnecessary code. I’ve done a lot of TDD and found that it enables the ability to get rid of all that excess code that programming geniuses like Spolsky slop into their code.

  451. Avatar
    Wide Leg Pants about 1 year later:

    on product, Quality is number one, I Agree with you

  452. Avatar
    New Off shoulder tops about 1 year later:

    Always glad to see some attacks on Jeff. ;) I used to be a hot-tar roofer. Yeah, I remember that… day.

  453. Avatar
    feromonas about 1 year later:

    Jeff is crazy but extremelly intelligent.

  454. Avatar
    fiaz about 1 year later:

    hi

  455. Avatar
    testking RH302 about 1 year later:

    Thanks for sharing this fantastic and informative blog! We know from the fact there are a lot of unhealthy foods for sale anywhere and people loves to eat it! I love reading the points that you expressed! Keep sharing!!!

  456. Avatar
    the north face outlet about 1 year later:

    ordered via online stores. The best thing about buying on the internet is you get to see anything the presents, where in a shop it can be tough to sort nevertheless his or her inventory to uncover the right thing. Mothers love gifts that are memorable. Attempt to present your mom using a gift that is persona

  457. Avatar
    Pandora about 1 year later:

    These databases are typically managed with functional techniques, like map-reduce.

  458. Avatar
    Topics for persuasive speeches ideas about 1 year later:

    Always glad to see Jeff Some bashing. ;) Good job !! This is a nice article to be read.. The difficulty of translateing has been paid by the quality of this article.

  459. Avatar
    Engagement photo ideas ideas about 1 year later:

    So wait, you’re saying that someone who sells bug tracking software is to encourage developers to loosen on the quality? Sounds like a clever marketing campaign to me. More information about that could be useful

  460. Avatar
    Clay Matthews Jersey about 1 year later:

    American society of sports among the very popular, especially in ball games, like baseball, basketball, soccer, american football, ice hockey, from the young people, to the high school, college, the whole team has Lian organization and system of the Union , while the financial strength of the professional ball alliance, more about the daily activities of americans.

    • Clay Matthews Jersey
    • Jim Plunkett Jersey
    • Packers Jersey
    • Raiders Jersey
    • Penguins Jersey
  461. Avatar
    www.flowerdelivery4you.com about 1 year later:

    Iwanted to leave a comment just to wish you best of luck and support you. Keep up doing great job, hopefully I will one day have a great writing style as you do :)

    Take care.

    Bziki send flowers cheap

  462. Avatar
    <a href="http://www.flowerdelivery4you.com" rel="dofollow">send flowers cheap</a about 1 year later:

    I wanted to leave a comment just to wish you best of luck and support you. Keep up doing great job, hopefully I will one day have a great writing style as you do :)

    Take care.

    Bziki

  463. Avatar
    Bziki about 1 year later:

    Somehow my internet connection is breaking down and my comment isn´t posted, hope this time it will work :) I wanted to leave a comment just to wish you best of luck and support you. Keep up doing great job, hopefully I will one day have a great writing style as you do :)

    Take care.

    Bziki from send flowers cheap

  464. Avatar
    Sandwich catering about 1 year later:

    Cheers for this particular article, I will definitely attach this website to my own rss feeds, a buddy just informed me in regards to this last week. this may be the best.

  465. Avatar
    CVO about 1 year later:

    I have to agree that saying something like this is borders on madness. Unfortunately, such a view is rather prominent, wouldn’t you agree? This causes a lot of confusion in the marketplace as the custom doesn’t know who to trust and who not to trust.

  466. Avatar
    hair replacement for women about 1 year later:

    Thanks for the valuable information and insights you have so provided here. I enjoyed reading it. I need to read more on this topic…I admiring time and effort you put in your blog, because it is obviously one great place where I can find lot of useful info..

  467. Avatar
    Homemade pregnancy test ideas about 1 year later:

    Ironically, the two products are famous for the best in class. What have you done? Would you same to position a journalist author on my diary?

  468. Avatar
    HealthMaster Reviews about 1 year later:

    Just listened to the podcast – awesome!

  469. Avatar
    http://tipsteri.info about 1 year later:

    Thanks for your sharing, it’s very useful. tipsteri

  470. Avatar
    BCA Trips about 1 year later:

    Reusing or copying code, though in some ways unlawful, I believe is common practice in software development,” said one freelance developer who participated. “Most developers that I come in contact with (including myself) reuse, copy, or even reverse-engineer code to make it work better or to include it in an application that we are programming. There is always a cost benefit to everything. 100% quality control in a low end market would make a product unprofitable. But, in a high end market quality is a must. As Angusman said it is a balance. But, there will always be purists that say there should be 100% quality control.

    Jeff & Joll, thank you for your information.

  471. Avatar
    Lethbridge SEO about 1 year later:

    though they might love to enskeleton every structure with admantium, even great engineers understand that the cost of doing so exceeds any value it delivers. (not to mention demolition costs down the line!). they hold to tolerances of failure and yielding stress.

  472. Avatar
    Automotive Review about 1 year later:

    I’m stunned at the number of people who have come out in the comments against TDD. It has obvious benefits for crafting better code but you have to not be so lazy to ignore them. Larry Wall once stated that programmers have the trait of being lazy and this is probably the main roadblock that stops people from taking the extra time to write a unit test first. Great Article Jeff.

  473. Avatar
    weather stations about 1 year later:

    This is a very informative article.I was looking for these things and here I found it. I am doing a project and this information is very useful me. If you are interested, but this is my duty to inform you that virtual administrative assistant a very dedicated service and can be applied anywhere you want and get better results.

  474. Avatar
    Car Review about 1 year later:

    . Larry Wall once stated that programmers have the trait of being lazy and this is probably the main roadblock that stops people from taking the extra time to write a unit test first. Great Article Jeff. I’m stunned at the number of people who have come out in the comments against TDD. It has obvious benefits for crafting better code but you have to not be so lazy to ignore them

  475. Avatar
    Pak Wheel about 1 year later:

    i came to your blog instantly and amazed to see that its full of info what i was searching for

  476. Avatar
    New Motorcycle tank bags about 1 year later:

    “But that does not make me feel better, because one thing you learn after four decades of coding is that code quality matters a hell of a lot.” This is true, but have a business to work on things further. They are not arguing against the quality of code as well as TDD, which they say helps programmers write better code mediocre. Write tests that intentionally breaks, and then write the code that makes testing step is a step too far for some people, especially if you are writing code and pass the exam (I would say that the developers and write enough good code). “For example, I FitNesse at about 90%. This requires very little effort on my part and pay huge dividends. What dividends? What indicators are used? If you are as bad of a software developer that 90% of the code that is written is not trustworthy unless code is written PLUS all original code? “Once again, this is a symptom of someone who has focused on business and the loss of 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

  477. Avatar
    Latest Automotive Update about 1 year later:

    Good Post Joll, In my experience doing something as simple as having a candidate writing code in front of you can save countless hours of grief and can be much more effective than any certification could ever be.

  478. Avatar
    Business Content about 1 year later:

    should we be creating questions for every relatively well-known programmer? How many programmers really care which of two particular programmers are better? Business content

  479. Avatar
    keep fit at home about 1 year later:

    Very good post as always. We webmasters can’t be jack-of-all-trades.

  480. Avatar
    Computer Software & Hardware about 1 year later:

    Great Post. The more tests you have telling you the same thing, the more consistency and validity they have. Any one logical error will expose a systematic inconsistency. Thanks for your info Jeff.

  481. Avatar
    Kristina white furniture about 1 year later:

    Kristina white furniture – CPW Kristina Distress White Painted Furniture – Contemporary, modern, cheap home bedroom Furniture Sale London, Oak, Pine Living Room Furniture, leather dining room chairs, solid dining tables furniture, oak, pine wardrobes, chest of drawers, Hi fi,Tv units and stands, sofas, bookcases . white furniture | Coppell OBGYNs

  482. Avatar
    paridhisnv@gmail.com about 1 year later:

    Thank you for the article. I just about passed your we site up in Bing but now I’m glad I clicked the link and got to go through it. I’m definitely a lot more informed now

  483. Avatar
    Automotive Tips about 1 year later:

    Always glad to see Jeff Some bashing. ;) Good job !! This is a nice article to be read.. The difficulty of translateing has been paid by the quality of this article. Thanks

  484. Avatar
    kitchen canister about 1 year later:

    Quality does matter. But perfection is not necessary.

  485. Avatar
    apothecary jars about 1 year later:

    Same kind of thought as above. Thanks for sharing.

  486. Avatar
    apothecary jars about 1 year later:

    Same kind of thought as above. Thanks for sharing.

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

    Thanks for giving us objective information, much appreciate this!

  488. Avatar
    Woman Lifestyle about 1 year later:

    Good Post Joll, In my experience doing something as simple as having a candidate writing code in front of you can save countless hours of grief and can be much more effective than any certification could ever be. Thanks.

  489. Avatar
    Photography Resources about 1 year later:

    It was a beneficial workout for me to go through your webpage. 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. Thanks.

  490. Avatar
    Digital Computer Systems about 1 year later:

    Great post. Thanks for sharing this great article! That is very interesting Smile I love reading and I am always searching for informative information like this.

  491. Avatar
    logosafari.com about 1 year later:

    Quality means everything!

  492. Avatar
    Sports about 1 year later:

    Oh my dear Bobbybob it’s such a great article i like to read it and i’m very pleasent about the information in it. Thanks.

    Greetz Angie

  493. Avatar
    morewant about 1 year later:

    To get the paypal certificate and setup your own, we will need to log into the sandbox with your business test account. Sample Construction Resume

  494. Avatar
    New Privacy fence designs about 1 year later:

    @ Josh – Ironically, these designations do not mean anything in the software as there is no governing body to decide what is best in class “and what it means and how they compare. How long have you been doing this? All others. The tests are important. automated testing and TDD are very, very important. There is no unit tests, functional tests or integration tests? just stupid. Do not test at all? I do not even know what that means. Choose a job you love, and you will never have to work a day in your life.

  495. Avatar
    Kids Costumes about 1 year later:

    fsef

  496. Avatar
    monita about 1 year later:

    Immigrant have a plenty reason to leave their country. Several reason is just the same. They want to have a better life and they think in their origin county, they don’t have a change for that. lottery results

  497. Avatar
    IP???????? about 1 year later:

    t to have a better life and they think in their origin county, they don’t have

  498. Avatar
    Business Directory about 1 year later:

    there is no governing body to decide what is best in class “and what it means and how they compare. How long have you been doing this? All

  499. Avatar
    Unterwäsche about 1 year later:

    Spolsky also backs off on his criticism of SOLID and admits he didn’t know what he was talking about in Stackover #39. This should also be mentioned if we talk about this and other Unterwäsche Subjects. Guys just remember this…

  500. Avatar
    HealthMaster Reviews about 1 year later:

    Quality always matters

  501. Avatar
    Sage about 1 year later:

    I agree Uncle Bob, at the end of the day, its important in any sphere to do the best job you can do.

  502. Avatar
    Sage about 1 year later:

    Just reading through the comments interesting that Joel took the time out to comment.

  503. Avatar
    selfprep about 1 year later:

    In my experience doing something as simple as having a candidate writing code in front of you can save countless hours of grief and can be much more effective than any certification

  504. Avatar
    Thomas about 1 year later:

    Testkings is appreciative to advertise the new and arising certifications alertness guides and braindumps with appropriate abatement for their registered candidates and for new candidates alone for bound time of period. Don’t decay your time, abstraction by testking’s provided assay alertness kit, save money and access your certifications with accomplished scores. By the Grace of Almighty God, our braindumps are broadly acclimated by the IT able common and humans like to acquirement braindumps and convenance analysis from testking. You will not alone canyon your acceptance assay but, enhance your ability and abilities about the assay artefact you are traveling to pursue. testking 70-685 testking 70-663 testking 1Y0-A08 testking 642-975 testking 642-426

  505. Avatar
    anchorage movers about 1 year later:

    I don’t really agree – I think that in the end quality does matter.

  506. Avatar
    anchorage movers about 1 year later:

    I don’t really agree – I think that in the end quality does matter.

  507. Avatar
    Alix about 1 year later:

    I certainly enjoyed the way you explore your experience and knowledge of the subject! Keep up on it. Thanks for sharing the info testking 1z0-051|testking 642-446|testking 350-018|testking 70-291

  508. Avatar
    Life style about 1 year later:

    though they might love to enskeleton every structure with admantium, even great engineers understand that the cost of doing so exceeds any value it delivers. (not to mention demolition costs down the line!). they hold to tolerances of failure and yielding stress.

  509. Avatar
    betta fish care about 1 year later:

    Good Post Joll, In my experience doing something as simple as having a candidate writing code in front of you can save countless hours of grief and can be much more effective than any certification could ever be.

  510. Avatar
    Monitor Sport about 1 year later:

    Great Post. The more tests you have telling you the same thing, the more consistency and validity they have. Any one logical error will expose a systematic inconsistency. Thanks for your info Jeff.

  511. Avatar
    Daily Magazine about 1 year later:

    should we be creating questions for every relatively well-known programmer? How many programmers really care which of two particular programmers are better

  512. Avatar
    Joel Marion about 1 year later:

    GReat information, very useful for all us

  513. Avatar
    ek gelir imkanlar? about 1 year later:

    Good post,I think so! Dear Admin, I thank you for this informative article.

    Risk almadan Sermayesiz Evinizden yönetebilece?iniz Kendi i?inizin sahibi olmak istermisiniz ?

  514. Avatar
    GPS Fleet Management about 1 year later:

    I think I will become a great follower.Just want to say your article is striking. The clarity in your post is simply striking and i can take for granted you are an expert on this subject.

  515. Avatar
    Silicone Molding about 1 year later:

    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 Moldsfor their worldwide customers.

  516. Avatar
    How To Lose Weight Fast At Home about 1 year later:

    i was listening to the podcast during my way to work when they started talking about TDD and quality, and I the same feeling. Honestly, I started laughing in the bus..

    It’s great to know I was not alone. thanks for the response, bob.

    How To Lose Weight Fast At Home

  517. Avatar
    money clips about 1 year later:

    Quality always matters. Just depends on the context of what your talking about.

  518. Avatar
    rbalboa about 1 year later:

    Quality is the most important in any product or service. Quality always matters- Brother CS6000i

  519. Avatar
    heyka1 about 1 year later:

    Hey! I was just having giant pleasure reading your site. It was great time for me indeed. If there would be more sites with so much usefull informations like this one, then my knowledge wouldn’t be so painful to get for me. I can assume that there would be no necessery to spare so much time on searching informations. So in conclusion i just wanted to show you how i am grateful for your effort to make this site. Really great site, really! I like all article’s and I always read this. Visit my site’s: seo artyku?y | seo sklep | zaplecze pozycjonerskie | mocne linki

  520. Avatar
    http:www.cluehunt.com about 1 year later:

    It would be nice to think that quality means quality. But in this day and age people are cutting a lot more corners and leaving a lot more open doors then should be. The question begs at whose expense. http://www.cluehunt.com/>Cluehunt

  521. Avatar
    dealanzeiger.ch about 1 year later:

    awesome post, many thanks. It’s all bout the two Q’s: Quality and Quantity and their ratio to each other

  522. Avatar
    Mergers & Acquisitions Law Firm about 1 year later:

    Very well written article. I appreciate your effort taking the time to post these informative blog posts.

    Thank you and I look forward to reading more if your material in the coming years.

    !

  523. Avatar
    jgpg about 1 year later:

    Thanks for sharing the information. Quality really matters. – free macbook

  524. Avatar
    jgpg about 1 year later:

    good post. thank you for this informative article – Get Rid of Wrinkles

  525. Avatar
    dominicanhub@gmail.com about 1 year later:

    I strongly disagree with him, in every way of living, we always make sure that we give or receive product or anything in best quality. Therefore, quality defies the assurance of whatever benefits we can get to it.

    —-—-—-—-—-—--
    cursos de ingles en el extranjero

  526. Avatar
    Internet Marketing Leeds about 1 year later:

    Very well written article. It will be supportive to anyone who usess it, as well as me. Keep doing what you are doing – i will definitely read more posts.

  527. Avatar
    r.balboa about 1 year later:

    intresting post. and its all about Quality. thanks for the post. – Liberar Blackberry

  528. Avatar
    r.balboa about 1 year later:

    it’s a great article. i like to read it and i’m very pleasant about the information in it. Thanks -Car Hire

  529. Avatar
    mye alcober about 1 year later:

    I strongly disagree with him, in every way of living, we always make sure that we give or receive product or anything in best quality. Therefore, quality defies the assurance of whatever benefits we can get to it.

    Indoor Air Quality

  530. Avatar
    mathew about 1 year later:

    I’m sick of absolutely everything about her. But our famously “liberal media” insists she’s important and therefore covers every breath she takes with the intensity of a love-struck teenager.

  531. Avatar
    Balboa about 1 year later:

    I agree completely with the thoughts – jack lalanne juicer

  532. Avatar
    Balboa about 1 year later:

    nice useful informations in this article. “if you can’t keep your code clean, no way can you keep your systems clean” thanks for such a nice post – cheap babies clothes

  533. Avatar
    jogging tips about 1 year later:

    Very interesting article. There’s some great information here.

  534. Avatar
    Sheriff about 1 year later:

    An awesome post with intresting informations – QuickBooks Point of Sale

  535. Avatar
    Sheriff about 1 year later:

    I completely agree with the thoughts – I hire people to do that for me so I can keep my technical skills as sharp as possible. amazing informations shared in this topic – Phoenix Accountant

  536. Avatar
    Backlinks about 1 year later:

    Thanks for taking the time to discuss and share this with us, I for one feel strongly about it and really enjoyed learning more about this topic. I can see that you possess a degree of expertise on this subject, I would very a lot like to hear much more from you on this subject matter – I have bookmarked this page and will return soon to hear additional about it.

  537. Avatar
    Contestation Amende about 1 year later:

    I am really enjoying the theme/design of your website. Do you ever run into any internet browser compatibility problems? A small number of my blog visitors have complained about my site not working correctly in Explorer but looks great in Opera. Do you have any ideas to help fix this problem?

  538. Avatar
    free vpn account about 1 year later:

    Very interesting article. There’s some great information here.

  539. Avatar
    free vpn account about 1 year later:

    Very interesting article. There’s some great information here.

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

    No,No,No,the quality do matter to all of us,except u have a Buddhist idea.

  541. Avatar
    Derby Advertising Agency about 1 year later:

    Of course quality matters, always do the best job you can.

  542. Avatar
    Derby Advertising Agency about 1 year later:

    Quality is king – irrespective of the endevour

  543. Avatar
    Senior picture ideas about 1 year later:

    Jeff and Joel both write well and can tell funny stories. That’s it. They are artists in the field of software. That’s the only reason to ever read or listen to them, to be entertained. For good advice, look elsewhere. War will exist until that distant day when the conscientious objector enjoys the same reputation and prestige that the warrior does today.

  544. Avatar
    Good Running Shoe about 1 year later:

    I strongly disagree with him, in every way of living, we always make sure that we give or receive product or anything in best quality. Therefore, quality defies the assurance of whatever benefits we can get to it.

    Good Running Shoes

  545. Avatar
    sell textbooks online about 1 year later:

    Thanks for taking the time to discuss and share this with us, I for one feel strongly about it and really enjoyed learning more about this topic. I can see that you possess a degree of expertise on this subject, I would very a lot like to hear much more from you on this subject matter – I have bookmarked this page and will return soon to hear additional about it.

    sell textbooks online

  546. Avatar
    Cortes de Cabelo about 1 year later:

    Thanks for sharing this article. I will back again! From Cortes de Cabelo.

  547. Avatar
    Cortes de Cabelo about 1 year later:

    Great Post. The more tests you have telling you the same thing, the more consistency and validity they have.

  548. Avatar
    John Romaniello about 1 year later:

    Nice post!! I could not agree more with Jeff and Joel

  549. Avatar
    Facebook Tag Photos about 1 year later:

    No matter what are doing for life and no matter what we are talking about here Quality always matter. Maybe Quality wouldn’t matter for a period of time in a project or something but sooner or later the Quality meter will come up and take you higher or send you down where you should be. this is my 2 cents!

  550. Avatar
    self prep about 1 year later:

    thanks for publish such a great and colorful blog..i like it very much..must say,very innovative ideas of your and its great implementation…thank u again for publish it.it is a new thing hope people like it…..a good blog with good topic…..posts will contribute more in this topic very soon…..

  551. Avatar
    One24 about 1 year later:

    Whats up, This is a wonderful summation, I located your blog checking google for any similar subject and observed this. I couldnt find as well significantly other tips and information on this posting, so it was fantastic to discover this one. I will almost certainly be returning to think about a number of other articles which you have written another time.

  552. Avatar
    kid rock tickets about 1 year later:

    Great Post. The more tests you have telling you the same thing, the more consistency and validity they have.

  553. Avatar
    [url=http://www.lionstechsupport.com]It support Manchester UK[/url] [url=http://www.lionstechsupport.com]LTS[/url] about 1 year later:

    Very informative post, thank you.

  554. Avatar
    Beats By Dr.Dre about 1 year later:

    http://www.beatsbydremall.com/

  555. Avatar
    machiaj profesional about 1 year later:

    I strongly disagree with him, in every way of living, we always make sure that we give or receive product or anything in best quality. Therefore, quality defies the assurance of whatever benefits we can get to it.

    Good Running Shoes

  556. Avatar
    nose huggie about 1 year later:

    The artwork here is just amazing. They are very talented to do this. Keep up the good work

  557. Avatar
    nose huggie about 1 year later:

    The artwork here is just amazing. They are very talented to do this. Keep up the good work

  558. Avatar
    Sheriff about 1 year later:

    Good job done by Uncle Bob, nice topic on Quality doesnt matter that much. thanks for this post – sit up bar

  559. Avatar
    Forklifts Hire about 1 year later:

    Wow! Thank you! I permanently needed to write on my website something like that. Can I include a fragment of your post to my blog?

  560. Avatar
    taylor swift musical life about 1 year later:

    I like it as well because it supports many of my other accounts but io like to read your posts

  561. Avatar
    Color wheel chart ideas about 1 year later:

    “People who say things like this can only have never written a heck of a lot of code. For what they are doing is spending a huge amount of time to write a lot of extra code, a lot of talk, a lot of files and a million little class to do nothing and thousands of little interface classes and a lot of strength to each of these kinds of armed individual to leave the world alone and doing things, and you will not need. ” Curiously, this review of the transcript smells to me of someone who has written a lot of unnecessary code. I made a lot of TDD and found that allows for the possibility of getting rid of all that excess code that the programming geniuses such as decantation Spolsky in your code. Spolsky apparent lack of understanding or TDD incremental refactoring. Save a boyfriend for a rainy day – and another, in case it doesn’t rain.

  562. Avatar
    Coursework Samples about 1 year later:

    Great information thanks for sharing this with us.In fact in all posts of this blog their is something to learn . Term Papers Services UK your work is very good and i appreciate your work and hopping for some more informative posts . Again thanks

  563. Avatar
    inground pool covers about 1 year later:

    Of course quality matters – without quality our world would just be a mess!

  564. Avatar
    janet jackson story about 1 year later:

    Dragon’s Gold v Trans is an interesting question for me, but the year definitely sounds weak.

  565. Avatar
    mini ordinateur portable about 1 year later:

    I’m so glad I found your article. I was able to get the insight I was looking for. Thanks again and keep this up

  566. Avatar
    Cardoza about 1 year later:

    “I think that maintaining your technical chops is a full time job. For that reason I have avoided becoming a business wonk. I hire people to do that for me so I can keep my technical skills as sharp as possible and remain relevant to my profession. I don’t believe I can offer technical advice unless I am living that technical advice”. – good words and a nice article – Health insurance quote

  567. Avatar
    attending community college about 1 year later:

    Your post is rocking and knowledgeable. I really appreciate the way you write to mention nothrow/NS_OK-always . It is pretty big . I would like to read more from you.

  568. Avatar
    machining about 1 year later:

    Good job with the blog and the articles that are on it.

  569. Avatar
    machining about 1 year later:

    Good job with the blog and the articles that are on it.

  570. Avatar
    interim about 1 year later:

    This post is highly informative.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.Thanks for nice info. It’s useful for me. Can you give me some more information with details.

  571. Avatar
    Jefferson about 1 year later:

    Great job done by Uncle Bob. thanks for this nice article. “I hire people to do that for me so I can keep my technical skills as sharp as possible and remain relevant to my profession. I don’t believe I can offer technical advice unless I am living that technical advice.” i agree on those words – inspirational quotes

  572. Avatar
    EVI NIKEE about 1 year later:

    Hi guys!! here are some good links to find E-books Final Phase Fat Loss and Suzanne Gudakunst and also check out Rob Poulos and Tom Venuto .

  573. Avatar
    dkjehdop@gmail.com about 1 year later:

    The first option is they find their site direct a explore engine. Secondly they find their site by clicking on a link from another website or page that relates to the topic in which they are interested. Occasionally, they find a site by hearing about it from a friend or reading in an article.Thank You wrinkle cream

  574. Avatar
    Asian photography http://www.wedding.jabezphotography.com/Weddings/Asian-wedding-photography/15541313_Qc5c3 about 1 year later:

    quality matter most, most of the time!

  575. Avatar
    <a href="http://www.wedding.jabezphotography.com/Weddings/Asian-wedding-photography/15541313_Qc5c3">Asian Wedding photography</a> about 1 year later:

    quality aways matter

  576. Avatar
    jeniliaanthoni about 1 year later:

    Good job done by Uncle Bob. This is a superb article. “I hire people to do that for me so I can keep my technical skills as sharp as possible and remain relevant to my profession. I don’t believe I can offer technical advice unless I am living that technical advice.” I am supporting this comment. wren birdhouse

  577. Avatar
    bookkeepingservicesuk about 1 year later:

    Really like your blog content the way you put up the things…I’ve read the topic with great interest.

    bookkeeping services

  578. Avatar
    orange county sign company about 1 year later:

    Beautifully articles and well-written.

  579. Avatar
    document archiving software about 1 year later:

    Stunning article really. Dude.. I am not much into reading, but somehow I got to read lots of articles on your blog. Its amazing how interesting it is for me to visit you very often.

  580. Avatar
    Lago di caldonazzo about 1 year later:

    the real quality is this

    vendita computer lago di caldonazzo

  581. Avatar
    Forbrukslån about 1 year later:

    Nice blog! :)

  582. Avatar
    Forbrukslån about 1 year later:

    Nice blog! :)

  583. Avatar
    stefan about 1 year later:

    realy a nice blog thanks for sharing

  584. Avatar
    rc planes about 1 year later:

    I think quality is matters

  585. Avatar
    zeroc about 1 year later:

    Thanks to knowledge for me.

  586. Avatar
    Christian Neeser about 1 year later:

    Just to say thanks not only be as phenomenal clarity of his writing. I am going to just get the RSS feed to stay

  587. Avatar
    p90x about 1 year later:

    Thanks for the article Bob, enjoyed reading.

  588. Avatar
    lago di caldonazzo about 1 year later:

    the quality is essential bob

    visit

    lago di caldonazzo

    vendita computer

  589. Avatar
    lago di caldonazzo about 1 year later:

    GREAT BOB

    VISIT

    lago di caldonazzo

    vendita computer

  590. Avatar
    James007 about 1 year later:

    I learned a lot from the article and this information may come in handy to me in the future. So i thanks you! mobile website development

  591. Avatar
    kazz.r@tlen.pl about 1 year later:

    Hi. Your post is very good and my familly like your writing style. I think you can go to my blog and? and i dont how to RECIVE. Great 4 you!

  592. Avatar
    Agus Chandra over 2 years later:

    I’ve never spent any time at a shop where they lost productivity because of quality. I’ve been at plenty where productivity was in the toilet because of the lack of quality. In the face of that, how does anyone say that quality is unimportant.

    Lifestyle News Blogger

    Discount Item

  593. Avatar
    Rear tine tillers over 2 years later:

    This blog post reads like a rant. I question, now, how much any affirmer in the comments honestly values software software over-the-way-they’ve been-told—is-right. A million systems function without unit tests gloriously. Take your head out of the sand and look at the code that’s Stood the test of time. Statistics are on Joel’s side of the argument. Always good to see people forming together to find more ways of free energy. This world needs more persons like you, great blog post, look forward to reading more. thanx

  594. Avatar
    delonghi espresso machine over 2 years later:

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

  595. Avatar
    Johnny Luck over 2 years later:

    Great post, I really like this information it´s very useful. thanks a lot for share it

  596. Avatar
    Free WWE Games over 2 years later:

    Quality is very important in my opinion. WWE Games Online Car Parking Games Online WWE Online Games Ben 10 Games Online

  597. Avatar
    Ben 10 Games Online over 2 years later:

    Interesting post…

  598. Avatar
    play free ben10game over 2 years later:

    I could not agree more with Jeff and Joel

  599. Avatar
    John Manhattan over 2 years later:

    This information it´s very useful for all us. Great job

  600. Avatar
    John Groceries over 2 years later:

    Absolutely fantastic this post, the author did a great job. Thank´s for share this information with us

  601. Avatar
    James Redface over 2 years later:

    I liked very much to read this post, very good information. Good job

  602. Avatar
    amisha over 2 years later:

    I think I will become a great follower.Just want to say your article is striking. The clarity in your post is simply striking and i can take for granted you are an expert on this subject. golf umbrellas

  603. Avatar
    web design rotherham over 2 years later:

    Of course quality counts. Just look at the comments on here! lol

  604. Avatar
    williams over 2 years later:

    After reading the whole story i come to the conclusion that quality dost matters. As for as quality is concern claim guide provides you help after getting injury.

  605. Avatar
    williams over 2 years later:

    After reading the whole story i come to the conclusion that quality dost matters. As for as quality is concern claim guide provides you help after getting injury.

  606. Avatar
    sadia http://best-forexrobots.org/ over 2 years later:

    I liked very much to read this post.

  607. Avatar
    sadia over 2 years later:

    i liked this post.

  608. Avatar
    Shine over 2 years later:

    Nice post, I’ll be love your post and following you on twitter. claim guide is the best if you have an injury

  609. Avatar
    Shine over 2 years later:

    I’ll be loving you after reading the whole story. claim guide is best if you have an injury.

  610. Avatar
    Shine over 2 years later:

    I’ll be loving you after reading the whole story. claim guide is best if you have an injury.

  611. Avatar
    buy regenerect over 2 years later:

    There always a fine line between quality and quantinty

  612. Avatar
    buy regenerect over 2 years later:

    you have many valid points

  613. Avatar
    Fans Authentic Jerseys over 2 years later:

    Super Bowl Authentic Jerseys

    Aaron Rodgers Super Bowl Jersey

    Clay Matthews Super Bowl Jersey

    Charles Woodson Super Bowl Jersey

    Donald Driver Super Bowl Jersey

    Jermichael Finley Super Bowl Jersey

    Ryan Grant Super Bowl Jersey

  614. Avatar
    sugarcrm development over 2 years later:

    Best seo company Corelynx provide good SEO Services for promote your business. Want to need good seo services then contact us.

  615. Avatar
    cad outsourcing over 2 years later:

    Logiseek is a fast-growing AutoCAD Services Company provides 2D Drafting, AutoCAD Drafting, CAD Conversion and raster to vector, engineering drawing services.

  616. Avatar
    php training over 2 years later:

    Corelynxacademy offers php training and PHP Training in Kolkata with live international projects.

  617. Avatar
    Web Developer over 2 years later:

    If developers coded like they did on the x486’s with 32mb of ram the applications of today would run much faster and efficiently.

  618. Avatar
    soft discount code 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.

  619. Avatar
    soft discount code 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. Top post. I look forward to reading more. Cheers

  620. Avatar
    claim guide over 2 years later:

    Interesting topic what you have shared with us. Your writing skill is really very appreciative. I love when you share your views through the best articles.Keep sharing and posting articles like these.This article has helped me a lot.Keep posting this stuff.

    claim guide

  621. Avatar
    claim guide over 2 years later:

    Interesting topic what you have shared with us. Your writing skill is really very appreciative. I love when you share your views through the best articles.Keep sharing and posting articles like these.This article has helped me a lot.Keep posting this stuff.

  622. Avatar
    cheap thomas sabo jewellery over 2 years later:

    Shauna, glad this worked out so perfectly for you!

  623. Avatar
    ghd australia over 2 years later:

    GHD australia have fairly very rated for rather a few of elements just like pattern durability and ease of use.

  624. Avatar
    Auspect Daily over 2 years later:

    I liked the designing..Its very interesting to know about the concept about designing..thanks for post this article..it helps me to understand the new concept related to designing.

  625. Avatar
    Unhas Decoradas over 2 years later:

    I believe that quality does not matter anyway.

  626. Avatar
    <a href="http://www.finansa.no/billaan.aspx">Billån</a> over 2 years later:

    Web Devloper,

    Can you give me an example?

  627. Avatar
    Billån over 2 years later:

    Web Devloper,

    Can you give me an example?

  628. Avatar
    Kredittkort over 2 years later:

    Sometimes it’s more about quantity, but yeah quality should matter!

  629. Avatar
    Tricotaje de mana over 2 years later:

    How can quality doesn’t matter much?

  630. Avatar
    Orthotics over 2 years later:

    I discovered so numerous interesting stuff in your weblog especially its discussion. From the tons of comments on your articles, I guess I am not the only one having all of the enjoyment here! maintain up the great work.

  631. Avatar
    kitchen Cabinets Orange County over 2 years later:

    Although Salt’s work has developed through several distinct phases, it has generally focussed on images of cars, often shown wrecked or abandoned within a suburban or semi-rural American landscape, with the banality and dishevelment of the subject matter contrasting with the immaculate and meticulous nature of the work’s execution.

  632. Avatar
    Artifical Trees over 2 years later:

    I consider it a discipline worth following. I don’t write all my tests first. Some small number of them are simply more convenient to write after the code. There is even some code I don’t write tests for at all, because it’s just not worth it. But those are exceptions to the rule. The vast majority of the code I write, I write test first. (And no, Joel, this isn’t a waste of my time.

  633. Avatar
    Zert over 2 years later:

    The study participants’ elavil online average heart rate was a brisk 151 emsam online beats per minute, about 84% of their age-predictedzanaprin online maximum heart rates. Their average oxygen haldol online consumption was about 20 milliliters per kilogram per minute, resulting in about 7 calories burned for each minute seroquel online of hooping, or about 210 calories burned in a half-hour class.

  634. Avatar
    Kami over 2 years later:

    The findings zovirax online from our commissioned diltiazem online study indicate that hooping delivers a total-body zyban online workout that can improve flexibility and balance blopress online while strengthening the back, abdominal asacol online, arm, and leg muscles,” says Cedric X. Bryant, PhD, chief scientific officer of ACE.

  635. Avatar
    New York SEO over 2 years later:

    Quality doesn’t matter? Name one lasting business that has gotten away with crap quality for more than 10 years.

    It matters.

  636. Avatar
    haemophilus influenzae over 2 years later:

    I have to disagree with this post quality is very important in everything if there is no quality in something, will people even care about it?

    haemophilus influenzae | ketones |

  637. Avatar
    christian louboutins over 2 years later:

    Second, the price of our Gucci outlet, Louis Vuitton outlet, Hermes bags is are reasonable and affordable.

  638. Avatar
    Cairns hostels over 2 years later:

    This blog is really helpful for people trying to get into Preimplantation Keep up the good work. Thanks for sharing with other people! Cairns hostels

  639. Avatar
    prom dresses 2011s over 2 years later:

    It frighten me to think that new

  640. Avatar
    http://ekspressfinans.no over 2 years later:

    This was a good blog! Forbrukslån uten sikkerhet, lån.

  641. Avatar
    http://ekspressfinans.net over 2 years later:

    This was a good blog! Forbrukslån uten sikkerhet, lån.

  642. Avatar
    http://www.dallas-cowboys-shop.org/ over 2 years later:

    However , if jowly owners usually are bound and also determined to fly that NFL in to a smoking crater by having a lockout

  643. Avatar
    http://www.dallas-cowboys-shop.org/ over 2 years later:

    let them. The experience at it really is highest a higher level athleticism is now piloted as a result of its minimum of inventiveness,

  644. Avatar
    cena zlota over 2 years later:

    I found your website perfect for my needs,I really loved reading. It was very well authored and easy to undertand.Thanks a lot for sharing your thoughts..

  645. Avatar
    Html Kodlar? over 2 years later:

    Very very nice. Great article. Thanks for sharing. Html Kodlar?

  646. Avatar
    Html Kodlar? over 2 years later:

    Very informative. Thanks. Html Kodlar?

  647. Avatar
    Billån over 2 years later:

    Whatts zup?! I totally agree!

  648. Avatar
    rick over 2 years later:

    agreed :) thanks for sharing

  649. Avatar
    Tim over 2 years later:

    I agree with joel .Thank you for the good article.I just had a new Magnavox mdr513h DVR.It is the nice one .

  650. Avatar
    osaki over 2 years later:

    I agree with tim the Magnavox Mdr513h is great !

  651. Avatar
    Swimwear for juniors over 2 years later:

    Wearing a turtleneck is like being strangled by a really weak guy, all day. Wearing a backpack and a turtleneck is like a weak midget trying to bring you down.

  652. Avatar
    <a href="http://www.mdr513h.org/">mdr513h</a> over 2 years later:

    This is a nice article.I ‘ve found some articles that help too,but this one is the best. Thank you.

  653. Avatar
    mdr513h over 2 years later:

    This is a nice article.I ‘ve found some articles that help too,but this one is the best. Thank you.

  654. Avatar
    first time mom over 2 years later:

    Hello uncle Bob !! I agree with you.

    So cool!!

  655. Avatar
    www.quantekshop.co.uk over 2 years later:

    That was a really good article, thanks for taking the time to put it together! You have managed to point out some very good points. I can’t say that I completely agree about some points, but you certainly have a unique perspective. Anyway, I like your post

    Gate Remote Control

  656. Avatar
    www.quantekshop.co.uk over 2 years later:

    That was a really good article, thanks for taking the time to put it together! You have managed to point out some very good points. I can’t say that I completely agree about some points, but you certainly have a unique perspective. Anyway, I like your post

    Gate Remote Control

  657. Avatar
    dermatology over 2 years later:

    Thanks for a wonderful blog, will add my Face book account!

  658. Avatar
    Red hair shades over 2 years later:

    Kelvin- I do agree that this is the prevalent trend, such as the gaming industry where throw-away code is written because RTM date is a key factor. There have been many a research paper that attempts to gauge various measures of code quality directly to cost-effectiveness. Kelvin there are many places where code quality will literally make or break the company. Most companies have no iota of a clue how much ‘bad software’ is costing them. This blog shows you some of the top tips and information on how to go about SEO, link building, articles and search engine news.

  659. Avatar
    http://cheapsynthroid.org over 2 years later:

    People occasionally write cheap doxycycline to me to thank me for all these books, apparently under cheap glucophage the impression that I’m responsible for putting them up. But actually, I’ve produced almost cheap levaquin none of them. I’ve tried my best to be a catalyst and guide for these cheap levitraonline online books, but without all you folks producing, reading, and sharing these books online, my site would still be a little static web page, rather than one of many gateways cheap synthroid to an ever-growing library online. Two new bills introduced in the US Congress this past week aim to increase public access to literature.

  660. Avatar
    http://cheapsynthroid.org over 2 years later:

    People occasionally write cheap doxycycline to me to thank me for all these books, apparently under cheap glucophage the impression that I’m responsible for putting them up. But actually, I’ve produced almost cheap levaquin none of them. I’ve tried my best to be a catalyst and guide for these online books, but without all you folks producing, reading, and sharing these books online, my site would still be a little static web page, rather than one of many gateways cheap synthroid to an ever-growing library online. Two new bills introduced in the US Congress this past week aim to increase public access to literature.

  661. Avatar
    tim over 2 years later:

    Nice info and articles .Thank you.

  662. Avatar
    Where to sell my diamond ring in LA over 2 years later:

    I was very glad to read this article, i learned and had fun reading it. You have managed to point out some very good points.

  663. Avatar
    http://ekspressfinans.net over 2 years later:

    I say, go for quality! Thank you for a good read!

  664. Avatar
    oil mill plant over 2 years later:

    This was a good blog! Forbrukslån uten sikkerhet, lån.

  665. Avatar
    Laser Man over 2 years later:

    I am also agree with you word, “I think that 100% code coverage is unachievable”. 100% outcome in every job is impossible. We may target for 100% success so that we can achieve 90-95% at-least.

    Lasik Eye Surgery

  666. Avatar
    Money Mutual over 2 years later:

    “I have a question. The iPhone is IPodu’s nephew or son” – I wanna know too.

  667. Avatar
    Forbrukslån over 2 years later:

    Thanks for the interesting article

  668. Avatar
    Pittsburgh events over 2 years later:

    I was very glad to read this article, i learned and had fun reading it. You have managed to point out some very good points.

  669. Avatar
    holidays over 2 years later:

    Jeff and Joel sound like the Beavis and Butt Head of software best practices.

  670. Avatar
    topanky over 2 years later:

    Awesome article – I´ve really enjoyed it! Great job- keep on doing what you´re doing

  671. Avatar
    hotels over 2 years later:

    Thank you so much for this! I havent been this thrilled by a blog for a LONG time!

  672. Avatar
    Übersetzungsagentur over 2 years later:

    Quality is always important!

  673. Avatar
    Cyatt over 2 years later:

    Totally agree! Well said.

  674. Avatar
    cable ties over 2 years later:

    I agree, too! very important.

  675. Avatar
    cable ties over 2 years later:

    nicely said!

  676. Avatar
    cable ties over 2 years later:

    important piece of article.

  677. Avatar
    Aviation Insurance over 2 years later:

    I have found some amazing posts here. please keep posting. i m fond of reading and i want to know about new things. there are lot of interesting and knowledgeable things for me. i will be a regular visitor of this site.Aviation Insurance

  678. Avatar
    Lån Uten Sikkerhet over 2 years later:

    I like what you write sometimes we must take a step back and consider the VALUE.

  679. Avatar
    Monster Beats Headphones over 2 years later:

    Beats Headphones, By three years insistent research and development by the researcher ,the magic Beats Dr Dre Headphones was born in the world. Monster Beats Headphones feature highly and advanced materials and construction to deliver a new level of audio accuracy and clarity. Beats Limited Edition, Combining extra-large speaker drivers and a high-power digital amplifier, Lady gaga Headphones delivers an unprecedented combination of super deep bass, smooth undistorted highs, and crystal clear vocals never heard before from Monster Butterfly Headphones. Monster miles davis tribute Headphones are designed and precision tuned to accurately reproduce the unique acoustic tones of jazz. This faithfulness to a broad spectrum of sonic colors lets you re-discover all of your favorite music, even beyond jazz, in exciting new detail. Diddybeats In-ear Headphones – You’ll hear subtleties that you’ve never heard before, and find new things to appreciate with every listen – Rosetta Stone.

  680. Avatar
    Monster Beats Headphones over 2 years later:

    Beats Headphones, By three years insistent research and development by the researcher ,the magic Beats Dr Dre Headphones was born in the world. Monster Beats Headphones feature highly and advanced materials and construction to deliver a new level of audio accuracy and clarity. Beats Limited Edition, Combining extra-large speaker drivers and a high-power digital amplifier, Lady gaga Headphones delivers an unprecedented combination of super deep bass,

  681. Avatar
    <a href="http://www.headphones-beats.com/">Monster Beats Headphones</a> over 2 years later:

    Beats Headphones, By three years insistent research and development by the researcher ,the magic Beats Dr Dre Headphones was born in the world. Monster Beats Headphones feature highly and advanced materials and construction to deliver a new level of audio accuracy and clarity. Beats Limited Edition, Combining extra-large speaker drivers and a high-power digital amplifier, Lady gaga Headphones delivers an unprecedented combination of super deep bass,

  682. Avatar
    Beats Headphones over 2 years later:

    Beats Headphones, By three years insistent research and development by the researcher ,the magic Beats Dr Dre Headphones was born in the world. Monster Beats Headphones feature highly and advanced materials and construction to deliver a new level of audio accuracy and clarity. Beats Limited Edition, Combining extra-large speaker drivers and a high-power digital amplifier, Lady gaga Headphones delivers an unprecedented combination of super deep bass,

  683. Avatar
    rosetta stone over 2 years later:

    We update designer bags timely when the new styles available. Low price, high quality, perfect after-sale service.

  684. Avatar
    facebook marketing chicago over 2 years later:

    thanks for sharing this!!

  685. Avatar
    Harrow removals over 2 years later:

    Always glad to see some Jeff bashing:)

  686. Avatar
    Forbrukslån over 2 years later:

    Thanks alot! Keep up the good work!

  687. Avatar
    Lån uten sikkerhet over 2 years later:

    Great! Just Great!

  688. Avatar
    korrespondent over 2 years later:

    have found lots of new things, thanks.

  689. Avatar
    tequityloansa over 2 years later:

    Hi Bob, I used to read a lot of articles about this. 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.

  690. Avatar
    Money Mutual over 2 years later:

    Good info thank uncle Bob!

  691. Avatar
    FusionHost over 2 years later:

    Quality is the key to success of any business that sells products or services. If you don’t have it, then you’ll never build a sustainable business.

    I wish every business owner would understand this, but unfortunately it appears that a lot businesses these days are only interested in maximizing short-term profits rather than building a long-term brand and customer base.

  692. Avatar
    bonita springs rentals over 2 years later:

    Its not too flashy. It doesnt do too much with colours and things and the videos you use are perfect for this topic! Really, awesome blog.

  693. Avatar
    New hairstyles for 2011 over 2 years later:

    My real question is who or what is the validation of the tests? If you write code that is necessary for the level of the test, then you probably should not be writing the essays. [For the record, I’m not saying my code does not need that level of evidence] The obvious question is “really understand the problem they are trying to solve?” – In other words, how many ‘errors’ have occurred due to poor understanding of the poor against code? Your post is really informative for me. I liked it very much.

  694. Avatar
    Business Logo over 2 years later:

    I think quality matters in everything you do and quite frankly I wouldn’t buy anything from someone who could make such a flippant comment.

    Whether you are writing code, or designing a logo, or writing a book, quality matters – if you are creating something that someone else is paying for (whether a service or a product) quality matters!

    I can’t believe there are not only people out there that think differently, but they are dumb enough to say so.

  695. Avatar
    essay help over 2 years later:

    I appreciate spending some time to talk about that, I believe firmly regarding this and so really enjoy understanding more about this kind of subject.Keep up the good work!

  696. Avatar
    Logo Design over 2 years later:

    Literally, I was thinking the same way you do.

  697. Avatar
    Advance America over 2 years later:

    very useful article. Thank for post.

  698. Avatar
    Louer un condo en Floride pour vos vacances! over 2 years later:

    Hi Uncle Bob, Your totally true about this, quality matters! And those who don’t respect minimum quality requirement, trick the system… are paid back by the law of nature anyway … and if the quality of your advice matters didn’t matter for you I would not read your blog!

  699. Avatar
    Peter over 2 years later:

    Great Job Uncle Bob! Keep working

  700. Avatar
    Cosplay Wigs over 2 years later:

    This is really such a incredible post, you share good piece of information. I appreciate the this informative stuff, well thought out and written. Thanks for sharing .

  701. Avatar
    Fax from computer over 2 years later:

    With information doubling every 2.5 years, you definitely need to keep up the technical chops to stay on top of your game. Concentrating more on the business side of things and not balancing that with consistent learning and practical experience doesn’t lead to good results.

  702. Avatar
    Fax from computer over 2 years later:

    You’re definitely right about needing to maintain the technical chops to stay on top of your game. Printed information supposedly doubles every 2.5 years, so a person needs to keep learning and practicing if they’re going to keep up with change.

  703. Avatar
    Wedding program template over 2 years later:

    My real question is who or what is the validation of the tests? If you write code that is necessary for the level of the test, then you probably should not be writing the essays. [For the record, I’m not saying my code does not need that level of evidence] The obvious question is “really understand the problem they are trying to solve?” – In other words, how many ‘errors’ have occurred due to poor understanding of the poor against code? Human felicity is produced not as much by great pieces of good fortune that seldom happen as by little advantages that occur every day.

  704. Avatar
    Logo Design over 2 years later:

    Took a lot time to read but I enjoyed it. You are talented and I really appreciate it.

  705. Avatar
    wp themes coupons over 2 years later:

    cool stuff – thank you much for this info.

  706. Avatar
    wp themes coupons over 2 years later:

    This blog is so nice to me. I will keep on coming here again and again. Visit my link as well.

  707. Avatar
    general message boards over 2 years later:

    It must’ve been a joke! The saying is completely true, that it isn’t quantity, it’s quality! The better a product or service is, the more inclined customers are to return, right?

  708. Avatar
    amazon discount over 2 years later:

    What are you saying, man? I know everyone’s got their own opinion, but really? Listen, your blog is cool. I like the effort you put into it, especially with the vids and the pics.

  709. Avatar
    phone taps over 2 years later:

    Indeed quality matters, I agree on almost everything.

  710. Avatar
    Web Design Rotherham over 2 years later:

    I prefer to stay off my exercise bike and think I’ll stick to Web Design Rotherham instead!

  711. Avatar
    cfd over 2 years later:

    Quality is so important, it should never be underestimated.

  712. Avatar
    kristina (Wedding Lighting Ideas) over 2 years later:

    OF course quality is a must. It would give the maximum purpose of the thing.

  713. Avatar
    Jason over 2 years later:

    http://www.citypower.co.uk

  714. Avatar
    An Entrepreneur over 2 years later:

    Great post Uncle Bob.I would say quality matter a lot in SEO.If you have meaningful content at your site/blog, you can target your desired audience.Nice sharing with all…

  715. Avatar
    cheap monster beats by dr dre solo hd earphones over 2 years later:

    Uncompressed high-quality monster beats by dr dre solo hd earphones wireless audio transmission: The 2.4GHz monster beats by dr dre solo hd headset uncompressed high-quality wireless audio transmission technology monster beats by dr dre solo hd earbuds, relying on the powerful innovation Sound Blasterreg; audio processing monster beats by dr dre solo hd accessories, clearly and accurately transmit every sound signal, so you completely free of the shackles of headphone cableand enjoy a completely free game realm monster beats by dr dre solo hd audio. THX TruStudio PC ? Surround technology: the use of superior surround technology, THX TruStudio PC ? in your up, down, left and right to simulate the effect of multiple speakers career builder beats by dr dre solo hd headphones, you create an unparalleled real world.

  716. Avatar
    cheap monster beats by dr dre solo hd earphones over 2 years later:

  717. Avatar
    cheap monster beats by dr dre solo hd earphones over 2 years later:

    ok

  718. Avatar
    Multivers over 2 years later:

    A closely related variety is the Mulato, which is darker in color, sweeter in flavor and softer in texture.

  719. Avatar
    DMC-GH2 over 2 years later:

    Spot on article…quality is an issue that people seem to ignore. Good to see it talked about.

  720. Avatar
    electronic cigarette vapor over 2 years later:

    I don’t disagree with you here.. you have a good point!

  721. Avatar
    Car rental Kythira over 2 years later:

    Awesome fight guys. I enjoyed reading the post and comments 2 years after xexex.

  722. Avatar
    gucci pas cher over 2 years later:

    If you ever end up in portland oregon by accident, i have a LOT of free weed with your name on it.gucci pas cher

  723. Avatar
    gucci pas cher over 2 years later:

    If you ever end up in portland oregon by accident, i have a LOT of free weed with your name on it.gucci pas cher

  724. Avatar
    Designer Sunglasses over 2 years later:

    Buy $10 Replica Designer Sunglasses with 3-day FREE SHIPPING. At fashion-world4u you find Imitation ,Inspired ,MEN designer Sunglasses and Women Replica Sunglass at cheap discount price. Sunglass | Designer Sunglasses

  725. Avatar
    Frank P over 2 years later:

    I’m glad I’m not alone in finding this quite amusing. Thought I was wrong…

  726. Avatar
    fax to email over 2 years later:

    I am totally agree with the thought and idea given by the Jeff and Joel . Thanks for sharing the lot of these tips with us. cheers!

  727. Avatar
    Marco over 2 years later:

    Great bickering session. This is the age old quality vs quantity that applies to almost every industry out there. At the end of the day its about giving the client what they need or want nothing else!

  728. Avatar
    Marco over 2 years later:

    still laughing actually!

  729. Avatar
    Hand Fans over 2 years later:

    Me and my friend were arguing about an issue similar to this! Now I know that I was right.Thanks for the information you post.

  730. Avatar
    Smooth Jazz Online over 2 years later:

    If you wanna be a successful entrepreneur than,keep always focus on quality because it matter a lot.Uncle Bob wrote a excellent post above and I fully inspired from him.I never compromise with quality and always deliver best…

  731. Avatar
    android tracking app software over 2 years later:

    i find your blog very interesting lots of good post and readable articles. Keep it up i will surely bookmark your site and visit it for future readings!

  732. Avatar
    Jacob Schuhe over 2 years later:

    The artwork here is just amazing. They are very talented to do this. Keep up the good work

  733. Avatar
    Room divider ideas over 2 years later:

    “If you design the tests so that 10% of them due to a single change point, then you need a new career” This statement destroys their credibility for me. It’s too extreme to mark as more than an ideologue. People who have made a successful career building software and charge for them are, by definition, not the need for a new career, to claim otherwise, you’re trying to argue against the existence of the facts. There are many cool sites that are even specific to each phone. They should be more informative too after the run of competitive market.

  734. Avatar
    Cris over 2 years later:

    I’ve listened to all the StackOverflow podcasts, and I’ve heard them make comments that made me think that they really didn’t understand TDD or Agile

  735. Avatar
    Max over 2 years later:

    Thanks for the nice post.Its long time since I read a useful post like this.I’ll bookmark it and read again.

  736. Avatar
    Target wedding registry over 2 years later:

    (I do not know if tests have picked up, but the user experience to post comments in Firefox 3 is not good – it is very susceptible to duplicate!) When someone is impatient and says, “I haven’t got all day,” I always wonder, How can that be? How can you not have all day?

  737. Avatar
    Chair rail height over 2 years later:

    (I do not know if tests have picked up, but the user experience to post comments in Firefox 3 is not good – it is very susceptible to duplicate!) Live one day at a time emphasizing ethics rather than rules.

  738. Avatar
    Hippie wedding dresses over 2 years later:

    In my experience, it is true that “the quality just does not matter much.” After 9 years of support for a government agency, I look back with the huge increase in the productivity of my websites have been provided to workers who previously had to change the spreadsheets to do their job. I have always provided the update capabilities in response to your requests in a timely manner. The quality of my code is poor, but serves the purpose. Great!

  739. Avatar
    Cheap Price SEO Company USA over 2 years later:

    It was nice to read your post. I gathered some good points here. I would like to thank you with the efforts you have made in crafting this great article.

    Cheap Price SEO Company USA
  740. Avatar
    LV Damier Azur over 2 years later:

    Louis Vuitton Damier Ebene Canvas Keepall 55 N41414

  741. Avatar
    cheap men shoes over 2 years later:

    In any debate about the balance of speed versus quality, a software company now has more credibility than a consultation or training company.

  742. Avatar
    cheap men shoes over 2 years later:

    I would expect to hear from junior hackers, or people who haven’t written very much code.

  743. Avatar
    Iranian Yellow Pages over 2 years later:

    This is one of the best post I found so far. The contents are very good and very informative.I subscribed to your RSS feed by the way!Thanks, this is really cool!

  744. Avatar
    http://www.Islanders-shop.com New York Islanders Jerseys over 2 years later:

    ^^ yeh that is so true. I have to agree with you http://www.Islanders-shop.com New York Islanders Jerseys

  745. Avatar
    http://www.Kings-store.com Los Angeles Kings Jerseys over 2 years later:

    Just like commenting for the sake of it. It makes whoever posted the article feel that someone cares. and we do!http://www.Kings-store.com Los Angeles Kings Jerseys

  746. Avatar
    http://www.MapleLeafs-shop.com Toronto Maple Leafs Jerseys over 2 years later:

    Wow, fantastic webpage. I’ll back here again.http://www.MapleLeafs-shop.com Toronto Maple Leafs Jerseys

  747. Avatar
    Parkour Training over 2 years later:

    Some people consider parkour seems comfortable others suppose it seems impossibly difficult. Whatever you think, Parkour is not simple but it is also attainable. Get to Parkour Training and learn out more about training. With the adequate mental attitude and the will to perfect proficiency, who knows how far you could get. There is no end to amend your parkour ability. There is the possible action of constantly improving and there is no barrier to hit when you are ‘finished’, there is forever a new spot to train or a different jump to jump.

    Parkour and Freerunning are different but not totally. Parkour was developed anterior to Freerunning by David Belle. It comprises of hurdles and bounds. The deep doctrine behind parkour is not be contained by your surroundings, which most individuals are. They have to walk on decided designated tracks to get from A to B, but by using parkour there are no architectural limits and your route is independent for you to pick out.

  748. Avatar
    http://www.Rangers-store.com over 2 years later:

    Leafs fans are known as the nickname of “Leafs Nation”. because of these loyal fans and there are numerous related shops in the market.This nickname is frequently used in the fans website. To obtain one home game ticket at any time in Canada is a hard thing for fans. In 2008, more than 2500 people waited for season tickets. Each game tickets was sold out in advance from 1946 to 1999, and still so many people asking for tickets. They also sold out all tickets from October 2002 after moving to ACC. They got the most top average ticket revenue each game in 2007-2008 season. Their official jerseys is hot in the NHL shops “http://www.Sharks-shop.com/”>San Jose Sharks Jerseys

  749. Avatar
    http://www.Kings-store.com Los Angeles Kings Jerseys over 2 years later:

    Hi, Thank’s! I’d like to share this right now! http://www.Kings-store.com Los Angeles Kings Jerseys

  750. Avatar
    http://www.MapleLeafs-shop.com Toronto Maple Leafs Jerseys over 2 years later:

    You completed certain good points there. http://www.MapleLeafs-shop.com Toronto Maple Leafs JerseysI did a search on the topic and found mainly people will agree with your blog.

  751. Avatar
    http://www.Stars-stores.com over 2 years later:

    Crosby’s 87 Pittsburgh Penguins jersey “http://www.Sharks-shop.com/”>San Jose Sharks Jerseys was the top seller on the NHL’s website from September 2005 to February 2008

  752. Avatar
    http://www.Stars-stores.com over 2 years later:

    Crosby’s 87 Pittsburgh Penguins jersey “http://www.Sharks-shop.com/”>San Jose Sharks Jerseys was the top seller on the NHL’s website from September 2005 to February 2008

  753. Avatar
    http://www.Rangers-store.com over 2 years later:

    Also , the team Bruins has realized that the team work is very important for a game against the Flyers which team is not week but it coming off a 4-1 win at the New York Islanders “http://www.Rangers-store.com/”>New York Rangers Jerseys on Saturday night.

  754. Avatar
    Polo Shoes over 2 years later:

    I really liked your article and I shared with my friends in my facebook account.welcome visit us.Polo Shoes

  755. Avatar
    http://dietpillsworks.com/buy-phen375.html/ over 2 years later:

    Very informative and useful post. I just want to say awesome work and very useful to all readers.

  756. Avatar
    Sayne over 2 years later:

    Very nice and useful post. I like the way you express everything. Keep up the good work. Buy Phen375

  757. Avatar
    jiejie323@hotmail.com over 2 years later:

    I’ll gear this review to 2 types of people: current Zune owners who are considering an upgrade, and people trying to decide between a Zune and an iPod http://www.Islanders-shop.com. (There are other players worth considering out there, like the Sony Walkman X, but I hope this gives you enough info to make an informed decision of the Zune vs players other than the iPod line as well.)

  758. Avatar
    jiejie323@hotmail.com over 2 years later:

    It’s really a nice and helpful piece of information. I’m glad that you shared this helpful info with us. Please keep us informed like this. Thanks for sharing.http://www.Kings-store.com

  759. Avatar
    jiejie323@hotmail.com over 2 years later:

    Just like commenting for the sake of it. It makes whoever posted the article feel that someone cares. and we do!http://www.MapleLeafs-shop.com

  760. Avatar
    Reverse Logistics over 2 years later:

    Such an informative post by you. This makes your blog stand out of all those other blogs. Good and keep up the great blogging.

  761. Avatar
    Philadelphia SEO Company over 2 years later:

    I agree with Eduardo, I heard the same thing and got that WTF feeling. Made me chuckle.

  762. Avatar
    <a href="www.frontstreetconsulting.com">Philadelphia SEO Company</a> over 2 years later:

    Interesting POV, can’t say I totally agree but I respect where you are coming from on this.

  763. Avatar
    slimquick reviews over 2 years later:

    Interesting article – thank you for posting..

  764. Avatar
    San Diego Printing over 2 years later:

    Nice site and the article are posting are very nice. Hi, good luck man and thanks for sharing this post with us.

  765. Avatar
    heartburn causes over 2 years later:

    Thanks for this very useful info you have provided us. I will bookmark this for future reference and refer it to my friends. More power to your blog

  766. Avatar
    Sanskrit Tattoos over 2 years later:

    First it’s nice to appreciate good job and excellent time put into this article. For me I do not agree with you guys calling the authors dumb or trying to find fault with the list.

  767. Avatar
    Lancia over 2 years later:

    I have been reading and looking for your blog and is amazing and disturbing how many blogs related to generic. they are really useful and helpful. Have a nice day

  768. Avatar
    Seobaglyak over 2 years later:

    very informative and useful post

  769. Avatar
    Seobaglyak over 2 years later:

    very good post as always

  770. Avatar
    daemon over 2 years later:

    you are great! Thank’s!

  771. Avatar
    <a href="http://www.cheaphotelzurich.com"> Zurich Hotel</a> over 2 years later:

    This is interesting I really appreciate it!

  772. Avatar
    [url="http://www.cheaphotelzurich.com"] Zurich Hotel [/url] [url="Zurich Hotel"]http://www.cheaphotelzurich.com [/url] over 2 years later:

    This is interesting I really appreciate it! keep it up

  773. Avatar
    [url="http://www.cheaphotelzurich.com"] Zurich Hotel [/url] over 2 years later:

    This is interesting I really appreciate it! keep it up thanks for sharing this

  774. Avatar
    calculatoare sh over 2 years later:

    One of the better blogs I’ve come across for info within this particular niche. I am going to be checking back often for unique articles.

  775. Avatar
    calculatoare sh over 2 years later:

    One of the better blogs I’ve come across for info within this particular niche. I am going to be checking back often for unique articles.

  776. Avatar
    oakley frogskins over 2 years later:

    This is interesting I really appreciate it! keep it up thanks for sharing this

  777. Avatar
    oakley outlet over 2 years later:

    you are great! Thank’s!

  778. Avatar
    oakley glasses over 2 years later:

    oakley glasses

  779. Avatar
    best rate source over 2 years later:

    Consumers are always shopping for the best deal, but as the saying goes…you get what you paid for, in some situations this is 100% true!

  780. Avatar
    best rate source over 2 years later:

    Consumers are always shopping for the best deals, but sometimes you get what you paid for. there is a balance somewhere in the middle.

  781. Avatar
    http://www.ghdstylersonsale.com/ over 2 years later:

    I get a lot of knowledge from here. Beside that, your blogghd australia is so popular among the searchers from search engines. It means yours is great!

  782. Avatar
    oakley outlet over 2 years later:

    you will have to utilize some creative buying essays service.

  783. Avatar
    nicole over 2 years later:

    Hello Uncle Bob!

    Thanks a lot for the great article. I totally agree with a lot of your statements, especially with this one: “I hire people to do that for me so I can keep my technical skills as sharp as possible”. Here you can get more information about the topic from Germany: Berufsunfähigkeitsversicherung

  784. Avatar
    masturbateur over 2 years later:

    very informative and useful post

  785. Avatar
    Laura Smith over 2 years later:

    Hi, Uncle Bob I will just follow you on twitter. Your this blog post is 3 years old but I still finding some great comments on your this post.

  786. Avatar
    Laura Smith over 2 years later:

    Hi, Uncle Bob i just follow you twitter account. Your this blog post is old but still getting some great comments on this post

  787. Avatar
    pandora over 2 years later:

    I not too long back recognized instead a few many interesting things with your weblog notably this discussion.I anticipate much more ray ban british content material articles from you.ray ban uk.

  788. Avatar
    anne over 2 years later:

    Hello together!

    I know a lot of blogs. And honestly,your blog is one the best. Your blog is informative,helpful and easy to use. I would definitely recommend it to my friends. Thanks a lot for the fantastic work:). Actually, I am especially interested in Italienische Spezialitäten,whereby this is not my only passion. But it is one my favorites, because it is just incredible delicious. Here you can get useful information about:Italienische Spezialitäten

  789. Avatar
    pandora over 2 years later:

    man wants his wife or husband to spend thought to what he says, he handles his remarks to one way more woman. Universities are full,Thanks because of this article.I like its.As to me it is fabulous job.I wait around ur up coming articles.

  790. Avatar
    <a href="http://portaol.com">Cathrine</a> over 2 years later:

    one the best. Your blog is informative,helpful and easy to use. I would definitely recommend it to my friends. Thanks a lot for the fantastic work

  791. Avatar
    Jane K Elvisky over 2 years later:

    Folks, I guess that you should perhaps moderate comment here, cause I managed to read some of them and I guess they should be moderated.

    Just my 2 cents, Jane

  792. Avatar
    Hermes Victoria over 2 years later:

    Hermes Victoria http://www.hermesfantasy.com/hermes-victoria-c-14.html Hermes Victoria

  793. Avatar
    Stand over 2 years later:

    Dear Uncle Bob, your writing is now a quite olda but still true. Thanks.

    Stand

  794. Avatar
    Austin Homes for Rent over 2 years later:

    Many thanks for the exciting blog posting! I really enjoyed reading it, you are a brilliant writer. I actually added your blog to my favorites and will look forward for more updates.Great Job,Keep it up..

  795. Avatar
    Crystalvie374 over 2 years later:

    They’re not necessarily new, just not very well known. But then again,? chiptune isn’t a very mainstream form of music either for more info please visit: http://abimago.com/index.php?title=Main_Page/ http://zandersanimation.com/index.php?title=Main_Page/

  796. Avatar
    Seo nedir over 2 years later:

    That article is nice but not all of them is true. Anyway, thanks for sharing.

  797. Avatar
    Seo nedir over 2 years later:

    The article is one of good i have read. But i am not totally agree with you.

  798. Avatar
    Cell Phone Spying over 2 years later:
    Thanks so very much for taking your time to create this very useful and informative site. I have learned a lot from your site. Thanks!! Cell Phone Spying
  799. Avatar
    <a href="http://www.clubmz.com/">Cell Phone Spying</a> over 2 years later:

    Thanks so very much for taking your time to create this very useful and informative site. I have learned a lot from your site. Thanks!!

  800. Avatar
    ralph lauren over 2 years later:

    I guess that you simply will require to probably practical comment here, result in I managed to measure out a few of these and I guess they must be moderated.Your website is informative,helpful and essential to use. i’d undeniably advocate it to my friends. many thanks a spectacular offer for that amazing work

  801. Avatar
    moving boxes orange county over 2 years later:

    Quality in business, engineering and manufacturing has a pragmatic interpretation as the non-inferiority or superiority of something. Quality is a perceptual, conditional and somewhat subjective attribute and may be understood differently by different people. Consumers may focus on the specification quality of a product/service, or how it compares to competitors in the marketplace. Producers might measure the conformance quality, or degree to which the product/service was produced correctly.

  802. Avatar
    http://www.lvlouisvuittonoutlet.com/ over 2 years later:

    Amazing website! Your style is so contemporary in comparison with many other writers. Thank you for writing when you have the opportunity to, I will be sure to save your website!

  803. Avatar
    top-sale-shop over 2 years 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?

  804. Avatar
    cialis over 2 years later:

    Fantastic blog! I don’t think I’ve seen all the angles of this subject the way you’ve pointed them out. You’re a true star, a rock star man. You’ve got so much to say and know so much about the subject that I think you should just teach a class about it…HaHa!

  805. Avatar
    Md.Alauddin over 2 years later:

    Charity jobs can be good choice for anyone.There are some site who provides such information to get this kinds of jobs.Just click Charity jobs.

  806. Avatar
    Md.Alauddin over 2 years later:

    Director job is very good jobs.It is easy and reliable for the everyone.There are some website who provides information’s about this kinds of information’s.To find this kind of just click Director job.

  807. Avatar
    Equipment Trader over 2 years later:

    This is a nice blog. Good clean UI and nice informative blog. I will be coming back soon, Thanks for posting some great ideas.

  808. Avatar
    annuities 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

  809. Avatar
    buy african mango over 2 years later:

    This certainly opened the eyes of a lot of people who had been backward in their beliefs. To say that quality doesn’t matter that much is something debatable and will definitely raise some eyebrows.

  810. Avatar
    Austin TX MLS over 2 years later:

    Brilliant post and useful information Looking forward to future posts in this field thanks A very interesting article, interesting ideas and a lot of good questions posed Thanks for your insight for the great written piece.

  811. Avatar
    engraved cufflinks 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

  812. Avatar
    forbrukslån over 2 years later:

    Forbrukslån på dagen, forbrukslån, lån, kredittkort, refinansiering, ekspressfinans låneportal

  813. Avatar
    http://www.vasundharafertility.com/iui.php over 2 years later:

    I would like to thank you for the efforts 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 abilites has inspired me to start my own Blog Engine blog now. Really the blogging is spreading its wings rapidly. Your write up is a fine example of it…..

  814. Avatar
    Mesothelioma over 2 years later:

    This blog is just too cool to be missed. Great stuff, really. Please, PLEASE keep it up!

  815. Avatar
    ADT over 2 years later:

    I just cant stop reading this. Its so cool, so full of information that I just didn’t know. I’m glad to see that people are actually writing about this issue in such a smart way, showing us all different sides to it. You’re a great blogger. Please keep it up. I cant wait to read what’s next.

  816. Avatar
    funny pictures over 2 years later:

    Yeah this post has clear my concept about quality

    First I was focus on quantity rather then quality

  817. Avatar
    http://www.assignmentmojo.co.uk/assignment-expert/ over 2 years later:

    Hello Sir good article i really love it i have reading this article is awesome so good work keep working.

  818. Avatar
    Assignment Expert over 2 years later:

    I just read through the entire article of yours and it was quite good. This is a great article thanks for sharing this information. I will visit your blog regularly for some latest post. Assignment Expert

  819. Avatar
    UK Dedicated Servers over 2 years later:

    While I do think its important to keep your code clean to make it easier for testing and usability etc, I think that some people so 100% quality code as the whole grail or something, which IMO is not right as you dont really need to spend all that extra time making every last bit of code clean and tidy.

    Just my two cent on the subject, I know some many not agree but at the end of the day work needs to be turned out in a timely manner so if code works but aint 100% clean I dont think it should matter too much, unless your a little ocd lol :)

  820. Avatar
    debt relief usa over 2 years later:

    Quality in business, engineering and manufacturing has a pragmatic interpretation as the non-inferiority or superiority of something. Quality is a perceptual, conditional and somewhat subjective attribute and may be understood differently by different people. Consumers may focus on the specification quality of a product/service, or how it compares to competitors in the marketplace. Producers might measure the conformance quality, or degree to which the product/service was produced correctly.

  821. Avatar
    android app developer over 2 years later:

    I been browsing through different sites each day and yours is an interesting one. We may differ in beliefs and interest but I surely could relate in your way of writing. I’m looking forward to read and as well as share some knowledgeable information with you soon.

  822. Avatar
    wholesale imitation jewelry over 2 years later:

    I’d been following your tweets, dying to hear the story. I’m half tempted to listen to the podcast but frankly, it doesn’t sound like it would be good for my blood pressure.

  823. Avatar
    essay writing over 2 years later:

    I appreciate spending some time to talk about that, I believe firmly regarding this and so really enjoy understanding more about this kind of subject.Keep up the good work!

  824. Avatar
    John over 2 years later:

    I think price pressure has taken over from quality. I think people are now more conscious of cost.

  825. Avatar
    IELTS Preparation Course over 2 years later:

    I think I must have to disagree with you with this line “Quality Doesn’t Matter That Much”—Jeff and Joel”

  826. Avatar
    Cazare Cluj over 2 years later:

    Personally, SOLID has transformed my career. SOLID has made my career as a software developer more enjoyable. I speak from experience when I say, maintaining a system that wasn’t written with SOLID in mind is the opposite of enjoyable

  827. Avatar
    Cazare Cluj over 2 years later:

    SOLID has made my career as a software developer more enjoyable.

  828. Avatar
    lån med betalningsanmärkning over 2 years later:

    Fixa lån trots betalningsanmärkning, vi visar hur!

  829. Avatar
    lån med betalningsanmärkning over 2 years later:

    SOLID is great, nothing but good to say.

  830. Avatar
    chanel bags classic over 2 years later:

    thank u so much!!

  831. Avatar
    armani watch over 2 years later:

    so pretty

  832. Avatar
    forbrukslån over 2 years later:

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

  833. Avatar
    forbrukslån over 2 years later:

    I think I get his meaning. Thank you Uncle Bob!

  834. Avatar
    ps3 over 2 years later:

    “Faithful in little, faithful in much.” Very good and very true.

  835. Avatar
    Birthday SMS over 2 years later:

    great article, I’ve been reading it for a while and thanks for the post.

    Birthday SMS

  836. Avatar
    painful pimple over 2 years later:

    I think I get his meaning. Thank you Uncle Bob!

  837. Avatar
    touchscreen over 2 years later:

    I love this post! Thank you for the nice information on non-touchscreen handset. This is definitely good touchscreen

  838. Avatar
    waterproof mp3 over 2 years later:

    I think quality does matter especially when it comes to service of a company or products.

  839. Avatar
    Kolonie over 2 years later:

    We are a group of volunteers and starting a new scheme in our community. Your site offered us with valuable kolonie info to work on.

    You’ve done an impressive job and our whole community will be grateful to you.

  840. Avatar
    Wczasy i wycieczki over 2 years later:

    Unquestionably believe that which you stated. Your favorite reason appeared to be on the web the simplest thing to be aware of. I

    say to you, I definitely wczasi i wycieczki get annoyed while people consider worries that they plainly don’t know about. You managed to hit the nail

    upon the top and also defined out the whole thing without having side-effects , people can take a signal. Will probably be back to

    get more. Thanks

  841. Avatar
    Pompy perystaltyczne over 2 years later:

    Hello There. I found your blog using msn. This is a really well written article. I will be sure to bookmark it and come back to

    read more of your useful information. Thanks for the post. I’ll definitely comeback.

  842. Avatar
    Szkolenia BHP Katowice over 2 years later:

    I loved as much as you’ll receive carried out right here. The sketch is attractive, your authored material stylish. nonetheless,

    you command get got an shakiness over that you wish be delivering the following. unwell unquestionably come more formerly again as

    exactly the same nearly a lot often inside case you shield this increase.

  843. Avatar
    dentist columbus ohio over 2 years later:

    “Quality doesn’t matter that much” is this came from the Stack overflow you had just watched.

  844. Avatar
    cheap auto insurance over 2 years later:

    You make a great point. Got some great information here. I think that if more people thought about it that way, they’d have a better time understanding the issue. Your view is definitely something Id like to see more of.

  845. Avatar
    cheap baltimore ravens jerseys over 2 years later:

    Welcome to our website, maybe here are the item you want and expect to cooperate with you.

  846. Avatar
    ??????????? over 2 years later:

    Very best post and a great blog.

  847. Avatar
    Aprenda Hipnose over 2 years later:

    2009 but great content. I will back again. Thanks from Aprenda Hipnose.

  848. Avatar
    justinsmithbond over 2 years later:

    I just read through the entire article of yours and it was quite good. This is a great article thanks for sharing this information. I will visit your blog regularly for some latest post. Dissertation Help uk

  849. Avatar
    jkar over 2 years later:

    Yah! theres no way to make a clean and bug free system if you can’t make your code as clean and orderly as possible. Coding is like poetry and you don’t want to mess up with your creation.

  850. Avatar
    canada goose jackets over 2 years later:

    I’m flat broke myself so I couldn’t help donate but I’m so happy for you!

  851. Avatar
    carpet cleaning over 2 years later:

    I disagree, quality is the most important thing and its matters.

  852. Avatar
    markham dentist over 2 years later:

    Always good to see, this was obvious a excellent post. In theory would like to be such a good writer too. You need time to create that brilliant and in addition real effort to create a excellent article.

  853. Avatar
    Nose Job Recovery over 2 years later:

    Writing quality code demonstrates more than just discipline. It displays your integrity, compassion for the team, and commitment to the project as well. Taking the time to produce quality code is something that we should all do every time we put our fingers to the keyboard. Our teammates will thank us for it, we’ll feel better when we finish, and even business wonks might thank us in the end.

  854. Avatar
    slip ring manufacturer over 2 years later:

    Your are looking forward to meet your Mr. right.

  855. Avatar
    Cable Management in Mississauga over 2 years later:

    I was shocked at Joel’s rejection of SOLID principles and can’t agree with him there. I can understand he has a point there, but it’s not for me.

  856. Avatar
    Plastic Surgery London over 2 years later:

    It is always happens that if you design your tests such that 10% of them fail due to a single point change, then you need a new career.

  857. Avatar
    Video Boss Bonus over 2 years later:

    post me a commemerative deck of playing cards, must be a full deck I don’t have.

  858. Avatar
    Monster Beats By Dr. Dre Studio over 2 years later:

    The Monster Beats By Dr. Dre Studio Headphones are classic shoes.You will be proud of owning them. Don’t hesitate!Take Monster Beats By Dr. Dre Pro home! Choose our Monster Beats By Dr. Dre Solo Headphones will make you have an amazing discovery.

  859. Avatar
    Josieklein07 over 2 years later:

    I am very pleasure to find this topic I was searching such type of topic 3 days ago. But not found. Thanks for sharing this topic and for this information. I should come back soon if anyone have more information about this then please to share countertops richmond va

  860. Avatar
    regalos originales over 2 years later:

    any work should always be thinking about the quality, is a service that other people might consume, so it is necessary to realize the best way possible. regalos originales

  861. Avatar
    rohit over 2 years later:

    Excellent is the only word i can give u for this wonderful blog, keep it up. I will come back again to read some more interesting things on this topic Georgetown Roofing Contractor

  862. Avatar
    Riyadene over 2 years later:

    I am always impressed when people say that quality does not matter or not much. I fully agree that high standards allow to avoid unnecessary costs, plain and simple. Especially when you need to scale the solution, quality is a major success factor. maclaren stroller is where the major quality release are followed upon in my environment.

    The eternal question will be to define quality test scripts that are efficient without having to go to all the smallest details.

  863. Avatar
    time management over 2 years later:

    Have you ever thought about adding a little bit more than just your thoughts? I mean, what you say is important and everything. But its got no punch, no pop! Maybe if you added a pic or two, a video? You could have such a more powerful blog if you let people SEE what you’re talking about instead of just reading it.

  864. Avatar
    the discount Rosetta Stone Software over 2 years later:

    Rosetta Stone Personal Edition contains everything you need to give the voice inside of you new language. The method used recreates the natural way you learned your first language, revealing skills that you already have. Rosetta Stone Version 3: Spanish (Spain) Level 1, 2 ,3 ,4 & 5 Set with Audio Companion you connect with the world around you. Rosetta Stone Language Software DVDs on sale, you can get the discount Rosetta Stone Software form learn2ndlanguages.com, save up to $200, Low price much cheaper than ebay. Good quality after-sale service,no sale tax and free shipping.

  865. Avatar
    the discount Rosetta Stone Software over 2 years later:

    Rosetta Stone Personal Edition contains everything you need to give the voice inside of you new language. The method used recreates the natural way you learned your first language, revealing skills that you already have. Rosetta Stone Version 3: Spanish (Spain) Level 1, 2 ,3 ,4 & 5 Set with Audio Companion you connect with the world around you. Rosetta Stone Language Software DVDs on sale, you can get the discount Rosetta Stone Software form , save up to $200, Low price much cheaper than ebay. Good quality after-sale service,no sale tax and free shipping.

  866. Avatar
    http://www.learn2ndlanguages.com over 2 years later:

    Rosetta Stone Personal Edition contains everything you need to give the voice inside of you new language.

  867. Avatar
    ???? over 2 years later:

    good article~!

  868. Avatar
    Motivational Thoughts over 2 years later:

    I may not always be SOLID compliant but that’s why TDD is so important. TDD is my truth serum. TDD ensures I move towards SOLID and not away from SOLID.

  869. Avatar
    <a href="http://instintosensual.com">Feromonas</a> over 2 years later:

    The Chinese are building a nation on poor quality and we continue to buy into it.

  870. Avatar
    Feromonas over 2 years later:

    The Chinese are building a country on poor quality and we are buying into it.

  871. Avatar
    christian louboutin shoes on sale over 2 years later:

    Have the christian louboutin patent leather pumps is a happy thing.

  872. Avatar
    hermes birbin bags over 2 years later:

    beautiful pictures!!

  873. Avatar
    ergonomic office chairs over 2 years later:

    You’re not the average blog writer, man. You definitely have something powerful to add to the web.

  874. Avatar
    Article writing over 2 years later:

    nice

  875. Avatar
    Auto Car News over 2 years later:

    This certainly opened the eyes of a lot of people who had been backward in their beliefs. To say that quality doesn’t matter that much is something debatable and will definitely raise some eyebrows.

  876. Avatar
    All About Car over 2 years later:

    was listening to the podcast during my way to work when they started talking about TDD and quality, and I the same feeling. Honestly, I started laughing in the bus..

  877. Avatar
    Car News Reviews over 2 years later:

    compassion for the team, and commitment to the project as well. Taking the time to produce quality code is something everyone should do every time we put our fingers on the keyboard. Our companions will thank us, we will feel better when we finish, and even the ‘experts’ in business may give thanks at the end. The only thing that could spoil a day was people.

  878. Avatar
    New Car Tuning Car over 2 years later:

    and I’ve heard them make comments that made me think that they really didn’t understand TDD or Agile. In podcast #38 they overtly revealed their ignorance. I now firmly believe they have never tried TDD (or BDD). I have never met anyone that has honestly given it a fair trail (20 days or so) and not become addicted for life.

  879. Avatar
    Angela Montes over 2 years later:

    It isvery interesting post and discus. I think quality is the prime factor in any field. Lack of quality may cause undesirable problems that are difficult or sometimes even impossible to fix.

  880. Avatar
    Angela Montes over 2 years later:

    It is very interesting post and discus. I think quality is the prime factor in any field. Lack of quality may cause undesirable problems that are difficult or sometimes even impossible to fix.

  881. Avatar
    Angela Montes over 2 years later:

    Very interesting post and discus. I think quality is the prime factor in any field. Lack of quality may cause undesirable problems that are difficult or sometimes even impossible to fix.

  882. Avatar
    t shirts over 2 years later:

    This blog has definitely changed my perspective on this subject.

  883. Avatar
    social bookmarking over 2 years later:

    At first i think it is simple but really good after after reading whole.Admittedly I’m not a fan of the word “Sapience”. Most everyone outside and inside the testing realm are looking at this and going “What?”. I believe in simplicity. What James Bach et al. are talking about is exactly what Robert Martin has put so succinctly. Performing a task ‘with intelligence’.

  884. Avatar
    lose thigh over 2 years later:

    defects should be discovered somewhere in the process, esp. in QA.

  885. Avatar
    running over 2 years later:

    I came to your blog instantly and amazed to see that its full of info what i was searching for

  886. Avatar
    Mont Blanc Pen over 2 years later:

    What is friendship?Mont Blanc PenWhy do we call a person our friend? When do we call someone a very good friend? Mont Blanc Pen For Sale

  887. Avatar
    Barakul shiek over 2 years later:

    The commenter believes that there are lots of valuable fact that can be found in this article. Often times readers are looking for fast information, something that is reliable, comprehensive and easy to understand. And the writer just did it! This and its unparalleled presentation is something that must be laud. tenant screening

  888. Avatar
    Driving While Intoxicated over 2 years later:

    Quality does matter but quantity doesn’t matter at all..

  889. Avatar
    Ac Repair Manassas VA over 2 years 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

  890. Avatar
    Ac Repair Manassas VA over 2 years 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

  891. Avatar
    nono over 2 years later:

    Whenever users begin to use software that works, they figure out what they truly want. A big company has the same problem, but won’t necessarily be killed off if a couple projects aren’t agile enough. I’ve worked with several startups and I have a different viewpoint. A new company that doesn’t pay attention to what the customer wants will be bankrupt. And there’s no way to know what the customer wants with any accuracy before implementing, so you can’t really have “control over the requirements”.

  892. Avatar
    how to get rid of cold sores fast over 2 years later:

    The title of your page caught my eye. You sure do have an unique means of writing with your words. I just liked the article. It was Very refreshing post with nice ideas.It was awesome to read your blog. The thoughts are very well presented and it was refreshing to read.

  893. Avatar
    how to get rid of cold sores fast over 2 years later:

    The title of your page caught my eye. You sure do have an unique means of writing with your words. I just liked the article. It was Very refreshing post with nice ideas.It was awesome to read your blog. The thoughts are very well presented and it was refreshing to read.

  894. Avatar
    on sale over 2 years later:

    Thank for your shared.Keep your good work.

  895. Avatar
    Kevin Hardaway over 2 years later:

    Supercomputers are ultra high-speed number crunchers used primarily for scientific and engineering applications. The new generation of supercomputers differs from conventional mainframe computers in its use of parallel processing. Check out this update

  896. Avatar
    auto insurance over 2 years later:

    All I want to say is, yes! Yes! Yes! You’re so right. I want to get behind this so much.

  897. Avatar
    online LPN programs over 2 years later:

    You’re so awesome, man! I cant believe I missed this blog for so long. Its just great stuff all round.

  898. Avatar
    nada over 2 years later:

    thanks for sharing really appreciate

  899. Avatar
    UTV for Sale over 2 years later:

    I must say, you’ve got one of the best blogs I’ve seen in a long time. What I wouldn’t give to be able to create a blog that’s as interesting as this.

  900. Avatar
    Flashlight Reviews over 2 years later:

    How do you like all of these “quality” comments you’re post is getting!?

  901. Avatar
    TV Consumer Advocate over 2 years later:

    I’m impressed. I don’t think I’ve met anyone who knows as much about this subject as you do. You’re truly well informed and very intelligent. You wrote something that people could understand and made the subject intriguing for everyone. Really, great blog you’ve got here.

  902. Avatar
    Party Supplies UK over 2 years later:

    What a great way to finish an article ASV

  903. Avatar
    dog training avenue over 2 years later:

    I’m glad to see that people are actually writing about this issue in such a smart way, showing us all different sides to it. You’re a great blogger. Please keep it up. I cant wait to read what’s next.

  904. Avatar
    alex brown over 2 years later:

    Fantastic post!”Quality Doesn’t Matter That Much” is really a great topic to discus.exercise is also good for health.Jeff and Joel opinion is really good.Thanks for sharing the info with us. http://www.statcentric.com/

  905. Avatar
    hair straightening over 2 years later:

    Ha ha, the authors say is not comprehensive, quality and quantity can’t proportional to also can’t is inversely proportional to the number, and if it must be a quality? If quality good will have a lot of number? Apparently is not so perfect, so if the quality and quantity is able to grasp to live, that is quite amazing. Please see our service, promoting the quality:http://www.hairstraightenermall.com/

  906. Avatar
    mutual mobile over 2 years later:

    Very refreshing blog and very refreshing ideas. I’m glad that I came across this when I did. I love what you’ve got to say and the way you say it.

  907. Avatar
    <a href="http://www.realjordanshoessale.com/">Buy Jordan Shoes For Cheap</a> over 2 years later:

    This was a useful post and I think it is rather easy to see from the other comments as well that this post is well written and useful

  908. Avatar
    Buy Jordan Shoes For Cheap over 2 years later:

    This was a useful post and I think it is rather easy to see from the other comments as well that this post is well written and useful

  909. Avatar
    Air Jordan 10 over 2 years later:

    http://www.realjordanshoessale.com/

  910. Avatar
    Excellent Post! over 2 years later:

    Jeff and Joel point of view is good but I think Quality is also important.You bike cycle information is also appreciative.Thanks for sharing the information with us.I also bookmark your site and visit it in future for more details. http://avointyopaikka.fi/

  911. Avatar
    t shirts over 2 years later:

    Good luck getting people behind this one. Though you make some VERY fascinating points, you’re going to have to do more than bring up a few things that may be different than what we’ve already heard.

  912. Avatar
    painful pimple over 2 years later:

    So true. To my ears, it sounds as though they are? singing about an upcoming apocalypse.

  913. Avatar
    Freshersworld over 2 years later:

    Hi everybody. Interesting topic for a blog. I have been reading a lot of blogs and forums lately. Some are really informative some are entertaining and some are a real crack up. I must say, terrific job on this blog, I’ll be sure to check back again real soon.

  914. Avatar
    Pandora Charms over 2 years later:

    Nice one, there is actually some good facts on this blog some of my friends may find this worthwhile, will send a link, thanks.http://www.magicjewelrybox.org/">Pandora

  915. Avatar
    Email Marketing over 2 years later:

    I feel like you could probably teach a class on how to make a great blog. This is fantastic!

  916. Avatar
    PlayStation over 2 years later:

    It is important to choose right one since the first time. Thank you for the tips. Proper care will save money in long term.

  917. Avatar
    Illinois health insurance quotes over 2 years later:

    I just passed this onto a colleague who was doing a little research on that. And he actually bought me lunch because I found it for him smile So let me rephrase that:

  918. Avatar
    vrtno pohistvo over 2 years later:

    I agree with Unle Bob “I think quality matters” I would like to add: “There is nothing without quality”

  919. Avatar
    vrtno pohistvo over 2 years later:

    I agree with uncle Bob “I think quality matters.” I would like to add: “There is nothing without quality!”

  920. Avatar
    South Austin Golf Homes 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 !

  921. Avatar
    Baggage Allowance over 2 years later:

    I definitely think that quality does matter and it is important that we have standards to adhere to. Why chaos

  922. Avatar
    Baggage Allowance over 2 years later:

    yes quality does indeed matter

  923. Avatar
    dimnik over 2 years later:

    Quality is very important! Exp: good food or bad food. The consequences are overweight, high blade pressure… So the point is: quality in important on every field or level.

  924. Avatar
    Asphalt Repair over 2 years later:

    No I disagree to it. Quality does matter a lot.

  925. Avatar
    gucci for sale over 2 years later:

    lv leather walletbuy lv wallet in hand. Today, a low price louis vuitton bags young man Xiasha Chen louis vuitton for salediscount louis vuitton wallet

  926. Avatar
    dissertation help over 2 years later:

    thanks for posting such a nice info. i will bookmark this post.

  927. Avatar
    head lice treatment over 2 years later:

    I believe the key is in being passionate about what you write, being focused, and being dedicated to get the work done. Of course, you an write about pretty much any topic, but you need to have faith and ability to get the job done.

  928. Avatar
    ejections apiece, vkofwerf0801 over 2 years later:

    yankees shop yankees store new york yankees shop Alex Rodriguez Jersey Alfonso Soriano Jersey Alfredo Aceves Jersey Andy Pettitte Jersey Babe Ruth Jersey Bobby Abreu Jersey The majority of Drake’s work came on June 5, when he ejected four people in the Nationals-Diamondbacks game for some back-and-forth of hit batsmen. vkofwerf0801

  929. Avatar
    ejections apiece, vkofwerf0801 over 2 years later:

    Phil Rizzuto Jersey Randy Winn Jersey Reggie Jackson Jersey Robinson Cano Jersey Roger Maris Jersey Thurman Munson Jersey Yogi Berra Jersey American , and has close relation with the extension of MLB the dress brand…... No matter you are B-BOXER, rapper, what, or like the trend of the people, vkofwerf0801

  930. Avatar
    Banon over 2 years later:

    “Quality just doesn’t matter that much.” I was amazed when i stumble on this quote. Quality is primordial in all fields. Mauritius web design company Mauritius web design courses London theatre Tickets

  931. Avatar
    Marca personal over 2 years later:

    found good piece of information here, Thank you for sharing these helpful post it is very interesting and read worthy.Keep these informative post coming!

  932. Avatar
    canopy tents over 2 years later:

    Listen, your blog is cool. I like the effort you put into it, especially with the vids and the pics.

  933. Avatar
    sac longchamp over 3 years 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.

  934. Avatar
    sac longchamp over 3 years 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.

  935. Avatar
    ay blog over 3 years later:

    free but very nice themes Ay blog

  936. Avatar
    Mistyolga22 over 3 years later:

    I’m glad to read your answer!The podcast is pretty funny (if depressing because of the lack of understanding).I just hope that Mr. Spolsky was speaking from an impulse to stir the debate – otherwise, really, really need to check your facts. reizen naar india

  937. Avatar
    Mistyolga22 over 3 years later:

    I think that the key is in being passionate about what you write,being focused,and being dedicated to get the work done.Of course,you an write about pretty much any topic,but you need to have faith and ability to get the job done. site analytics

  938. Avatar
    flat stomach exercises over 3 years later:

    It’s all about creatin a positive presense. va

  939. Avatar
    East Austin Duplexes over 3 years later:

    Wow. Thanks a million for that helpful post. Excellent tips, and the performance is looking much improved.

  940. Avatar
    ECHO over 3 years later:

    freshwater pearl ring

    shell pearl ring

    brooch jewelry

    turquoise pearl brooch

    drop freshwater pearl beads

    ring jewelry

  941. Avatar
    Cheap Coomputers over 3 years later:

    Quality always matter over quantity.

  942. Avatar
    rhinoplasty healing over 3 years later:

    Ooo ooo blog fight! Joel and Jeff both mentioned during the podcast that they knew they would bring the ire of many, so not entirely unexpected.

    Rather than take this as a personal attack, or an affront to SOLID principles (although I’d say there’s justification for both) you could take this as an opportunity to realize that the marketing of the principles is lacking, and could do with some improvement. Hell, record a quick rebuttal and submit it to Joel for possible inclusion in the next podcast.

  943. Avatar
    2tb hard drive reviews over 3 years later:

    Your blog is great visually, I mean people wont be bored. But others who can see past the videos and the layout wont be so impressed with your generic understanding of this topic.

  944. Avatar
    presents for boyfriends over 3 years later:

    Its just incredible how much you can take away from something simply because of how visually beautiful it is. You’ve put together a great blog space—great graphics, videos, layout. This is definitely a must-see blog!

  945. Avatar
    Bushcraft Basecamp over 3 years later:

    Thanks for the information! I loved it. and I do think quality matters!

  946. Avatar
    Masivni Podovi over 3 years later:

    Thanks for this post help me a lot for my project and also fro Really nice :)

  947. Avatar
    Tiffany sale over 3 years later:

    moncker kids jackets has changed into a sound generate purchased moncler jackets womens from industry in no way devoid of the purpose. Its indeed predominantly by means of very produced pandora bracelets in women moncker jackets addition pandora charms that may be confirmed throughout different methods deliver a few classy pandora bracelets wristbands. women moncker jackets Just seconds away . one-time delivers in women moncker jackets

  948. Avatar
    studio pink over 3 years later:

    Actually, my main thanks is for turning me onto Jemendo. I have been listening nonstop since I first read your post yesterday. AND I do have professional needs that require licensed music! So double score for me.

  949. Avatar
    mobile signal booster over 3 years later:

    It is really informative article, i appreciates your writing skill and keep your work like this.

    mobile signal booster

  950. Avatar
    http://www.scarf-burberry.net/ over 3 years later:

    Two clock has been busy all his life. One day, an old clock to a pretty said: “you a year to put 525600 it with me.” Pretty scared, and said, “wow, so much, how could it be??! How can I finish under so much!!!!! By this time, another old clock say with smile: “do not be afraid, you need only a second place once every second, insist to come down.” Pretty happy, thinking about: a second place once didn’t seem difficult, have a try. Sure enough, very easily and then put it. Imperceptible in the past year, has put the 525600 ton. Very simple story, but the significance of truth, when we face great difficulty, often hope tags, what does not know as long as according to the actual, formulated by the small target, finish line.

  951. Avatar
    jaziblee over 3 years later:

    Blogs are good in which we get lots of information and convert that information to knowledge. Buy Assignment

  952. Avatar
    http://cashone.com/ over 3 years later:

    Really great stuff. I agree from the statement, if you can’t keep your code clean, no way can you keep your systems clean and technical experience requires constant practice.

  953. Avatar
    proyectos culturales over 3 years later:

    I like your way of writing, You break it down nicely. Keep these informative post coming! much appreciated!... thanks

    have a great day :)

  954. Avatar
    Singlebörse over 3 years later:

    Schöne Sache, über die ihr hier Schreibt. Bekommt man lust, weiter auf der Seite nach einer Singlebörse zu suchen

  955. Avatar
    moncler online over 3 years later:

    Comparez pour atteindre le. et porte le gramme pour unir des forces pour bataille les finales dans le.., le jeune cheval du tigre para?t alors être légèrement pour avoir la sensation triste.La plus grande graine brigade-Italie qui il garant, adidas wings le groupe ne peut pas de ligne.Les vêtements de sports de l’Italie aussi avec cette tragédie, l’élément essentiel n’a aucune vente après le groupe l’égal soyez sur.De quelque manière qu’il parraine d’ajoutez le. adidas jeremy scott et Uruguay exprimer l’extraordinairement courageux. Mais ces deux équipes de la balle ne sont pas hautes dans l’esprit de la personne local, donc n’a pas tiré pour bouger pour vendre la quantité.Le journaliste comprend du magasin du monopole de cette marque à, en plus de Coupe du monde ouvre avant le match, Angleterre la brigade prend de fa?on opposée la vente betterly, les augmentations du trésor de la bactérie dans la vente du marché local pas évidemment.

  956. Avatar
    Air Jordan 5 over 3 years later:

    I really like this information Your article is wonderful,can you tell me how did you do it?Your blog is wonderful,I like it very much.

  957. Avatar
    electrical slip rings over 3 years later:

    How to design and testing for electrical slip rings

  958. Avatar
    electrical slip rings over 3 years later:

    How to design and testing for electrical slip rings

  959. Avatar
    electrical slip rings over 3 years later:

    How to design and testing for electrical slip rings

  960. Avatar
    electrical slip rings over 3 years later:

    How to design and testing for electrical slip rings

  961. Avatar
    best twitter themes over 3 years later:

    This is the first time i’m visiting your site. I see lots of useful stuffs in your site. Well done good job.

  962. Avatar
    slip ring connector over 3 years later:

    Capsule slip ring http://www.senring.com/hnr73.html”>electrical slip rings

  963. Avatar
    slip ring connector over 3 years later:

    www.senring.com

  964. Avatar
    air max over 3 years later:

    de bedste golfudstyr business kontrol, de har mange ?rs kulturarv og loyale forbrugergrupper. NIKE Tiger Woods underskrevet et produkt, n?r du ikke kan l?gge sin h?nd, men ?r senere,

  965. Avatar
    oncler doudoune over 3 years later:

    moyen et long vers le bas, d’origine Prix 698 yuans, 299 yuans est spécial, qui achètent de la saison doudoune qui peut économiser 300 yuans . Plus ch

  966. Avatar
    slip ring assembly over 3 years later:

    through hole slip rign http://www.senring.com/hnr73.html”>electrical slip rings

  967. Avatar
    slip ring connector over 3 years later:

    through hole slip rign http://www.senring.com/hnr73.html”>electrical slip rings

  968. Avatar
    slip ring assembly over 3 years later:

    www.senring,com

  969. Avatar
    slip ring assembly over 3 years later:

    Through hole slip ring http://www.senring.com/hnr73.html”>electrical slip rings

  970. Avatar
    slip ring assembly over 3 years later:

    Through hole slip ring http://www.senring.com/hnr73.html”>electrical slip rings

  971. Avatar
    Hermohino over 3 years later:

    Thanks for the post Uncle Bob.

  972. Avatar
    wlmyiwang@gmail.com over 3 years later:

    Kampioen posters aantrekkelijk te slaan sterk toegenomen reizigersverkeer – Nike echt last voor de schat, de avond voor Li Na was de eerste Aziatische Grand Slam singles kampioen speler te winnen, door haar goedkeuring van Nike-producten weer trok een groot aantal mensen lijn van het zicht.schoen nike Gisteren heeft de verslaggevers in de hoofdstad over de Nike winkel om Li enorme goedkeuring te zien aan een groot aantal klanten foto’s te trekken. Klanten Miss Tao Manni zei: “Ik wilde meer van Li’s foto’s te zien, en kleding op het einde om te zien hoe ze eruit ziet, neem dan de kans om te wandelen op.” Het is gemeld dat een paar mensen die in het bezit deze houding. Volgens Yan Sha Aolai Nike winkel werknemer zei, nike shops ze in ieder geval meer dan normaal gisteren passagier Liu Cheng. De Nike echt verantwoordelijk voor de schat tellen, van de Franse Open mannen enkelspel bij de showdown van gisteravond, Nadal en Federer zijn de Nike woordvoerder, die slaan vele andere spelers, en voor de ultieme krachtmeting. Fransen na de wedstrijd, Li grote posters trok veel mensen.Nike Sportswear Dunk Premium Hyperfuse de nieuwste versie van het meest voelen zich comfortabel dragen en gebruiken van deskundigheid is uitgegroeid tot de nieuwste heetste Sneaker schoenen, adidas superstar 1 kijk naar de klassieke Air Max 1, Air Force 1 en Air Max 90, Nike zullen drie vlaggenschip product de meest representatieve kenmerken uniek design en kwaliteit van het basketbal schoenen combineren tot een unieke Dunk Premium Hyperfuse, naar de top van de stabiliteit, de doorlaatbaarheid en de duurzaamheid van de drievoudige structuur te ontwerpen samen cre?ren, met de eenvoud van een type TL kleur matching, je te rijden in de arena in baldadig, gemakkelijk boven de top van de tegenstander.

  973. Avatar
    Gadget personalizzati over 3 years later:

    A very good and informative article indeed . It helps me a lot to enhance my knowledge, I really like the way the writer presented his views. Bye

  974. Avatar
    bakeca over 3 years later:

    I have read your blog it is very helpful for me. I want to say thanks to you. I have bookmark your site for future updates. Thanks!!

  975. Avatar
    fahrradträger over 3 years later:

    die fahrradträger online kaufen im testbericht

  976. Avatar
    fahrradträger over 3 years later:

    fahrradträger testberichte

  977. Avatar
    Converse Kids over 3 years later:

    Technical mastery requires constant practice. This article is sharing the informative information.

  978. Avatar
    Pac Man Adult Costume over 3 years later:

    Code quality and good commenting matter more than anything. Ever try to work on someone elses stuff?

    Ever go back a year later and try to remember what you did and find yourself guilty of poor documentation.

    Good semantic coding along with good commenting will make your life much easier and your coworkers will love you too. Just do it.

  979. Avatar
    dexter over 3 years later:
  980. Avatar
    Payday Loans over 3 years later:

    You’re so right. I’m there with you. Your blog is definitely worth a read if anyone comes across it. I’m lucky I did because now I’ve got a whole new view of this.

  981. Avatar
    electrical slip ring over 3 years later:

    Wind turbine slip ring [url=”http://www.senring.com/hnr73.html”>electrical slip ring[/url] the price is reasonable but quality is high

  982. Avatar
    electrical slip ring over 3 years later:

    Mercury slip ring and electrical slip ring with high speed

  983. Avatar
    electrical slip ring over 3 years later:

    Wind turbine slip ring [url=”http://www.senring.com/hnr73.html”>electrical slip ring[/url] the price is reasonable but quality is high

  984. Avatar
    sales5@senring.com over 3 years later:

    Wind turbine slip ring [url=”http://www.senring.com/hnr73.html”>electrical slip ring[/url] the price is reasonable but quality is high

  985. Avatar
    sales5@senring.com over 3 years later:

    Wind turbine slip ring [url=”http://www.senring.com/hnr73.html”>electrical slip ring[/url] the price is reasonable but quality is high

  986. Avatar
    proyectos culturales over 3 years later:

    I like your way of writing, You break it down nicely. Keep these informative post coming! i mean keep posting, much appreciated!... thanks have a great day :)

  987. Avatar
    proyectos culturales over 3 years later:

    I like your way of writing, You break it down nicely. Keep these informative post coming! i mean keep posting, much appreciated!... thanks have a great day :)

  988. Avatar
    air max over 3 years later:

    Zhihua China Chinese Commercial News Reporter Zhi Chu, Nike Branding, wenn die Änderung der China mehr schaden air max als nützen, ist es unwahrscheinlich, dies zu tun, sondern kann einen individuellen Stil zu bringen. “Als multinationales, ist es schwierig, für weniger aussehen wird.” Zhihua frank Analysten. nike airmax bw Executive Director und Chief Financial Xtep Rui Bo Ho sagte, hat Nike 10 Jahre Entwicklung auf dem Kontinent, muss der Kontinent, um die Nachfrage nach Premium-Produkten zu verstehen, nike classic sondern auch verstehen, dass billige Produkte sind nicht die Quelle des Profits für Nike, so glaube nicht, dass die zweite und dritte Städten von geringerer Bedeutung als die allgemeine Richtung der Nike geben, wird es nicht einführen zu viel über dem Preis des Produkts. Wenn Nike gemacht über den Einsatz, sind besondere Maßnahmen, wie viel ein Wettbewerb zwischen lokalen Marken. Aktuelle lokale Marken in

  989. Avatar
    payday loans over 3 years later:

    Your work is inventive and valuable. Thank you for this fascinating post! Attractive section of content. Your blog is great for anyone who wants to understand this subject more. This is great stuff.

  990. Avatar
    watch free full movies online over 3 years later:

    Hi. this is kind of an unconventional question , but have other visitors asked you how get the menu bar to look like you’ve got it?

  991. Avatar
    free cell phone tapping software over 3 years later:

    I thinks quality really matters

  992. Avatar
    saurabh over 3 years later:

    Thank you very much for posting and sharing this great article. It is so interesting. I want to know some other information about this site. So please give me this news quickly. I always will be aware of you. computer parts wholesale

  993. Avatar
    Lag Mobil Applikasjon over 3 years later:

    I like your way of writing, You break it down nicely. Keep these informative post coming! i mean keep posting, much appreciated!... thanks have a great day :)

  994. Avatar
    ????? ????? ???? over 3 years later:

    I have study few of the articles on your blog since yesterday, and I truly like your style of blogging. I tag it to my bookmark web site list and will be checking back soon. Pls visit my site also and let me know what you think.

  995. Avatar
    electric blanket reviews over 3 years later:

    I can relate to this subject via my websites. A lot depends on how targeted the traffic is that I recieve. The more the visitor is in the buying mood the more chance he/she will buy regardless of the quaility of the content.

  996. Avatar
    body building supplements over 3 years later:

    What are you saying, man? I know everyone’s got their own opinion, but really? Listen, your blog is cool. I like the effort you put into it, especially with the vids and the pics.

  997. Avatar
    body building supplements over 3 years later:

    What are you saying, man? I know everyone’s got their own opinion, but really? Listen, your blog is cool. I like the effort you put into it, especially with the vids and the pics.

  998. Avatar
    Ashley Bowling over 3 years later:

    What a story!

  999. Avatar
    http://gopithota.net/get-roth-ira-guide-now/ over 3 years later:

    Rather than take this as a personal attack, or an affront to SOLID principles (although I’d say there’s justification for both) you could take this as an opportunity to realize that the marketing of the principles is lacking, and could do with some improvement.

    roth ira limits

  1000. Avatar
    estetik ameliyat over 3 years later:

    and so good page.. thanks admin for nice text

  1001. Avatar
    buzzing in ears over 3 years later:

    Quality does matter in all parts in life. I don’t agree with you sir.

  1002. Avatar
    buzzing in ears over 3 years later:

    Quality matters I can’t believe it’s even a question.

  1003. Avatar
    blue lizard sunscreens over 3 years later:

    interesting article. i agree that quality matters, its just that people are becoming less appreciative of quality.

  1004. Avatar
    couples counseling over 3 years later:

    when I read this blog that “Quality just doesn’t matter that much.” I was shocked. its really strange for me. I think its totally wrong concept.

  1005. Avatar
    wedding invitations over 3 years later:

    Practicing your main skills should be of utmost importance for those who try to code quality pieces of work

  1006. Avatar
    Artenadas Cultura Curiosidades Literatura over 3 years later:

    Thanks a lot for making this post for us. I was looking for something like this for some time now. Keep up the good work, you’ve helped me a lot.

  1007. Avatar
    Artenadas Cultura Curiosidades Literatura over 3 years later:

    safaff fgwfasd

  1008. Avatar
    medical curtains over 3 years later:

    there words are really strange for me when I read them . In fact my face expressions change.

  1009. Avatar
    ysbearing over 3 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.

  1010. Avatar
    Bellasecret over 3 years later:

    Fantastic, I agree completely.

  1011. Avatar
    Bellasecret over 3 years later:

    there words are really strange for me when I read them .

  1012. Avatar
    Bellasecret over 3 years later:

    Practicing your main skills should be of utmost importance for those who try to code quality pieces of work

  1013. Avatar
    hacer una nota de prensa over 3 years later:

    Your blog is just not only helpful but also incredibly artistic too. There usually are extremely couple of individuals who can write not simple posts that creatively. Maintain the great posting !! hacer una nota de prensa

  1014. Avatar
    Horoskop kostenlos over 3 years later:

    Good job with this. Please keep brining us more because we need more of your type of blogger.

  1015. Avatar
    gaurav over 3 years later:

    this is very nice blog.http://www.mp4-speler.nl”> MP4 speler

  1016. Avatar
    sharma over 3 years later:

    i m impressed MP4 speler

  1017. Avatar
    dallas carpet over 3 years later:

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

  1018. Avatar
    Dave Muller over 3 years later:

    Jeff Attwood always has something important to say

  1019. Avatar
    Fiona over 3 years later:

    I like your articles very much, thanks

  1020. Avatar
    Kredytowiec over 3 years later:

    Definetely I think Joel was playing devil’s advocate

  1021. Avatar
    plmortgage over 3 years later:

    Joel is 100% right in my opinion

  1022. Avatar
    carpet cleaning north london over 3 years later:

    the site in such a way that with very little effort one would never notice what it is making the site tick all without limiting content and effectiveness.

  1023. Avatar
    Pandora Silver Gold Charms over 3 years later:

    It not only embodies the high quality and value sexual high-end jewelry Pandora beadwork ornaments characteristic, but also fuse shirt-sleeve low-end ordinary decorative Pandora Silver Gold Charmsornaments of low price and strong decorative features, which can cater more to broad consumer pursue taste sex, adornment sex and vogue demand, with the vast majority of low-income and pursuit vogue consumption group, with an infinite broad market space

  1024. Avatar
    diploma financial planning over 3 years later:

    This was really funny. I love comedy and I think this is really tons of fun.

  1025. Avatar
    Long Distance Movers over 3 years later:

    Now I need to be fair. I don’t think Jeff meant to say this exactly the way it came out.

  1026. Avatar
    cheap feather hair extensions over 3 years later:

    Wonderful and resourceful article on how to simplify.

  1027. Avatar
    cheap feather hair extensions over 3 years later:

    Wonderful and resourceful article on how to simplify.

  1028. Avatar
    rv solar panels over 3 years later:

    Great stuff from you, man. I’ve read your stuff before and you’re just too awesome.

  1029. Avatar
    christian louboutin over 3 years later:

    Great post, please write more about this, and I like it. I really enjoy reading your blog popular distributed: a good article waiting for you! Greate post,please write more about this,and I like it,I really enjoy reading you blog popular distributed: a good article waiting for you!

  1030. Avatar
    kuzniawspomnien over 3 years later:

    Yeah right… and because of such dumb statements people start to believe that it’s perfectly normal for a fridge to break 1 day after the warranty expires. fotograf Sochaczew

  1031. Avatar
    Download Android Apps over 3 years later:

    You can definitely see your expertise in the work you write. The world hopes for more passionate writers like you who aren’t afraid to say how they believe. Always go after your heart.

  1032. Avatar
    goose canada jackets over 3 years later:

    Many persons are obliged to purchase apparel spaces because they like not being characterised by a label Canada Goose Camp Hoody . In supplement, bare apparel devotes the wearer a canvas, or a intermediate to articulate their creativity or their individual message Canada Goose Solaris Parka.

  1033. Avatar
    balmain clothing over 3 years later:

    Trend comprised in women’s latest tendency apparel online latest tendency balmain jackets shop FLANMARK balmain jeans. In the catalog of women’s apparel are new pieces of the time of the year 08-09, which are certainly supplemented commonplace components of stylish and trendy women’s latest tendency clothing balmain shoes.

  1034. Avatar
    Monster Outlet over 3 years later:

    There are a kind of online retailers trading clothing monster cable computers. This encompasses customary shops that furthermore have online shops as well as retailers who function solely online monster cable iphone. Shopping for apparel online is very well liked particularly for those buyers who manage not have adequate time to visit customary shops and spend time browsing and seeking on clothing monster cable guarantee.

  1035. Avatar
    Belstaff sale over 3 years later:

    Nowadays, who isn’t belstaff bags seeking to find locations where bargain children apparel are available belstaff gangster? Not only manage young children augment out of their apparel rapidly, but for numerous parents, it is critical to find a source of cut-rate apparel in alignment to replenlish their child’s closet belstaff sunglasses sale.

  1036. Avatar
    www.aplicacioneswindows.com over 3 years later:
  1037. Avatar
    www.aplicacioneswindows.com over 3 years later:
  1038. Avatar
    nsdl pan over 3 years later:

    From now , i’ll be the regular visitor of your web. Thanks , great info.

  1039. Avatar
    nsdl pan over 3 years later:

    From now , I’ll be the regular visitor of your web. Thanks , great info.

  1040. Avatar
    nsdl pan over 3 years later:

    From now , I’ll be the regular visitor of your web. Thanks , great information i really enjoyed very much and i think every one read this ..

  1041. Avatar
    Piper Colman over 3 years later:

    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. http://www.lice-treatments.org

  1042. Avatar
    carpet cleaning services stevenage over 3 years later:

    I don’t really know what you’re talking about here. This cant be the only way to think about this can it?

  1043. Avatar
    carpet cleaning enfield over 3 years later:

    You just say so many things that come from nowhere that I’m pretty sure Id have a fair shot.

  1044. Avatar
    home internet providers over 3 years later:

    I’m really happy that I stumbled across this in my search for something relating to this issue.

  1045. Avatar
    Crescent Processing Company over 3 years later:

    I’m so glad that I took the time to look at this blog, because let me tell you. Not a lot of people know how to balance knowledge of a subject and content. The videos are perfect!

  1046. Avatar
    jari over 3 years later:

    Great but how we can be sure, that this is like you write?

  1047. Avatar
    Where Can I Buy An iPad 2 over 3 years later:

    This article is very interesting to read. Good thing that i read this article before closing it. add this to my bookmarked list. Thank you for sharing this one.

  1048. Avatar
    frictionhinge over 3 years later:

    I think the quality is very important in specific field, in specific time, but not all. Sometimes, surely quality seems not more important than time.

  1049. Avatar
    frictionhinge over 3 years later:

    I think the quality is very important in specific field, in specific time, but not all. Sometimes, surely quality seems not more important than time.

  1050. Avatar
    frictionhinge over 3 years later:

    I think the quality is very important in specific field, in specific time, but not all. Sometimes, surely quality seems not more important than time.

  1051. Avatar
    frictionhinge over 3 years later:

    I think the quality is very important in specific field, in specific time, but not all. Sometimes, surely quality seems not more important than time.

  1052. Avatar
    commercial real estate listing over 3 years later:

    Hey great site like all the nice things you had to say have a great day

  1053. Avatar
    aiyi over 3 years later:

    Great but how we can be sure, that this is like you write?

  1054. Avatar
    india golden triangle tour package over 3 years later:

    Good post, its very interesting, all useful information. Keep it update and it has all latest information. I will bookmark this blog. Quality doesn’t matter that Much. india golden triangle tour package.

  1055. Avatar
    payday loans over 3 years later:

    You’re so right. I’m there with you. Your blog is definitely worth a read if anyone comes across it. I’m lucky I did because now I’ve got a whole new view of this.

  1056. Avatar
    Sac Gucci over 3 years later:

    Conception unique de la Sac Gucci est très sympa,Sac Gucci Soldes sont de qualité fiable et à prix raisonnable.Sac Gucci Pas Cher a été considéré comme un Gucci Soldes signe de tendances de la mode et des Gucci Sac a main sélection symbole de statut social,Gucci Soldes online sélectionnez en ligne un Gucci Pas Cher, facile d’avoir un Sac a Main Gucci Soldes 2011 populaire.Oui,désormais tomber en amour avec Sac Gucci Guccissima.

  1057. Avatar
    allen over 3 years later:

    En mer personlig ljus, men ocks? cool. ralph Lauren detta m?rke ?r verkligen ?lskling de europeiska konsumenterna. Speciellt m?nnen ut av det mer Ralph Lauren down jacket

    En herre. N?r ?r det mer viktigt s? att kvaliteten ?r mycket bra, ?r stilen mycket nytt, aldrig inaktuell.

    Ralph Lauren Blazer

  1058. Avatar
    allen over 3 years later:

    En mer personlig ljus, men ocks? cool. ralph Lauren detta m?rke ?r verkligen ?lskling de europeiska konsumenterna. Speciellt m?nnen ut av det mer Ralph Lauren down jacket

    En herre. N?r ?r det mer viktigt s? att kvaliteten ?r mycket bra, ?r stilen mycket nytt, aldrig inaktuell.

    Ralph Lauren Blazer

  1059. Avatar
    duty free over 3 years later:

    Cool Masters need to be living

  1060. Avatar
    moncler jacke over 3 years later:

    I nicht verurteilen sie dafür, ich ihr nicht verübeln, für die eine Sache, verlie? sie ist Erinnerung an die Vergangenheit, und der ganze Rest ist Staub und Asche. Ja, ja, sie ist eine Dame von Geist, stolz und entschlossen. Sie schrubbt die B?den selbst und hat nichts als Schwarzbrot zu essen, aber werden nicht zulassen, sich mit Respektlosigkeit zu behandeln. Deshalb würde sie nicht übersehen, Mr.moncler jacken damen Lebeziatnikov so grob zu ihr, und so, wenn er ihr eine Tracht Prügel für sie, nahm sie in ihr Bett mehr von den Schmerz, ihre Gefühle, als von den Schl?gen. Sie war eine Witwe, als ich ihr verheiratet und hat drei Kinder, eins kleiner als die anderen. Sie heiratete ihren ersten Mann, ein Infanterie-Offizier, nach Liebe, und lief mit ihm aus dem Haus ihres Vaters. Sie war sehr lieb von ihrem Mann, aber er wich-Karten, in Schwierigkeiten geriet und mit dem er starb. Er pflegte sie am Ende zu schlagen, moncler damen jacken und obwohl sie ihn zurück gezahlt, von denen ich echt Belege, bis zum heutigen Tag haben sie von ihm spricht mit Tr?nen, und sie wirft ihn zu mir, und ich bin froh, bin ich froh, dass , allerdings nur in der Einbildung, sollte sie von sich selbst als er einmal glücklich gewesen zu denken. . . . Und sie war bei seinem Tod mit drei Kindern in einer wilden und abgelegenen Gegend, wo ich zuf?llig zu der Zeit gelassen werden, und sie war so hoffnungslose Armut, obwohl ich viele H?hen und Tiefen aller Art gesehen haben, don I left ’ t sich gleich beschreiben es sogar. Ihre Beziehungen hatten alle ihre abgeworfen. Und sie war stolz darauf, auch überm??ig stolz. . . . Und dann, Herr geehrt, und dann habe ich, zum Zeitpunkt Witwer mit einer Tochter von vierzehn verlie? mich von meiner ersten Frau, bot ihr meine Hand, denn ich konnte nicht ertragen den Anblick von so viel Leid. Sie k?nnen beurteilen, das ?u?erste Ende ihrer Katastrophen, dass sie,moncler jacke eine Frau von Bildung und Kultur und angesehenen Familie, sollte zugestimmt haben, meine Frau zu werden. Aber sie hat! Weinend und schluchzend und h?nderingend heiratete sie mir! Denn sie nirgends zu drehen hatte! Verstehst du, Herr,

  1061. Avatar
    moncler quincy over 3 years later:

    Die Vorhersage des Mormon war nur allzu gut erfüllt. Ob es den schrecklichen Tod ihres Vaters oder die Auswirkungen der verha?ten Ehe, in die sie gezwungen worden waren war,moncler damen jacken die arme Lucy nie hielt ihren Kopf wieder, aber verkümmerten und starben innerhalb eines Monats. Ihre versoffene Mann, der sie geheiratet hatte in erster Linie aus Gründen der John Ferrier Eigentum, hatte keinen Einfluss auf keine gro?e Trauer über seinen Verlust, aber seine anderen Frauen trauerte über sie, und setzte sich mit ihr die Nacht vor dem Begr?bnis, wie es die Mormonen Brauch. Sie waren rund um die Bahre in den frühen Stunden des Morgens gruppiert, wenn ihre unaussprechliche Angst und Erstaunen,moncler damen jacken die Tür wurde aufgerissen, und eine wild aussehende, verwitterte Mann in zerrissenen Kleidern betrat den Raum. Ohne einen Blick oder ein Wort zu der kauernden Frauen, ging er auf die wei?e stille Gestalt, die einst die reine Seele von Lucy Ferrier enthalten hatte. Beugte sich über sie, drückte er seine Lippen and?chtig auf ihren kalten Stirn, und dann rei?t ihre Hand, nahm er den Trauring vom Finger. “Sie ist nicht so, dass begraben werden”, rief er mit einem grimmigen Knurren, und bevor ein Alarm angehoben werden k?nnte sprang die Treppe hinunter und war verschwunden. So fremd und so kurz war die Folge,moncler quincy dass die Beobachter k?nnten fand es schwer zu glauben, dass es sich selbst oder andere Menschen zu überzeugen davon, w?re da nicht die unbestreitbare Tatsache, dass der Reif aus Gold, die sie etwa bei Braut markiert worden sind verschwunden.

  1062. Avatar
    Horoskop kostenlos over 3 years later:

    Dude, please tell me that you’re going to write more. I notice you haven’t written another blog for a while

  1063. Avatar
    embroid6000 over 3 years later:

    Thanks the author very much for tremendous article.

    I believe you are very right to maintaining your technical expertise in this line.

    The limitation on technical innovation is ones ability but it is our disability to absorb them. These things are clearly expressed in this article. Please go up with your efforts. http://www.embroiderymachines-forsale.net/brother-cs6000i-computerized-sewing-machine/brother-cs6000i-computerized-sewing-machine/”>Brother CS6000i Computerized Sewing Machine

  1064. Avatar
    magic article rewriter review over 3 years later:

    What you’re 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.

  1065. Avatar
    Instant Payday Loans Online Fast over 3 years later:

    ddd

  1066. Avatar
    mark own over 3 years later:

    I have been looking looking around for this kind of information. Will you post some more in future? I’ll be grateful if you will post more articles in that website.

    Thanks Crissy Carson
    Mark own inc.

  1067. Avatar
    Iris Grand over 3 years later:

    I have been looking looking around for this kind of information. Will you post some more in future? I’ll be grateful if you will post more articles in that website.

    Thanks Crissy Carson
    Mark own inc.

  1068. Avatar
    DDDD over 3 years later:

    AKeats School is the ideal place for students who want to Learn Chinese in China. Nowadays, Mandarin Chinese language has become more and more important in doing business or finding a job. Therefore, many students decide to Study in China to improve their Mandarin Chinese skills. Furthermore, they find Keats School in Kunming, which has top teaching quality and has forty percent returning students. At Keats School, we offer one-on-one Mandarin Chinese courses and small group Chinese classes. Students find those classes are very helpful for them to Study Chinese in China. Kunming is famous for its beautiful weather, which is a key factor for students to decide where they want to learn Chinese in China. After you arrive, we will give you a tour of surrounding area to help you get familiar with neighborhood. At the same time, your teacher will prepare the Chinese course according to your level of Chinese and the goal you want to achieve when you study Chinese in China. Most of Keats School students have studied some Mandarin Chinese before they came to Keats, but they found it is specially very helpful if they learn Chinese in China because they interact with Chinese people every day, which force them to use Mandarin Chinese what they have learned in class. If you want to learn Chinese in China or study Mandarin in China, Keats School is always very welcome you to join us.

  1069. Avatar
    Gold Price over 3 years later:

    The only way to stop his rush was to illegally hold him. If the ref missed the penalty, he still maintains that “there’s no such thing as a cheap shot,” would get even by choking, biting, spearing or head slapping the offending lineman. Gold Price

  1070. Avatar
    French Translation over 3 years later:

    You…are…my…hero!!! I cant believe something like this exists on the internet! Its so true, so honest, and more than that you don’t sound like an idiot! Finally, someone who knows how to talk about a subject without sounding like a kid who didn’t get that bike he wanted for Christmas.

  1071. Avatar
    comeon bonus over 3 years later:

    I’m no expert, but I think you just made the best point. You obviously know a lot about what you’re talking about, and I can really get behind that. Thanks for being so upfront and so honest about the subject matter. I really feel like I have a better understanding now.

  1072. Avatar
    Blu-ray to H264 over 3 years later:

    As a Blu-Ray movies lover, you may have been blocked when convert larger. http://www.bluraytoh264.com

  1073. Avatar
    free level 2 over 3 years later:

    What I don’t understand is how you’re not even more popular than you are now. You’re just so intelligent. You know so much about this subject, made me think about it from so many different angles. Its like people aren’t interested unless it has something to do with Lady Gaga! Your stuffs great. Keep it up!

  1074. Avatar
    Nemesis Now over 3 years later:

    Write more, that’s all I have to say. Literally, it seems as though you relied on the video to make your point. You clearly know what you’re talking about, why waste your intelligence on just posting videos to your blog when you could be giving us something enlightening to read?

  1075. Avatar
    hospital curtains over 3 years later:

    Thanks for trying to discuss this, I realistic understanding powerfully about it and really like discovering more on this subject. If possible, as you attain realistic understanding, would you ideas moving your web page website with more information? It is useful for me.

  1076. Avatar
    Home loan singapore over 3 years later:

    All I want to say is, yes! Yes! Yes! You’re so right. I want to get behind this so much. You speak with so much authority, so much spirit, I feel as though you’ve definitely hit the nail on the head. Good job with this. Please keep brining us more because we need more of your type of blogger.

  1077. Avatar
    business articles over 3 years later:

    Just a question. Do you think you could add a little more in the way of content here? I think you’ve got some interesting points, but I’m just not sold. If you really want to get the crowd behind you, you’ve got to entertain us, man. Maybe you could add a video or two to drag the message home.

  1078. Avatar
    Amsel R over 3 years later:

    My rule of thumb is not to believe anything or anyone speaking in webinars, conferences and other stuff. They almost never tell the truth and the main reason for that is because the people giving speeches are part of a business and that business needs to stay one step ahead of the crowd. It would be foolish to believe everything your potential competitor is telling you. Just my 2 cents.

    Amsel R

  1079. Avatar
    Agrarapro over 3 years later:

    I have been looking looking around for this kind of information. Best regards! Agrár Apró

  1080. Avatar
    Italian Cooking over 3 years later:

    I never listen to StackOverflow anymore. The overly authoritative yet unqualified tone by Mr. Spolsky in particular, no matter the topic, is especially annoying to listen to and strikes me as potentially dangerous.

  1081. Avatar
    Italian Translation over 3 years later:

    What you’re 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 you’re trying to say.

  1082. Avatar
    lowers blood pressure over 3 years later:

    I loved what you’ve done here. The design is elegant, your content classy. Yet, you’ve got an edginess to what you’re offering here. Ill definitely come back for more if you keep this up. Don’t lose hope if not too many people see your vision, know you’ve got a fan right here who values what you’ve got to say and the way you’ve presented yourself. Good on you!

  1083. Avatar
    yourmademoiselle over 3 years later:

    very interesting post, thank you big time! administrator of booking

  1084. Avatar
    Erie Insurance Cincinnati over 3 years later:

    You’re not the average blog writer, man. You definitely have something powerful to add to the web. Your design is so strong that you could almost get away with being a bad writer, but you’re even awesome at expressing what you have to say. Such a great blog. Ill be back for more.

  1085. Avatar
    swtor datacrons over 3 years later:

    You have made some excellent points there. Used to do they’re certified inside subject and barely found any specific info other websites, but great in order to be here, seriously, thanks.

  1086. Avatar
    http://www.cashone.com/ over 3 years later:

    Informative post. Thanks for sharing, technical skill and one’s own unique skill is necessary to get success.

  1087. Avatar
    juicing recipes over 3 years later:

    This is by far one of the most comprehensive posts i’ve seen here and look forward to more of the you have always nice things to post. Thanks for this useful information. excellent post with great resources! This is by far one of the most comprehensive posts i’ve seen here.Keep us updated about this I would like to hear more on this topic!

    by juicing recipes

  1088. Avatar
    juicing recipes over 3 years later:

    This is by far one of the most comprehensive posts i’ve seen here and look forward to more of the you have always nice things to post. Thanks for this useful information. excellent post with great resources! This is by far one of the most comprehensive posts i’ve seen here.Keep us updated about this I would like to hear more on this topic! byjuicing recipes

  1089. Avatar
    can over 3 years later:

    Thank you, yes inspiring. At follow-up

  1090. Avatar
    can over 3 years later:

    Thank you, yes inspiring. At follow-up

  1091. Avatar
    Cyber Sociedade over 3 years later:

    Text written in 2009 but remains current. Congratulations from CyberSociedade.

  1092. Avatar
    San Diego Storage over 3 years later:

    Quality and quantity are both important

    San Diego Storage

  1093. Avatar
    ithemes coupon code over 3 years later:

    I feel lucky to myself being here in this site and I just say that It was a wonderful chance to visit this kind of site and I am happy to know. Thanks

  1094. Avatar
    avr over 3 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.

  1095. Avatar
    San Diego Wedding Photographer over 3 years later:

    Great post, quality always matters! I really enjoyed reading this post!

  1096. Avatar
    Wandtattoo over 3 years later:

    Very Nice blog ! Greeting from Germany, wandtattoo.

  1097. Avatar
    Guaranteed loans for bad credit over 3 years later:

    Good job doing to provide us nice information

  1098. Avatar
    Guaranteed approval loans over 3 years later:

    Thanx for sharing this article, its a quality article

  1099. Avatar
    ticketsgirl over 3 years later:

    Well i disagree. Quality does matter. You might be right upto certain level but overall quality does matter.thank you…

  1100. Avatar
    Russian Dolls over 3 years later:

    Dit is absoluut absurd statement. Kwaliteit is een ding dat overal recht is nodig van je persoonlijke leven om te professioneel.

  1101. Avatar
    Free To Pay Vs Abonament over 3 years later:

    Well i disagree. Quality does matter. You might be right upto certain level but overall quality does matter.thank you…

  1102. Avatar
    Free To Pay Vs Abonament over 3 years later:

    Well i disagree. Quality does matter. You might be right upto certain level but overall quality does matter.thank you…

  1103. Avatar
    door handers over 3 years later:

    door handers Paarsa Printing is offering Custom Printing Services! Sticker Printing and Vinyl Labels,Folder printing .we are also offering Online Printing services with Instant Quotes.

  1104. Avatar
    SAP HCM over 3 years later:

    Found good piece of information here, You break it down nicely and this post is very interesting and read worthy. Keep these informative post coming.

  1105. Avatar
    Lap Band Los Angeles over 3 years later:

    Oh my goodness! You’re so right! I really don’t think anyone’s put it that way before! You must be an expert on this because you just made it so easy to understand, made me want to learn more about it! Do you, like, study this subject because you seem to be so in tune with the issue? Keep it up, man. You’ve got a great mind for it!

  1106. Avatar
    weight loss spray over 3 years later:

    Great post!! Keep up the good work – I’m sure someday soon, someone will be doing an Ada Lovelace post about you

  1107. Avatar
    car dealer license over 3 years later:

    I really experienced examining your publish. You have offered a lot of details and its really awesome to know that. Thanks for providing this awesome and useful publish. car dealer license

  1108. Avatar
    ps over 3 years later:

    Good stufff… keep it up..

  1109. Avatar
    ENT Instruments over 3 years later:

    I appericiate your effort its such a nice nice, and has very informative.

    ENT Instruments

  1110. Avatar
    szkolenia handlowe over 3 years later:

    swietny tekst

  1111. Avatar
    Bill over 3 years later:

    I started out as a mainframe programmer in the 80’s… and with 10,000 line programs, I felt quality more than important… it was a necessity for the poor guy that has to maintain my code 5 years later. I still think quality matters. Search Engines consider things like code to text ratios. I think your final statement said it all. Thanks for being a true professional that takes pride in his work.

    Now I do search engine optimization out of Grand Rapids and enjoy a well structured site - makes my job much easier.

    www.on-targetseo.com

    Please don’t judge me by my own site as it is built with a WYSIWYG as I still only know Cobol.

  1112. Avatar
    psk over 3 years later:

    There is appreciably a lot to know about this. I’m glad reading this content, I very much like and agree with your thoughts.

  1113. Avatar
    Magnus Strømnes Bøe over 3 years later:

    It would be interesting to discuss quality requirements in terms of amount of use / users.

    When any given application or website for instance is released the cost per user / use must be taken into account.

    If there are few users on a specific type of cell phone, there is no economic interest in testing on that unit.

    Great post and discussion by the way.

  1114. Avatar
    press release distribution services over 3 years later:

    What I don’t understand is how you’re not even more popular than you are now. You’re just so intelligent. You know so much about this subject, made me think about it from so many different angles. Its like people aren’t interested unless it has something to do with Lady Gaga! Your stuffs great. Keep it up!

  1115. Avatar
    weight loss spray over 3 years later:

    AWESOME! Keep working at it and that Jack and Squat will be yours someday.

  1116. Avatar
    Laptops over 3 years later:

    Your blog post raises some interesting points and as they say quality is better than quantity

  1117. Avatar
    dog registry over 3 years later:

    Quality matters, but early on speed tends to be important too. You can always rewrite the code when you have more time.

  1118. Avatar
    supercuts over 3 years later:

    This is the perfect blog for anyone who wants to know about this topic. You know so much its almost hard to argue with you (not that I really would want…HaHa). You definitely put a new spin on a subject that’s been written about for years. Great stuff, just great!

  1119. Avatar
    http://www.OzStickerPrinting.com over 3 years later:

    Yeah, you are right, Quality matters.

  1120. Avatar
    edgar over 3 years later:

    Yeah, you are right, Quality matters.

  1121. Avatar
    edgar over 3 years later:

    He (Spolsky) also backs off on his criticism of SOLID and admits he didn’t know what he was talking about in Stackover #39.

  1122. Avatar
    stickers over 3 years later:

    it really a good, but the quality really matter, specially in our business. stickers printing.

  1123. Avatar
    www.ralphlaurenstock.com over 3 years later:

    Son los monosacáridos glucosa y fructosa, en los intestinos sin digestión pueden ser directamente absorbidas en el torrente sanguíneo, de manera que niveles elevados de glucosa sanguínea, la sacarosa y dextrina ligeramente hidrolizado Ralph Lauren t-shirt

  1124. Avatar
    maria171 over 3 years later:

    excellent, I agree completely.

  1125. Avatar
    maria171 over 3 years later:

    excellent, i like it

  1126. Avatar
    maria171 over 3 years later:

    excellent. i like it

  1127. Avatar
    Camisas Femininas over 3 years later:

    I agree: Quality doesnt matter that much. I do that every day. But is same old story. thanks from Camisas Femininas.

  1128. Avatar
    leaflets over 3 years later:

    I really enjoyed to visit on this site.I really like this. leaflets

  1129. Avatar
    Ten mien over 3 years later:

    Glad to read your response here But i think you should think more about “Quality just doesn’t matter that much.”

  1130. Avatar
    Ten mien over 3 years later:

    Glad to read your response here But i think you should think more about “Quality just doesn’t matter that much.”

  1131. Avatar
    Ten mien over 3 years later:

    Quality just doesn’t matter that much.

  1132. Avatar
    mail house over 3 years later:

    This was a really great visit of my life.I really enjoyed.Thank you! mail house

  1133. Avatar
    solar panels for you home over 3 years later:

    It’s always my pleasure to read this type of stuff.I am very much interested in these types of topics from childhood and it’s my habit to read this.

  1134. Avatar
    Building surveyors Bournemouth over 3 years later:

    All I can say is keep it up. This blog is so necessary in a time when everyone just wants to talk about how many people someone’s cheated on their wife with.

  1135. Avatar
    lipozene over 3 years later:

    This is a nice article.I ‘ve found some articles that help too,but this one is the best. Thank you.

  1136. Avatar
    lipozene over 3 years later:

    the article is impressive,thank you for your share,

  1137. Avatar
    remarkable content over 3 years later:

    You produce a great point in your own final paragraph. We couldn’t agree more together with your points. In today’s modern world, your approach to this issue is lacking in today’s kids. We need to ensure that our kids find out more on this topic so we never lose our ways.

  1138. Avatar
    program management software over 3 years later:

    Your site is very useful for me , i like it very much, i get many informations from this! Wonderful website.

  1139. Avatar
    hosting over 3 years later:

    this is getting better

  1140. Avatar
    Smoothies over 3 years later:

    Thank you for sharing these helpful post it is very interesting and read worthy… I like your way of writing, You break it down nicely. Keep these informative post coming! much appreciated!... thanks have a great day :)

  1141. Avatar
    tomsproxy@gmail.com over 3 years later:

    stackoverflow rocks, and objectmentor blows. crotchety old man

  1142. Avatar
    air max 95 over 3 years later:

    When actually we possess the ability to compose a resume, we typically make air max 95 an effort to compose within probably the most effective tactic to acquire picked for an location interview. Similarly, a football coaching application is intended in these sorts of the signifies for producing the workplace recognize about your air max 95 men useful experience, and what all you could have obtained until date. It is because of in the direction of the fact,Nike Shox the interviewer through the job interview could ask for you resume-based questions, or possibly a application can just be the middle subject within yourair max 95 women discussion. Hence, it is most great to hold alternative about that which you create. inside the flip side, in addition, it provides you with an probability to talk about your philosophies pertaining to football, as well as your methods in regards in the direction of the celebration and players.

     

  1143. Avatar
    Maria lisa over 3 years later:

    I agree quality matters a lot , successful people always like to go for quality rather than quantity because quality is the result of your intelligent effort. organic chlorella

  1144. Avatar
    MicroBusiness Solutions over 3 years later:

    online web based simple easy POS billing invoicing software in chennai, bangalore, kerala, india, dubai, qatar, srilanka

  1145. Avatar
    MicroBusiness Solutions over 3 years later:

    maxxbiz inventory stock software in chennai, bangalore, kerala, india, dubai, qatar, srilanka

  1146. Avatar
    locksmith tempe over 3 years later:

    This post is very nice about quality does not matter; I think purity is very essential. I like this posts beautiful topic. I always find this types of valuable posts, because there are available some good information. So I definitely visit you soon.

  1147. Avatar
    locksmith tempe over 3 years later:

    This post is very nice about quality does not matter; I think purity is very essential. I like this posts beautiful topic. I always find this types of valuable posts, because there are available some good information. So I definitely visit you soon.

  1148. Avatar
    marialisa222 over 3 years later:

    Interesting article, I would ever like to go for quality rather than quantity room screen dividers

  1149. Avatar
    press release writing over 3 years later:

    Can I make a suggestion? I think you’ve got something good here. But what if you added a couple links to a page that backs up what you’re saying? Or maybe you could give us something to look at, something that would connect what you’re saying to something tangible? Just a suggestion.

  1150. Avatar
    SWF Converter Mac over 3 years later:

    This post is very nice about quality does not matter; I think purity is very essential. convert flash swf on mac os x

  1151. Avatar
    best internet reviews over 3 years later:

    You have done such an amazing job on this series. I envy your sewing skills and your patience and your diligence. If anyone ever asks me how to sew, I’m sending them to your blog and this series. Congratulations on such an extensive, well thought out and clearly presented set of tutorials best internet reviews

  1152. Avatar
    LaLALa over 3 years later:

    I like this effect and tutorial thanks the steps were clear and concise.

    thong tin doanh nghiep thông tin doanh nghi?p y tuong kinh doanh ý t??ng kinh doanh

  1153. Avatar
    Lisa over 3 years later:

    Wow, amazing, what do you think he meant? I would think it would be the opposite, quality matters, it is the only thing that sales. although I know nothing about code, just some html, but if I did I think I would be excellent at it! Quality would definitely be the priority. Interesting post thanks for adding it on. Lisa

  1154. Avatar
    MicroBusiness Solutions over 3 years later:

    online web based simple easy POS retail billing invoicing software in chennai, bangalore, kerala, india, dubai, qatar, srilanka

    maxxbiz inventory stock software in chennai, bangalore, kerala, india, dubai, qatar, srilanka

    vat excise tax efiling gst based accounting software in chennai, bangalore, kerala, india, dubai, qatar, srilanka

    textile garment store software in chennai, bangalore, kerala, india, dubai, qatar, srilanka

    pharmaceutical distributor medical chemist retail shop software in chennai, bangalore, kerala, india, dubai, qatar, srilanka

    quotation software in chennai, bangalore, kerala, india, dubai, qatar, srilanka

    plywood timber logs granite glassware software in chennai, bangalore, kerala, india, dubai, qatar, srilanka

    web based online accounting erp system for business management software in chennai, bangalore, kerala, india, dubai, qatar, srilanka

    retail POS chain software in chennai, bangalore, kerala, india, dubai, qatar, srilanka

    small medium business SME accounting software in chennai, bangalore, kerala, india, dubai, qatar, srilanka

    barcode label printing software in chennai, bangalore, kerala, india, dubai, qatar, srilanka

  1155. Avatar
    Advertising agencies over 3 years later:

    Thank you for this great information, you write very well which i like very much. I am really impressed by your post.

  1156. Avatar
    Fashion Trends Blog over 3 years later:

    Excellent post. Love the read. Thanks for the share.

  1157. Avatar
    Fashion Trends Blog over 3 years later:

    Excellent post. Love the read. Thanks for the share.

  1158. Avatar
    logo design over 3 years later:

    This blog is very helpful with very useful information. I have looking forward for more useful information here. Thanks for posting

  1159. Avatar
    volatility factor over 3 years later:

    Brilliant aviator and helpful info sensing forwards to proximo posts in this land thanks a rattling gripping article, exciting ideas and a lot of keen questions posed Thanks for your insight for the outstanding longhand case

  1160. Avatar
    data recovery over 3 years later:

    So the angels are investing in a startup to have fun. They think the entrepreneur is cool, they think the idea is sexy, and they will tell their friends about it at cocktail parties. There are some things you cannot buy in life, and one of them is street cred. But angels try to do this with their startup investments.

    Data recovery

  1161. Avatar
    kazino online over 3 years later:

    I feel strongly about it and enjoy understanding extra on this subject. If doable, as you gain experience, would you thoughts updating your weblog with a lot more info? It really is very useful for me.

  1162. Avatar
    bali villas over 3 years later:

    I wonder how you got so good. HaHa! This is really a fascinating blog, lots of stuff that I can get into. One thing I just want to say is that your design is so perfect! You certainly know how to get a girls attention! I’m glad that you’re here. I feel like I’ve learned something new by being here.

  1163. Avatar
    cosmetic dentist lethbridge over 3 years later:

    Excellent information to many people like to read articles to learn about these issues of great interest.Oups… my blog disappeared from Les Explorers list ; )So many people leave a comment in your blog, For this we can know that your blog is very Wonderful,Cheers for your performance, I hope you continue to post such good articles.

  1164. Avatar
    business class deals over 3 years later:

    It actually helps me to find out pleasurable and precious information

  1165. Avatar
    business class deals over 3 years later:

    Thanks intended for giving out.

  1166. 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!!

  1167. Avatar
    slow cooker recipes over 3 years later:

    Dude, please tell me that you’re going to write more. I notice you haven’t written another blog for a while (I’m just catching up myself). Your blog is just too important to be missed. You’ve got so much to say, such knowledge about this subject it would be a shame to see this blog disappear. The internet needs you, man!

  1168. Avatar
    Todd Lust over 3 years later:

    really use full and great job you done, i really like it and i find it very use full, hope that you will keep it up

    gas leasing oil gas lease

  1169. Avatar
    Todd Lust over 3 years later:

    I think you’ve made some truly interesting points. Not too many people would actually think about this the way you just did. I am really impressed that there is so much information about this subject that have been uncovered and you did it so well, with so much class. Thanks.

    mineral rights gas leases

  1170. Avatar
    Matt Xiong over 3 years later:

    A very nice post is provided in this blog and i like it because it provides the information i am looking for and i have bookmark this blog and i would like to read your next post.

    ipod repair ipad repair parts

  1171. Avatar
    Matt Xiong over 3 years later:

    A very nice post is provided in this blog and i like it because it provides the information i am looking for and i have bookmark this blog and i would like to read your next post.

    ipod repair ipad repair parts

  1172. Avatar
    David Dix over 3 years later:

    Hello. Very cool blog!! Guy.. Excellent.. Amazing.. I will bookmark your blog and

    50 cent

  1173. Avatar
    Eric Fugat over 3 years later:

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

    multistate bar bar exam questions

  1174. Avatar
    Horoskop over 3 years later:

    I wonder how you got so good. HaHa! This is really a fascinating blog, lots of stuff that I can get into. One thing I just want to say is that your design is so perfect! You certainly know how to get a girls attention!

  1175. Avatar
    Laser lipo Reno NV over 3 years later:

    What you’re 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 you’re trying to say. I’m sure you’ll reach so many people with what you’ve got to say.

  1176. Avatar
    mulberry hobo over 3 years later:

    Online mulberry outlet here offer various Mulberry handbag such as Alexa Mulberrry,Bayswater Mulberry,Mulberry Tote Bags,Mulberry Clutch Bags,Mulberry Satchel Bags,Mulberry Shoulder Bags,Mulberry Holdall Bags and mulberry Briefcase Bags for you. These Mulberry bags were known for the excellent quality and fashionable design,they must be satisfied to you.Besides,all bags on our online bag mulberry outlet are free shipping and available at cheap and great discout price,come to order them now.

  1177. Avatar
    Fashion Trends Blog over 3 years later:

    Awesome stuff. But in my opinion Quality matters a lot.

  1178. Avatar
    Charles Dowdy over 3 years later:

    I just want to let you know that I just check out your site and I find it very interesting and informative. I can’t wait to read lots of your posts

    Personal Development Plan Sample

  1179. Avatar
    seconde chance au credit over 3 years later:

    Mortgage farmhouse cottage for secondary property….......

  1180. Avatar
    multistate bar exam over 3 years later:

    I think you’ve made some truly interesting points. Not too many people would actually think about this the way you just did. I am really impressed that there is so much information about this subject that have been uncovered and you did it so well, with so much class. Thanks. multistate bar exam

  1181. Avatar
    ali19bars over 3 years later:

    Oh my! To tell you frankly I was simply looking for ali19bars originally when I suddenly came across to your site then saw this “Quality Doesn’t Matter That Much”—Jeff and Joel . It was such an awesome article and I believe the post touches the reader’s heart. Congrats!

  1182. Avatar
    office fit out london over 3 years later:

    Whoa! I really love everything I discovered on your web page. The idea was really to get articles or blog posts that is related to office fit out london however I noticed your objectmentor instead. But I really can say that you made my day!

  1183. Avatar
    houses for sale in spain over 3 years later:

    I wonder how you got so good. HaHa! This is really a fascinating blog, lots of stuff that I can get into. One thing I just want to say is that your design is so perfect! You certainly know how to get a girls attention!

  1184. Avatar
    detox retreat over 3 years later:

    Oh my goodness! You’re so right! I really don’t think anyone’s put it that way before! You must be an expert on this because you just made it so easy to understand, made me want to learn more about it! Do you, like, study this subject because you seem to be so in tune with the issue? Keep it up, man. You’ve got a great mind for it!

  1185. Avatar
    longchamp over 3 years later:

    sadsadsasda

  1186. Avatar
    longchamp over 3 years later:

    dsasdasad

  1187. Avatar
    ren64lurv over 3 years later:

    In the evening, I desire to browse the net prior to I go to sleep. I just came upon your blog site and I was remembered of the reason why I frequently go on the net. Yesterday, I discovered this blog on ren64lurv. I thought that it was decent but your website is a great deal far better. Thanks and well done!

  1188. Avatar
    multistate bar exam over 3 years later:

    This is my first time I visit here. I found so many interesting stuffs 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 good work. So everybody is welcome. multistate bar exam

  1189. Avatar
    mamka blog over 3 years later:

    i am glad to see this idea, very nice and intelligent work

  1190. Avatar
    mamka blog over 3 years later:

    i am glad to see this idea, very nice and intelligent work

  1191. Avatar
    laptop review over 3 years later:

    I arrive on here all the time and am floored with the fresh information here! You are great!

  1192. 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.

  1193. Avatar
    Esqui Andorra over 3 years later:

    I guess Ill just have to keep reading yours and hope that one day I can write on a subject with as much knowledge as you’ve got on this one!

  1194. Avatar
    easy chili recipe over 3 years later:

    You sure do know what you’re talking about. Man, this blog is just great! I cant wait to read more of what you’ve got to say. I’m really happy that I came across this when I did because I was really starting to get bored with the whole blogging scene. You’ve turned me around, man!

  1195. Avatar
    payday loans with no credit check over 3 years later:

    Thanks for the atcle. I think that quality is always the most important thing and it doesnt worth to underappreciate it.That’s why you are completely right that you appreciate quality and put it one the first place.

  1196. Avatar
    payday loans with no credit check over 3 years later:

    Thanks for the atcle. I think that quality is always the most important thing and it doesnt worth to underappreciate it.That’s why you are completely right that you appreciate quality and put it one the first place.

  1197. Avatar
    payday loans with no credit check over 3 years later:

    Thanks for the atcle. I think that quality is always the most important thing and it doesnt worth to underappreciate it.That’s why you are completely right that you appreciate quality and put it one the first place.

  1198. Avatar
    payday loans with no credit check over 3 years later:

    Thanks for the atcle. I think that quality is always the most important thing and it doesnt worth to underappreciate it.That’s why you are completely right that you appreciate quality and put it one the first place.

  1199. Avatar
    Mississauga ON Cosmetic Dentist over 3 years later:

    Thank you for making that statement. Technical mastery requires constant practice.

  1200. 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.

  1201. Avatar
    Garage Door Spring Repair over 3 years later:

    This is definitely a topic that’s close to me so I’m happy that you wrote about it. I’m also happy that you did the subject some justice. Not only do you know a great deal about it, you know how to present in a way that people will want to read more. I’m so happy to know someone like you exists on the web.

  1202. Avatar
    longchamp outlet online over 3 years later:

    sasadasadsda

  1203. Avatar
    kaip numesti svorio over 3 years later:

    I cannot WAIT to read more of this. I mean, you just know so much about this. So much of it I’ve never even thought of. You sure did put a new twist on something that I’ve heard so much about.

  1204. Avatar
    Chiropractic San Ramon over 3 years later:

    I don’t know what to say. This blog is fantastic. That’s not really a really huge statement, but its all I could come up with after reading this. You know so much about this subject.

  1205. Avatar
    bargain over 3 years later:

    Hello, I love reading through your blog, I wanted to leave a little comment to support you and wish you a good continuation. Wishing you the best of luck for all your blogging efforts.

  1206. Avatar
    IT Support Bournemouth over 3 years later:

    Your blog is STELLAR! I mean, I’ve never been so entertained by anything in my life!

  1207. Avatar
    socks over 3 years later:

    What I don’t understand is how you’re not even more popular than you are now. You’re just so intelligent. You know so much about this subject, made me think about it from so many different angles.

  1208. Avatar
    pay on over 3 years later:

    Your post is really appreciative,That’s really a awesome photos.Thanks for sharing the information with us.I also bookmark your site and visit it in future for more information.

    pay on results seo

  1209. Avatar
    james over 3 years later:

    like this il

  1210. Avatar
    scent systems over 3 years later:

    Did you realize that your site is the ideal? Your site has an amazing content especially this Quality Doesn’t Matter That Much. You’re going to acquire lots of subscribers for sure. Now, I’m sort of contemplating if I’m gonna transform my hobby on understanding scent systems to browsing on your current site.

  1211. Avatar
    cures for heartburn over 3 years later:

    You can have too much quality, because quality comes at a price. There is a sweet spot between cost curve and quality curve perceived as a user satisfaction.

  1212. Avatar
    Plastic Injection Mold (100% made in Taiwan) over 3 years later:

    With more than 20 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.

    For the overseas market, we work very closely with local representatives in order to take care of the technical communication and after-sales service to our customers. We also participate in the EUROMOLD & FAKUMA exhibitions and meet our customers every year in Europe. By concentrating on mold “niche markets”, we play a very useful mold maker role from the Far East whenever customers want to develop their new projects. We provide services from A to Z to our customers on a very economic cost and effect basis.

  1213. Avatar
    jovton over 3 years later:

    People seem to forget Acceptance Tests as part of the process to validates the design that was produced by TDD. Acceptance Tests are written by business analysts and product owners. They are the ultimate validation. And they should be automated.

  1214. Avatar
    GaryCoggin over 3 years later:

    It’s really a nice and helpful piece of information. I’m glad that you shared this helpful info with us. Please keep us informed like this. I want to say it would supply up to!multistate bar

  1215. Avatar
    Moving to Washington dc over 3 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. Moving to Washington dc

  1216. Avatar
    San Diego Landscaping over 3 years later:

    Oh my! To tell you seriously I’m just looking for San Diego Landscaping at first when I unexpectedly came across towards your site then saw this Quality Doesn’t Matter That Much”—Jeff and Joel . It was such a great article and I believe the post touches the reader’s heart. Kudos! http://tandtlandscape.com/

  1217. Avatar
    ps4 over 3 years later:

    Congratulations on having one of the most sophisticated blogs I’ve come across in some time! Its just incredible how much you can take away from something simply because of how visually beautiful it is.

  1218. Avatar
    Chiropractor in San Francisco over 3 years later:

    If most people wrote about this subject with the eloquence that you just did, I’m sure people would do much more than just read, they’d act. Great stuff here. Please keep it up.

  1219. Avatar
    Sherrie Jackson over 3 years later:

    I’m glad you have shared this The Equalities Review to us. I learned many things from the

  1220. Avatar
    Sherrie Jackson over 3 years later:

    Thanks for the great review.Well I definitely liked reading it,I have rooted all over the internet looking for interesting ideas,i think your site is well informed.

  1221. Avatar
    Gems TV over 3 years later:

    More people need to read this and understand this side of the story. I cant believe you’re not more popular because you definitely have the gift.

  1222. Avatar
    list of cpas over 3 years later:

    I am not usually motivated by clarifying posts about Quality Doesn’t Matter That Much, nevertheless short article genuinely made me think about your points of views. You have provided important and reliable ideas which are rational and interesting. I expertly love to write about list of cpas. Therefore I am aware about the effort it will take to make an informative article like that. Many thanks for exposing your professional work.

  1223. Avatar
    Architects mailing list over 3 years later:

    I have read your Quality Doesn’t Matter That Much and I was actually impressed with how you came up with the content. But I just discovered your site by accident while I was hunting for internet sites regarding architects mailing list. However I would be informing my good friends on how I was satisfied with your blog post.

  1224. Avatar
    freebies over 3 years later:

    All I can say is keep it up. This blog is so necessary in a time when everyone just wants to talk about how many people someone’s cheated on their wife with. I mean, thanks for bringing intelligence back to the web, its been sorely missed.

  1225. Avatar
    car hire aruba over 3 years later:

    I think more people need to read blogs like this. Its so important to know how to construct a great blog to get people interested and you’ve done just that. The content is great, the videos are perfect for what you’re trying to say. Awesome, man. Really awesome! Cant wait to read more.

  1226. Avatar
    http://www.kingcopywriting.com/ over 3 years later:

    I am visiting this blog for the first time and i found it very interesting and informative for it viewers.

  1227. Avatar
    http://www.extreme-autowerks.com/ over 3 years later:

    I was hunting for internet sites regarding architects mailing list. You have provided important and reliable ideas which are rational and interesting.I mean, thanks for bringing intelligence back to the web, its been sorely missed.

  1228. Avatar
    http://www.extreme-autowerks.com/ over 3 years later:

    I expertly love to write about list of cpas.I’m glad that you shared this helpful info with us.I came across this when I did because I was really starting to get bored with the whole blogging scene.

  1229. 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…

  1230. 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…

  1231. Avatar
    business email lists over 3 years later:

    There are just so numerous things that one can do online. A few days ago, I saw this blog on business email lists. Great Job!

Comments