<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>Object Mentor Blog: "Quality Doesn't Matter That Much" -- Jeff and Joel</title>
    <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description></description>
    <item>
      <title>&amp;quot;Quality Doesn't Matter That Much&amp;quot; -- Jeff and Joel</title>
      <description>&lt;p&gt;I was riding my exercise bike, listening to &lt;a href="http://blog.stackoverflow.com/2009/01/podcast-38/"&gt;Stack Overflow #38&lt;/a&gt; when I heard Jeff Atwood and Joel Spolsky say &lt;em&gt;&amp;#8220;Quality just doesn&amp;#8217;t matter that much.&amp;#8221;&lt;/em&gt;  I nearly fell off my bike.&lt;/p&gt;


	&lt;p&gt;I mean this is &lt;em&gt;Joel Spolsky&lt;/em&gt; right?  His buddy Jeff makes this incredibly dumb statement and Joel grunts his approval.  &lt;span class="caps"&gt;WTF&lt;/span&gt;?&lt;/p&gt;


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


	&lt;p&gt;Now I need to be fair.  I don&amp;#8217;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 &lt;em&gt;code&lt;/em&gt; quality just doesn&amp;#8217;t matter that much.&lt;/p&gt;


	&lt;p&gt;But that doesn&amp;#8217;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&amp;#8217;ll simply fall back on the old saw &lt;em&gt;&amp;#8220;Faithful in little, faithful in much.&amp;#8221;&lt;/em&gt;  In other words, if you can&amp;#8217;t keep your code clean, no way can you keep your systems clean.&lt;/p&gt;


	&lt;p&gt;So I think the fairest thing I can say about this is that Jeff was probably saying things he didn&amp;#8217;t really mean because he felt his mentor, Joel, was approving.&lt;/p&gt;


	&lt;p&gt;To make matters worse, all of this was preceded by a truncated rant by Joel about &lt;span class="caps"&gt;TDD&lt;/span&gt;.  Joel and Jeff were agreeing that unit testing was really not very important and that testing is often a waste of time.  (I&amp;#8217;m starting to wonder if anyone should be using any of their products.)&lt;/p&gt;


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


	&lt;p&gt;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.&lt;/p&gt;


	&lt;p&gt;Joel went on to complain about the &lt;em&gt;fragile test problem&lt;/em&gt; which is that as you make changes to your code, some of your tests naturally fail.  Joel quoted the statistic 10%.  That&amp;#8217;s laughable, and indicates that Joel has never tried to to gain anything beyond a surface understanding of &lt;span class="caps"&gt;TDD&lt;/span&gt; (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 &lt;em&gt;decoupling&lt;/em&gt;.&lt;/p&gt;


	&lt;p&gt;I&amp;#8217;m not religious about &lt;span class="caps"&gt;TDD&lt;/span&gt;.  I consider it a discipline worth following.  I don&amp;#8217;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&amp;#8217;t write tests for at all, because it&amp;#8217;s just not worth it.  But those are exceptions to the rule.  The &lt;em&gt;vast&lt;/em&gt; majority of the code I write, I write test first.  (And no, Joel, this isn&amp;#8217;t a waste of &lt;em&gt;my&lt;/em&gt; time.)&lt;/p&gt;


	&lt;p&gt;At some point in the discussion, Joel took on the &lt;a href="http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod"&gt;&lt;span class="caps"&gt;SOLID&lt;/span&gt; principles&lt;/a&gt;.  He said that these principles are so extremely bureaucratic that they must have come from the mind of someone who doesn&amp;#8217;t write a lot of code.  He also used the word &amp;#8220;idiotic&amp;#8221;.&lt;/p&gt;


	&lt;p&gt;Again, this is a symptom of someone who has focussed on business and lost his technical chops.  Euclid once told a king, &amp;#8220;There is no royal road to Geometry.&amp;#8221;  There is no executive summary that explains the &lt;span class="caps"&gt;SOLID&lt;/span&gt; principles well enough that you can comment on them critically.&lt;/p&gt;


	&lt;p&gt;I won&amp;#8217;t go into his exegesis of the principles because it&amp;#8217;s, frankly, embarrassing.  I&amp;#8217;ll simply say that I&amp;#8217;ve been a coder for 40 years.  I&amp;#8217;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&amp;#8217;ve written over the last six months, they are free to inspect my &lt;a href="http://github.com/unclebob"&gt;github&lt;/a&gt; repository.&lt;/p&gt;


	&lt;p&gt;Joel said that the &lt;span class="caps"&gt;SOLID&lt;/span&gt; principle aren&amp;#8217;t &amp;#8220;agile&amp;#8221;.  (sigh).  Everybody and his uncle thinks he knows what the term &amp;#8220;agile&amp;#8221; means. But &lt;em&gt;I&amp;#8217;m&lt;/em&gt; the guy who &lt;em&gt;called the meeting&lt;/em&gt; where the name &amp;#8220;agile&amp;#8221; was picked.  I&amp;#8217;ve been writing about Agile development since the term Agile development was created.  I think I know what is Agile and what isn&amp;#8217;t.  And I think I have the authority to override Joel on this one.  Joel, the &lt;span class="caps"&gt;SOLID&lt;/span&gt; principles are agile.&lt;/p&gt;


	&lt;p&gt;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&amp;#8217;t believe I can offer technical advice unless I am &lt;em&gt;living&lt;/em&gt; that technical advice.&lt;/p&gt;


	&lt;p&gt;You see, &lt;em&gt;I think quality matters&lt;/em&gt;.  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&amp;#8230; I think the quality of my advice matters.&lt;/p&gt;</description>
      <pubDate>Sat, 31 Jan 2009 18:34:29 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:e3a4d314-81b5-48ed-b5f7-53177311e4b0</guid>
      <author>Uncle Bob</author>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by leaflets</title>
      <description>&lt;p&gt;I really enjoyed to visit on this site.I really like this.
&lt;a href="http://www.demandprints.com/" rel="nofollow"&gt;leaflets&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 08 Feb 2012 14:31:12 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:7fe4da76-ea44-45a8-bd6c-d4d9244f73dd</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-202491</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by Camisas Femininas</title>
      <description>&lt;p&gt;I agree: Quality doesnt matter that much. I do that every day. But is same old story. thanks from Camisas Femininas.&lt;/p&gt;</description>
      <pubDate>Wed, 08 Feb 2012 13:10:44 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:9338bafd-427f-4c71-b4be-17ddfb2d4f17</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-202485</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by maria171</title>
      <description>&lt;p&gt;excellent. i like it&lt;/p&gt;</description>
      <pubDate>Wed, 08 Feb 2012 09:50:17 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:82432e05-6641-4a4d-ac8f-5a12b04a28a0</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-202436</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by maria171</title>
      <description>&lt;p&gt;excellent, i like it&lt;/p&gt;</description>
      <pubDate>Wed, 08 Feb 2012 09:46:06 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:e4002a36-b9de-4eff-b5ba-44cccc73aa4b</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-202435</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by maria171</title>
      <description>&lt;p&gt;excellent, I agree completely.&lt;/p&gt;</description>
      <pubDate>Wed, 08 Feb 2012 09:42:16 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:e323add0-44ce-4a48-bacc-13d2357080a0</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-202427</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by www.ralphlaurenstock.com</title>
      <description>&lt;p&gt;Son los monosac&#225;ridos glucosa y fructosa, en los intestinos sin digesti&#243;n pueden ser directamente absorbidas en el torrente sangu&#237;neo, de manera que niveles elevados de glucosa sangu&#237;nea, la sacarosa y dextrina ligeramente hidrolizado
&lt;a href="http://www.poloralphlaurengroup.com/" rel="nofollow"&gt;Ralph Lauren t-shirt&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Wed, 08 Feb 2012 06:15:44 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:d78d908b-3f2b-403a-8e85-578f5a1e1b89</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-202355</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by stickers</title>
      <description>&lt;p&gt;it really a good, but the quality really matter, specially in our business. stickers printing.&lt;/p&gt;</description>
      <pubDate>Tue, 07 Feb 2012 23:44:37 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:3d76231c-bf70-4356-ab3c-cd183e5047a0</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-202173</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by edgar</title>
      <description>&lt;p&gt;He (Spolsky) also backs off on his criticism of SOLID and admits he didn&#8217;t know what he was talking about in Stackover #39.&lt;/p&gt;</description>
      <pubDate>Tue, 07 Feb 2012 22:17:53 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:e47556c3-78b6-466f-a7ae-74b865a64b9c</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-202159</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by edgar</title>
      <description>&lt;p&gt;Yeah, you are right, Quality matters.&lt;/p&gt;</description>
      <pubDate>Tue, 07 Feb 2012 22:15:11 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:63e680b1-1d1c-4011-8a12-782b22b43586</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-202157</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by http://www.OzStickerPrinting.com</title>
      <description>&lt;p&gt;Yeah, you are right,  Quality matters.&lt;/p&gt;</description>
      <pubDate>Tue, 07 Feb 2012 22:14:13 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:a2192ee0-5c37-4ecc-9e16-4ddd7be7acde</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-202156</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by supercuts</title>
      <description>&lt;p&gt;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&amp;#8230;HaHa).  You definitely put a new spin on a subject that&amp;#8217;s been written about for years.  Great stuff, just great!&lt;/p&gt;</description>
      <pubDate>Fri, 03 Feb 2012 22:03:58 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:c1d88d54-2deb-435a-b005-dbe5b3ef7a45</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-201658</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by dog registry</title>
      <description>&lt;p&gt;Quality matters, but early on speed tends to be important too. You can always rewrite the code when you have more time.&lt;/p&gt;</description>
      <pubDate>Wed, 01 Feb 2012 15:27:30 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:f7377133-917a-4a51-bd39-d7b334429804</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-200585</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by Laptops</title>
      <description>&lt;p&gt;Your blog post raises some interesting points and as they say quality is better than quantity&lt;/p&gt;</description>
      <pubDate>Wed, 01 Feb 2012 10:07:38 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:c2484099-6264-48cb-97ec-4387c0559cc3</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-200567</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by weight loss spray</title>
      <description>&lt;p&gt;AWESOME! Keep working at it and that Jack and Squat will be yours someday.&lt;/p&gt;</description>
      <pubDate>Tue, 31 Jan 2012 02:09:11 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:28ea7c2f-629e-43a0-9a65-d08a4dad6570</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-200329</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by press release distribution services</title>
      <description>&lt;p&gt;What I don&amp;#8217;t understand is how you&amp;#8217;re not even more popular than you are now.  You&amp;#8217;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&amp;#8217;t interested unless it has something to do with Lady Gaga!  Your stuffs great.  Keep it up!&lt;/p&gt;</description>
      <pubDate>Sat, 28 Jan 2012 03:51:02 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:571fef48-31bb-4553-8716-3929604bccc5</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-199674</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by Magnus Str&#248;mnes B&#248;e</title>
      <description>&lt;p&gt;It would be interesting to discuss quality requirements in terms of amount of use / users.&lt;/p&gt;


	&lt;p&gt;When any given application or website for instance is released the cost per user / use must be taken into account.&lt;/p&gt;


	&lt;p&gt;If there are few users on a specific type of cell phone, there is no economic interest in testing on that unit.&lt;/p&gt;


	&lt;p&gt;Great post and discussion by the way.&lt;/p&gt;</description>
      <pubDate>Thu, 26 Jan 2012 06:00:53 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:9a5ca74f-279d-4572-8bc4-8c27c89c7ee7</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-199238</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by psk</title>
      <description>&lt;p&gt;There is appreciably a lot to know about this. I&#8217;m glad reading this content, I very much like and agree with your thoughts.&lt;/p&gt;</description>
      <pubDate>Thu, 26 Jan 2012 01:07:57 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:2531e6d5-ee4d-481e-8dea-74335926eff8</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-199208</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by Bill</title>
      <description>&lt;p&gt;I started out as a mainframe programmer in the 80&amp;#8217;s&amp;#8230; and with 10,000 line programs, I felt quality more than important&amp;#8230; 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.&lt;/p&gt;


	&lt;p&gt;Now I do search engine optimization out of Grand Rapids and enjoy a well structured site - makes my job much easier.&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.on-targetseo.com" rel="nofollow"&gt;www.on-targetseo.com&lt;/a&gt;&lt;/p&gt;


	&lt;p&gt;Please don&amp;#8217;t judge me by my own site as it is built with a WYSIWYG as I still only know Cobol.&lt;/p&gt;</description>
      <pubDate>Wed, 25 Jan 2012 12:48:38 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:7259612c-cb59-4f7f-b77c-e2c922fa9bf0</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-199185</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by szkolenia handlowe</title>
      <description>&lt;p&gt;swietny tekst&lt;/p&gt;</description>
      <pubDate>Tue, 24 Jan 2012 16:23:57 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:6a230bb8-e839-440d-8149-891cd3cc20fc</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-199070</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by ENT Instruments</title>
      <description>&lt;p&gt;I appericiate your effort its such a nice nice, and has very informative.&lt;/p&gt;


	&lt;p&gt;&lt;a href="http://www.blacksmithsurgical.com/ent-instruments" rel="nofollow"&gt;ENT Instruments&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Tue, 24 Jan 2012 05:41:55 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:18884469-27bc-4741-af98-5b5936b7545a</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-199032</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by ps</title>
      <description>&lt;p&gt;Good stufff&amp;#8230;
keep it up..&lt;/p&gt;</description>
      <pubDate>Mon, 23 Jan 2012 23:04:31 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:f15f81be-bedb-4b96-8dd6-928b2ce3eb8a</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-198973</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by car dealer license</title>
      <description>&lt;p&gt;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.
&lt;a href="http://www.myautolicense.com/" rel="nofollow"&gt;car dealer license&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 23 Jan 2012 02:37:10 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:f5e05603-42ed-445e-8120-e2ec7113547e</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-198838</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by weight loss spray</title>
      <description>&lt;p&gt;Great post!! Keep up the good work &amp;#8211; I&amp;#8217;m sure someday soon, someone will be doing an Ada Lovelace post about you&lt;/p&gt;</description>
      <pubDate>Mon, 23 Jan 2012 01:57:51 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:e86f5d22-0e1b-4cce-aa56-1bca5ffef6ef</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-198835</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by Lap Band Los Angeles</title>
      <description>&lt;p&gt;Oh my goodness!  You&amp;#8217;re so right!  I really don&amp;#8217;t think anyone&amp;#8217;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&amp;#8217;ve got a great mind for it!&lt;/p&gt;</description>
      <pubDate>Sun, 22 Jan 2012 06:14:36 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:6908e88f-c3a8-4c73-806d-00d331ea9b49</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-198803</link>
    </item>
    <item>
      <title>""Quality Doesn't Matter That Much" -- Jeff and Joel" by SAP HCM</title>
      <description>&lt;p&gt;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.&lt;/p&gt;</description>
      <pubDate>Fri, 20 Jan 2012 04:23:32 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:1f31be90-3c0a-43ca-b39e-e9c74b295831</guid>
      <link>http://blog.objectmentor.com/articles/2009/01/31/quality-doesnt-matter-that-much-jeff-and-joel#comment-198674</link>
    </item>
  </channel>
</rss>

