<?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: Now 'and' for something completely different.</title>
    <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description></description>
    <item>
      <title>Now 'and' for something completely different.</title>
      <description>&lt;p&gt;My son Justin is working as a Ruby apprentice for my son Micah at &lt;a href="http://www.8thlight.com"&gt;8th light&lt;/a&gt;. We were sitting at the kitchen table, and he showed me a function he was writing.  In the midst of the function I saw this:&lt;/p&gt;


&lt;code&gt;handle_batch(item) and display_batch(item) while items_remaining?&lt;/code&gt;
&lt;br&gt;&lt;br&gt;
I looked hard at this and then I said: &amp;#8220;Justin, I don&amp;#8217;t think you understand what &lt;code&gt;and&lt;/code&gt; does.   

	&lt;p&gt;He said: &amp;#8220;I think I do.&amp;#8221; and he pointed me to a &lt;a href="http://www.rubyinside.com/21-ruby-tricks-902.html"&gt;website&lt;/a&gt; which showed 21 Ruby tricks &amp;#8220;you &lt;em&gt;should&lt;/em&gt; be using in your own code.&amp;#8221;&lt;/p&gt;


	&lt;p&gt;Trick #9 was the use of the &lt;code&gt;and&lt;/code&gt; keyword to couple statements together to make &amp;#8220;one liners&amp;#8221;.  It was billed as a trick that &lt;em&gt;[cough]&lt;/em&gt; &amp;#8220;more confident&amp;#8221; Ruby programmers use.&lt;/p&gt;


	&lt;p&gt;So I got the pickaxe book out and looked up the &lt;code&gt;and&lt;/code&gt; keyword.  I showed Justin where it said that the second clause won&amp;#8217;t be executed if the first clause is &lt;code&gt;false&lt;/code&gt; &lt;em&gt;(or &lt;code&gt;nil&lt;/code&gt;!)&lt;/em&gt;  So if &lt;code&gt;handle_batch&lt;/code&gt; ever returned &lt;code&gt;nil&lt;/code&gt;, then &lt;code&gt;display_batch&lt;/code&gt; would never be called.&lt;/p&gt;


	&lt;p&gt;Warning bells were going off in my head.  This was clearly an unintended use of the &lt;code&gt;and&lt;/code&gt; keyword that could have rather nasty repercussions.  I thought it was somewhat irresponsible for a website that boasted expertise in programming to tell people they should be using a dangerous stunt like this.&lt;/p&gt;


	&lt;p&gt;However, &lt;code&gt;handle_batch&lt;/code&gt; did &lt;em&gt;not&lt;/em&gt; return &lt;code&gt;nil&lt;/code&gt;, so the &lt;code&gt;and&lt;/code&gt; worked well enough in this case; and we had more to do.  So I made my point to Justin and then we kept working, leaving the &lt;code&gt;and&lt;/code&gt; in place.&lt;/p&gt;


	&lt;p&gt;An hour later we were making changes to a function.  Suddenly a whole bunch of our tests broke. (You know what I&amp;#8217;m going to say, don&amp;#8217;t you?)  The failure mode didn&amp;#8217;t make any sense.  Suddenly a whole bunch of processing simply wasn&amp;#8217;t getting done.&lt;/p&gt;


	&lt;p&gt;It was Justin who said: &amp;#8220;Wow, I&amp;#8217;ll bet it&amp;#8217;s that &lt;code&gt;and&lt;/code&gt;.  And it was.  The change we had made had indirectly caused &lt;code&gt;handle_batch&lt;/code&gt; to return a &lt;code&gt;nil&lt;/code&gt;.&lt;/p&gt;


	&lt;p&gt;OK, this was a fun little story.  You might think the moral is &amp;#8220;don&amp;#8217;t use and for one-liners&amp;#8221; or &amp;#8220;don&amp;#8217;t trust websites that claim expertise&amp;#8221;.  Yes, those would be good conclusions to draw.  But I&amp;#8217;m concerned about something else.&lt;/p&gt;


	&lt;p&gt;The &amp;#8220;and trick&amp;#8221; is &lt;em&gt;clever&lt;/em&gt;.  In programming, &lt;em&gt;clever&lt;/em&gt; != &lt;em&gt;smart&lt;/em&gt;.  (OK, sorry, that was clever&amp;#8230;)  Using a keyword like &lt;code&gt;and&lt;/code&gt; in a manner for which it was not intended, and in a way that is not guaranteed to work in all cases, is risky. It bothers me.&lt;/p&gt;


	&lt;p&gt;By the same token it bothers me that so many Ruby programmers use the &lt;code&gt;||=&lt;/code&gt; trick for lazy initialization.  I know it works.  I know it&amp;#8217;s a standard idiom.  I&amp;#8217;m not trying to stop people from doing it.  Hell, I use it too because it&amp;#8217;s become a standard idiom. But it bothers me nonetheless because it entered our vocabulary of idioms because it was clever trick; and clever little tricks have a way of turning into nasty little surprises.&lt;/p&gt;


	&lt;p&gt;Ruby is a fun and powerful language.  But that doesn&amp;#8217;t mean we should go out of our way to be clever.  We shouldn&amp;#8217;t be eager to adopt quirky little idioms and erudite little stunts just because they are cute, or neat, or nifty.   Code is hard enough to understand without having to think sideways through the next novel application of the ?: operator.&lt;/p&gt;


	&lt;p&gt;Professionals write clear and clean code.  They use their language well.  They use their language efficiently.  But they don&amp;#8217;t aspire to be master tricksters.  Rather, they prove their professionalism by writing code that &lt;em&gt;needs no explanation&lt;/em&gt;.&lt;/p&gt;</description>
      <pubDate>Thu, 26 Jun 2008 13:16:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:44ccdb8f-f0b0-43dc-9695-d7bcd97e6b4f</guid>
      <author>Uncle Bob</author>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different</link>
      <category>Uncle Bob's Blatherings</category>
      <category>Dynamic Languages</category>
      <category>Clean Code</category>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by Beats By Dre Canada</title>
      <description>&lt;p&gt;And she was the awards wear a by fresh beef made of meat pack, again making her a topic of the world.&lt;/p&gt;</description>
      <pubDate>Tue, 08 Nov 2011 23:07:00 -0600</pubDate>
      <guid isPermaLink="false">urn:uuid:6f8731fb-4075-4173-9326-03b4af6a1320</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-170301</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by alwadifa</title>
      <description>&lt;p&gt;I liked you blog so im going bookmark it with my prefered websites, you have posted an amazing posts so thank you I liked you blog so im going bookmark it with my prefered websites, you have posted an amazing posts so thank you&lt;/p&gt;</description>
      <pubDate>Sat, 05 Nov 2011 17:56:00 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:adeb4fb0-d505-4e28-82e6-052894750f3c</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-168771</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by flac converter</title>
      <description>&lt;p&gt;good post, i think so.Thank you!&lt;/p&gt;</description>
      <pubDate>Thu, 27 Oct 2011 02:55:05 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:d183394f-a38f-461e-9295-6199890bba40</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-164488</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by flac converter</title>
      <description>&lt;p&gt;Thank you for sharing, I&#8217;ll definitely dig deeper into it.&lt;/p&gt;</description>
      <pubDate>Thu, 27 Oct 2011 02:50:03 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:f15e7dfb-1cf2-44f9-ab3f-f68c3fcdec49</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-164477</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by Tips For Bowling</title>
      <description>&lt;p&gt;This dullness of vision regarding the importance of the general welfare to the individual is the measure of the failure of our schools and churches to teach the spiritual significance of genuine democracy.
Henry A. Wallace&lt;/p&gt;</description>
      <pubDate>Thu, 20 Oct 2011 13:26:19 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:3a6e2661-2e5b-4b5d-8ccb-3f788a7f0479</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-160239</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by CASINO DAILY NEWS</title>
      <description>&lt;p&gt;Thanks a lot for providing the great info is visible in this blog that to sharing the great info is visible in this blog. I am very much inspired the great technology in this blog.&lt;/p&gt;</description>
      <pubDate>Thu, 20 Oct 2011 06:08:24 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:06c46cb2-d12c-421b-9d39-04d837c5d3f4</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-160155</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by CASINO SINAZ</title>
      <description>&lt;p&gt;I am very much satisfied by the great technology in this website that to sharing the great services in this blog. Thanks a lot for providing the amazing info is visible in this blog that to sharing the great services in this blog.&lt;/p&gt;</description>
      <pubDate>Thu, 20 Oct 2011 06:06:23 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:62ee1f56-e4d2-43e6-9ef7-88ddb47f2069</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-160153</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by online poker just</title>
      <description>&lt;p&gt;This is very much happy for using the great approach is visible in this blog that to the way of presentation is really cool. Thanks a lot for providing the great info is visible in this blog.&lt;/p&gt;</description>
      <pubDate>Thu, 20 Oct 2011 06:04:29 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:dc3b218c-6545-4c31-97d4-a2c2d4c13f24</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-160152</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by bingo journal topics</title>
      <description>&lt;p&gt;I had really admired for the great info is visible in this blog that to sharing the great technology in this blog. Thanks a lot for providing the great info is visible in this blog.&lt;/p&gt;</description>
      <pubDate>Thu, 20 Oct 2011 06:03:09 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:100bf5c1-50d6-41b4-b046-1a08d73934f3</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-160151</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by ysbearing</title>
      <description>&lt;p&gt;Slewing bearing called slewing ring bearings, is a comprehensive load to bear a large bearing, can bear large axial, radial load and overturning moment.&lt;/p&gt;</description>
      <pubDate>Wed, 19 Oct 2011 03:42:06 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:003d7753-d953-4f7c-be0a-100c89e595eb</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-159550</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by how to become</title>
      <description>&lt;p&gt;I had &lt;a href="http://howtobecomehub.com/how-to-become-an-animal-cop.htm" rel="nofollow"&gt;How To Become An Animal Cop&lt;/a&gt; really great technology &lt;a href="http://howtobecomehub.com/how-to-become-cameraman.htm" rel="nofollow"&gt;How To Become Cameraman&lt;/a&gt; is visible in this blog and &lt;a href="http://howtobecomehub.com/how-to-become-a-dominatrix.htm" rel="nofollow"&gt;How To Become A Dominatrix&lt;/a&gt; using the nice services in this blog &lt;a href="http://howtobecomehub.com/how-to-become-a-hair-model.htm" rel="nofollow"&gt;How To Become A Hair Model&lt;/a&gt; This &lt;a href="http://howtobecomehub.com/how-to-become-a-travel-agent-from-home.htm" rel="nofollow"&gt;how To Become A Travel Agent From Home&lt;/a&gt; is very much &lt;a href="http://howtobecomehub.com/how-to-become-a-fashion-photographer.htm" rel="nofollow"&gt;How To Become A Fashion Photographer&lt;/a&gt; happy for using &lt;a href="http://howtobecomehub.com/how-to-become-neurologist.htm" rel="nofollow"&gt;How To Become Neurologist&lt;/a&gt; the nice services in this blog and really wonderful technology is visible in this blog&lt;/p&gt;</description>
      <pubDate>Wed, 05 Oct 2011 02:47:18 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:1f702ede-0120-4f48-adc5-6ba8bf944726</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-150448</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by how to become</title>
      <description>&lt;p&gt;I am regular &lt;a href="http://howtobecomehub.com/how-to-become-a-fireman.htm" rel="nofollow"&gt;How To Become A Fireman&lt;/a&gt; visiting the nice info is &lt;a href="http://howtobecomehub.com/how-to-become-a-corporation.htm" rel="nofollow"&gt;How To Become A Corporation&lt;/a&gt; visible in this blog that to &lt;a href="http://howtobecomehub.com/how-to-become-a-wedding-consultant.htm" rel="nofollow"&gt;How To Become A Wedding Consultant&lt;/a&gt; providing the updated &lt;a href="http://howtobecomehub.com/how-to-become-a-travel-writer.htm" rel="nofollow"&gt;How To Become A Travel Writer&lt;/a&gt; info is visible in this blog. Thanks a lot for providing the great info is visible in this blog&lt;/p&gt;</description>
      <pubDate>Wed, 05 Oct 2011 02:45:44 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:3c478fc4-4810-4944-9852-88f0b58379b5</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-150446</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by how to become</title>
      <description>&lt;p&gt;I am &lt;a href="http://howtobecomehub.com/how-to-become-a-california-resident.htm" rel="nofollow"&gt;How To Become A California Resident&lt;/a&gt; very &lt;a href="http://howtobecomehub.com/how-to-become-a-game-warden.htm" rel="nofollow"&gt;How To Become A GAME WARDEN&lt;/a&gt; much happy for using &lt;a href="http://howtobecomehub.com/how-to-become-a-real-estate-appraiser.htm" rel="nofollow"&gt;How To Become A Real Estate Appraiser&lt;/a&gt; the great technology &lt;a href="http://howtobecomehub.com/how-to-become-a-politician.htm" rel="nofollow"&gt;How To Become A Politician&lt;/a&gt; is visible in this blog and sharing the nice services in this blog&lt;/p&gt;</description>
      <pubDate>Wed, 05 Oct 2011 02:43:40 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:115c9f74-289b-4acf-9619-4eb20f5093e4</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-150445</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by &lt;a href="http://coronerjobdescription.com"&gt;Coroner Job Description&lt;/a&gt;</title>
      <description>&lt;p&gt;This is very amazing info in this blog that to very much enjoyed for this info in this blog. &lt;a href="http://coronerjobdescription.com" rel="nofollow"&gt;Coroner Job Description&lt;/a&gt;|&lt;a href="http://medicaltechnologistjobdescription.org/" rel="nofollow"&gt;Medical Technologist Job Description&lt;/a&gt;|&lt;a href="http://correctionsofficerjobdescription.com" rel="nofollow"&gt;Corrections Officer Job Description&lt;/a&gt;|&lt;a href="http://jobdescriptionforfinancialanalyst.com" rel="nofollow"&gt;Financial Analyst Job Description&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 30 Sep 2011 02:01:16 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:b5cf58e5-57c1-4623-bede-d8ece900e3aa</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-148272</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by dvd ripper</title>
      <description>&lt;p&gt;good post, i think so.Thank you!&lt;/p&gt;</description>
      <pubDate>Sun, 11 Sep 2011 07:18:33 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:c5944f6e-b7cd-4d22-b72a-650760945952</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-139215</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by dvd ripper</title>
      <description>&lt;p&gt;good post, i think so.Thank you!&lt;/p&gt;</description>
      <pubDate>Sun, 11 Sep 2011 07:17:25 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:2e2da2a8-c1b6-4d7e-b890-290bf7b1a522</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-139212</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by beats by dre store</title>
      <description>&lt;p&gt;for a great blog post writer title&lt;a href="http://www.drdrebeatsheadphones-australia.com" rel="nofollow"&gt;high quality headphones&lt;/a&gt;
&lt;a href="http://www.drdrebeatsheadphones-australia.com" rel="nofollow"&gt;new design headphones&lt;/a&gt;,kep the great job happening&lt;/p&gt;</description>
      <pubDate>Tue, 23 Aug 2011 03:23:04 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:4341ec80-cce9-4f7e-99b9-d3baa4e2b47e</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-131681</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by Jades Company</title>
      <description>&lt;p&gt;nice blog thanks for the comments
i wanna share this one especially 
to all applicants who need a 
best resume&lt;/p&gt;</description>
      <pubDate>Tue, 16 Aug 2011 00:45:40 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:9fa0602b-1fc3-4c33-9246-d6286dd4038d</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-129050</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by Bowtrol</title>
      <description>&lt;p&gt;Blog posts about wedding and bridal are always rare to find , at least with great quality,you qualify for a great blog post writer title,kep the great job happening&lt;/p&gt;</description>
      <pubDate>Mon, 08 Aug 2011 15:49:04 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:732c08ba-3f7e-4012-a7b6-6e6872f44b78</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-125709</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by mp3 converter</title>
      <description>&lt;p&gt;Good Information Very nice post.&lt;/p&gt;</description>
      <pubDate>Sat, 30 Jul 2011 02:56:07 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:3303e52b-9640-4f7d-82fb-8a0945cc2c1c</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-122202</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by graham tx</title>
      <description>&lt;p&gt;I definitely desired to deliver a quick concept to thank you for the nice tips and hints you&#8217;re posting on this website. My time-consuming internet appear up has now been rewarded with helpful strategies to exchange with my family and friends. I ?d claim that we readers fact are truly blessed to dwell in a helpful community with incredibly some great individuals with insightful points. I really feel really grateful to get discovered the webpage and appear ahead to a lot of additional entertaining moments reading right here. Thanks a good deal again for a good deal of things.&lt;/p&gt;</description>
      <pubDate>Sat, 18 Jun 2011 05:23:10 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:dabf09cc-1ae7-4b00-baf6-fdcf45de646a</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-112274</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by graham tx</title>
      <description>&lt;p&gt;Really impressed! Everything is very open and very clear explanation of issues. It contains truly information. Your website is very useful. Big buddy in the picture.Thanks for sharing. Looking forward to more!&lt;strong&gt;&lt;a href="http://www.grahamlocal.com" rel="nofollow"&gt;graham tx&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 18 Jun 2011 05:19:49 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:e9271e58-06c9-4395-a4d7-a27bcbe740e1</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-112272</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by graham tx</title>
      <description>&lt;p&gt;It is nice to find a site about my interest. My first visit to your site is been a big help. Thank you for the efforts you been putting on making your site such an interesting and informative place to browse through. I&amp;#8217;ll be visiting your site again to gather some more valuable information. You truly did a good job.&lt;strong&gt;&lt;a href="http://www.grahamlocal.com" rel="nofollow"&gt;graham tx&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;</description>
      <pubDate>Sat, 18 Jun 2011 05:18:30 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:ca3e7993-4bff-4b26-a381-7be7c4beeda4</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-112270</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by Commercial photography</title>
      <description>&lt;p&gt;All the contents you mentioned in post is too good and can be very useful. I will keep it in mind, thanks for sharing the information keep updating, looking forward for more posts. Thanks&lt;/p&gt;</description>
      <pubDate>Tue, 14 Jun 2011 02:41:49 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:832da691-9436-4efb-bdc4-ecb56c70ebac</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-110793</link>
    </item>
    <item>
      <title>"Now 'and' for something completely different." by beats by dr dre headphones</title>
      <description>&lt;p&gt;&lt;a href="http://www.drebeatsstudio.com/beats-by-dr-dre-studio-c-3.html" rel="nofollow"&gt;Beats by dr dre studio&lt;/a&gt; with look after talk in white. extra attributes on &lt;a href="http://www.drebeatsstudio.com/monster-beats-by-dr-dre-pro-headphones-black-p-15.html" rel="nofollow"&gt;Monster Beats By Dr. Dre Pro Headphones Black&lt;/a&gt; a specific tri-fold design and design and carrying circumstance which make for compact and uncomplicated safe-keeping when not in use. &lt;a href="http://www.drebeatsstudio.com/beats-by-dr-dre-solo-c-5.html" rel="nofollow"&gt;Beats by dr dre solo&lt;/a&gt; .&lt;/p&gt;</description>
      <pubDate>Wed, 08 Jun 2011 20:26:41 -0500</pubDate>
      <guid isPermaLink="false">urn:uuid:135c87c8-4ec4-4959-b8fe-df88140c369a</guid>
      <link>http://blog.objectmentor.com/articles/2008/06/26/now-and-for-something-completely-different#comment-109163</link>
    </item>
  </channel>
</rss>

