<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xml" href="http://www.dzone.com/links/misc/rss.xsl"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dz="http://www.developerzone.com/modules/dz/1.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>dzone.com: queued links: opinion</title>
    <link>http://www.dzone.com/links/queue/tag/opinion.html</link>
    <description>dzone.com: fresh links for developers</description>
    <language>en-us</language>
    <copyright>Copyright (c) 2008 DZone, Inc.</copyright>
    <pubDate>Mon, 23 Nov 2009 20:31:46 GMT</pubDate>
    <dc:creator>The dzone.com community</dc:creator>
    <dc:date>2009-11-23T20:31:46Z</dc:date>
    <dc:language>en-us</dc:language>
    <dc:rights>Copyright (c) 2008 DZone, Inc.</dc:rights>
    <dz:selfLink>http://www.dzone.com/links/feed/queue/opinion/rss.xml</dz:selfLink>
    <image>
      <title>dzone.com: fresh links for developers</title>
      <url>http://www.dzone.com/images/std/dzone.com_258x55.gif</url>
      <link>http://www.dzone.com/links/</link>
    </image>
    <item>
      <title>Having Fun with Branch Delay Slots</title>
      <link>http://www.dzone.com/links/rss/having_fun_with_branch_delay_slots.html</link>
      <description>Branch Delay Slots are one of the awkward features of RISC architectures. RISC CPUs are pipelined by definition, so while the current instruction is in execution, the following instruction(s) will be in the pipeline already. If there is for example a conditional branch in the instruction stream, the CPU cannot know whether the next instruction is the one following the branch or the instruction at the target location until it has evaluated the branch. This would cause a bubble in the pipeline; therefore some RISC architectures have a branch delay slot: The instruction after the branch will always be executed, no matter whether the branch is taken or not.&#xD;
&#xD;
So in practice, you can put the instruction that would be before the branch right after the branch, if this instruction is independent of the branch instruction, i.e. doesn’t access the same registers. Otherwise, you can fill it with a NOP. Out-of-order architectures can do this reordering at runtime, so there would be no need for a delay slot. Nevertheless, the delay slot is a feature of the architecture, not the implementation.</description>
      <category>opinion</category>
      <pubDate>Mon, 23 Nov 2009 19:58:16 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301581.html</guid>
      <dc:creator>CodeJustin</dc:creator>
      <dc:date>2009-11-23T19:58:16Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/having_fun_with_branch_delay_slots.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301581.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>Branch Delay Slots are one of the awkward features of RISC architectures. RISC CPUs are pipelined by definition, so while the current instruction is in execution, the following instruction(s) will be in the pipeline already. If there is for example a conditional branch in the instruction stream, the CPU cannot know whether the next instruction is the one following the branch or the instruction at the target location until it has evaluated the branch. This would cause a bubble in the pipeline; therefore some RISC architectures have a branch delay slot: The instruction after the branch will always be executed, no matter whether the branch is taken or not.

So in practice, you can put the instruction that would be before the branch right after the branch, if this instruction is independent of the branch instruction, i.e. doesn’t access the same registers. Otherwise, you can fill it with a NOP. Out-of-order architectures can do this reordering at runtime, so there would be no need for a delay slot. Nevertheless, the delay slot is a feature of the architecture, not the implementation.<br/><br/><a href='http://www.dzone.com/links/rss/having_fun_with_branch_delay_slots.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301581' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301581</dz:linkId>
      <dz:submitDate>2009-11-23T19:58:16Z</dz:submitDate>
      <dz:voteUpCount>1</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>0</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301581.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>CodeJustin</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/410289.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>An Introduction to Test-Driven Development with Legacy code</title>
      <link>http://www.dzone.com/links/rss/an_introduction_to_testdriven_development_with_le.html</link>
      <description>Test-Driven Development, or TDD, is often quoted as an essential Agile best practice, and so it is. It works wonders on green-fields projects and new code bases where you can start afresh and ensure that all your code is both easily testable and well tested. But what about legacy code? (By legacy code, I mean any code that does not have a comprehensive set of automated tests, so you might be writing legacy code as we speak).</description>
      <category>java</category>
      <category>methodology</category>
      <category>opinion</category>
      <pubDate>Mon, 23 Nov 2009 18:19:57 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301503.html</guid>
      <dc:creator>Masoud Kalali</dc:creator>
      <dc:date>2009-11-23T18:19:57Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/an_introduction_to_testdriven_development_with_le.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301503.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>Test-Driven Development, or TDD, is often quoted as an essential Agile best practice, and so it is. It works wonders on green-fields projects and new code bases where you can start afresh and ensure that all your code is both easily testable and well tested. But what about legacy code? (By legacy code, I mean any code that does not have a comprehensive set of automated tests, so you might be writing legacy code as we speak).<br/><br/><a href='http://www.dzone.com/links/rss/an_introduction_to_testdriven_development_with_le.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301503' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301503</dz:linkId>
      <dz:submitDate>2009-11-23T18:19:57Z</dz:submitDate>
      <dz:voteUpCount>3</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>13</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301503.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>Kalali</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/89352.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>Java’s missing features</title>
      <link>http://www.dzone.com/links/rss/javas_missing_features.html</link>
      <description>The following is a list of the language features I miss most when programming Java, the list includes descriptions about Closures, Modules, and so on.</description>
      <category>java</category>
      <category>opinion</category>
      <category>standards</category>
      <pubDate>Mon, 23 Nov 2009 18:19:29 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301501.html</guid>
      <dc:creator>Masoud Kalali</dc:creator>
      <dc:date>2009-11-23T18:19:29Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/javas_missing_features.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301501.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>The following is a list of the language features I miss most when programming Java, the list includes descriptions about Closures, Modules, and so on.<br/><br/><a href='http://www.dzone.com/links/rss/javas_missing_features.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301501' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301501</dz:linkId>
      <dz:submitDate>2009-11-23T18:19:29Z</dz:submitDate>
      <dz:voteUpCount>3</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>19</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301501.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>Kalali</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/89352.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>When Polymorphism Fails </title>
      <link>http://www.dzone.com/links/rss/when_polymorphism_fails.html</link>
      <description>Every OOP fan is almost by definition a fan of polymorphism. Lots of otherwise good books (e.g. Fowler's Refactoring) go so far as to say if you use runtime type checks, e.g. Java's "instanceof" operator, then you're probably an evil person who threatens little children with switch statements.</description>
      <category>methodology</category>
      <category>opinion</category>
      <category>reviews</category>
      <pubDate>Mon, 23 Nov 2009 17:13:35 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301437.html</guid>
      <dc:creator>mswatcher</dc:creator>
      <dc:date>2009-11-23T17:13:35Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/when_polymorphism_fails.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301437.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>Every OOP fan is almost by definition a fan of polymorphism. Lots of otherwise good books (e.g. Fowler's Refactoring) go so far as to say if you use runtime type checks, e.g. Java's "instanceof" operator, then you're probably an evil person who threatens little children with switch statements. <br/><br/><a href='http://www.dzone.com/links/rss/when_polymorphism_fails.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301437' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301437</dz:linkId>
      <dz:submitDate>2009-11-23T17:13:35Z</dz:submitDate>
      <dz:voteUpCount>3</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>7</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301437.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>mswatcher</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/225256.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>Google Chrome OS: A threat to Windows 7?</title>
      <link>http://www.dzone.com/links/rss/google_chrome_os_a_threat_to_windows_7.html</link>
      <description>Google exclaims, and everyone gasps and bows before the cloud embracing visionaries. But where's the step back, the deep breath, the wiping away of the 'oh gosh it's Google, it's the future' haze to reveal the problems that lurk beneath the surface? I'm far from being a luddite, I was an internet evangelist 20 years ago and an early adopter of everything from virtual worlds to social networks.</description>
      <category>microsoft</category>
      <category>open source</category>
      <category>opinion</category>
      <category>reviews</category>
      <pubDate>Mon, 23 Nov 2009 17:13:24 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301435.html</guid>
      <dc:creator>mswatcher</dc:creator>
      <dc:date>2009-11-23T17:13:24Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/google_chrome_os_a_threat_to_windows_7.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301435.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>Google exclaims, and everyone gasps and bows before the cloud embracing visionaries. But where's the step back, the deep breath, the wiping away of the 'oh gosh it's Google, it's the future' haze to reveal the problems that lurk beneath the surface? I'm far from being a luddite, I was an internet evangelist 20 years ago and an early adopter of everything from virtual worlds to social networks.<br/><br/><a href='http://www.dzone.com/links/rss/google_chrome_os_a_threat_to_windows_7.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301435' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301435</dz:linkId>
      <dz:submitDate>2009-11-23T17:13:24Z</dz:submitDate>
      <dz:voteUpCount>3</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>6</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301435.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>mswatcher</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/225256.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>The market has rejected Linux desktops. Get over it</title>
      <link>http://www.dzone.com/links/rss/the_market_has_rejected_linux_desktops_get_over_it.html</link>
      <description>Linux has failed to win either mind share or market share on the desktop. Google’s Chrome OS will do little to change that. Learn why.</description>
      <category>opinion</category>
      <category>reviews</category>
      <category>unix-linux</category>
      <pubDate>Mon, 23 Nov 2009 17:03:04 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301417.html</guid>
      <dc:creator>mswatcher</dc:creator>
      <dc:date>2009-11-23T17:03:04Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/the_market_has_rejected_linux_desktops_get_over_it.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301417.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>Linux has failed to win either mind share or market share on the desktop. Google’s Chrome OS will do little to change that. Learn why.<br/><br/><a href='http://www.dzone.com/links/rss/the_market_has_rejected_linux_desktops_get_over_it.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301417' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301417</dz:linkId>
      <dz:submitDate>2009-11-23T17:03:04Z</dz:submitDate>
      <dz:voteUpCount>4</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>12</dz:clickCount>
      <dz:commentCount>1</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301417.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>mswatcher</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/225256.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>Design Limits</title>
      <link>http://www.dzone.com/links/rss/design_limits.html</link>
      <description>"A lot" doesn't mean "good" even there is a lot of something good. You should know when to stop. &#xD;
One of the worst thing I've ever done as a developer is over-designing. I've overdone many other things too, but over-designing is probably the number one.</description>
      <category>opinion</category>
      <pubDate>Mon, 23 Nov 2009 17:00:21 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301415.html</guid>
      <dc:creator>dkandalov</dc:creator>
      <dc:date>2009-11-23T17:00:21Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/design_limits.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301415.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>"A lot" doesn't mean "good" even there is a lot of something good. You should know when to stop. 
One of the worst thing I've ever done as a developer is over-designing. I've overdone many other things too, but over-designing is probably the number one.<br/><br/><a href='http://www.dzone.com/links/rss/design_limits.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301415' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301415</dz:linkId>
      <dz:submitDate>2009-11-23T17:00:21Z</dz:submitDate>
      <dz:voteUpCount>1</dz:voteUpCount>
      <dz:voteDownCount>1</dz:voteDownCount>
      <dz:clickCount>4</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301415.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>dkandalov</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/386155.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>Should you include libraries in your version control repository?</title>
      <link>http://www.dzone.com/links/rss/should_you_include_libraries_in_your_version_cont.html</link>
      <description>Some reasons why you should include third party libraries in your repository</description>
      <category>methodology</category>
      <category>opinion</category>
      <pubDate>Mon, 23 Nov 2009 16:30:11 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301011.html</guid>
      <dc:creator>np93423</dc:creator>
      <dc:date>2009-11-23T16:30:11Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/should_you_include_libraries_in_your_version_cont.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301011.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>Some reasons why you should include third party libraries in your repository<br/><br/><a href='http://www.dzone.com/links/rss/should_you_include_libraries_in_your_version_cont.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301011' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301011</dz:linkId>
      <dz:submitDate>2009-11-23T16:30:11Z</dz:submitDate>
      <dz:voteUpCount>1</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>12</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301011.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>np93423</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/92134.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>An Interview With Jeff Croft</title>
      <link>http://www.dzone.com/links/rss/an_interview_with_jeff_croft.html</link>
      <description>Today WebM.ag is speaking with Jeff Croft, Jeff needs little introduction as he is a well known web designer and developer, an author of some top notch web design literature and he also speaks at conferences about web design/development.</description>
      <category>groovy</category>
      <category>opinion</category>
      <category>web design</category>
      <pubDate>Mon, 23 Nov 2009 16:30:03 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301015.html</guid>
      <dc:creator>WebMag</dc:creator>
      <dc:date>2009-11-23T16:30:03Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/an_interview_with_jeff_croft.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301015.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>Today WebM.ag is speaking with Jeff Croft, Jeff needs little introduction as he is a well known web designer and developer, an author of some top notch web design literature and he also speaks at conferences about web design/development.<br/><br/><a href='http://www.dzone.com/links/rss/an_interview_with_jeff_croft.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301015' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301015</dz:linkId>
      <dz:submitDate>2009-11-23T16:30:03Z</dz:submitDate>
      <dz:voteUpCount>1</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>4</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301015.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>WebMag</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/520441.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>Refuse to under-staff IT departments</title>
      <link>http://www.dzone.com/links/rss/refuse_to_understaff_it_departments.html</link>
      <description>Imagine you manage the desktop support function for your company including the help desk. You have three outstanding technical support people, each with seven years of desktop experience in your company, the interpersonal skills of Jay Leno, and the work ethic of a West Virginia coal miner.  Plus, you have three more people who are rising stars. Sounds good, doesn’t it?</description>
      <category>opinion</category>
      <category>reviews</category>
      <pubDate>Mon, 23 Nov 2009 16:26:08 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301393.html</guid>
      <dc:creator>mswatcher</dc:creator>
      <dc:date>2009-11-23T16:26:08Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/refuse_to_understaff_it_departments.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301393.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>
Imagine you manage the desktop support function for your company including the help desk. You have three outstanding technical support people, each with seven years of desktop experience in your company, the interpersonal skills of Jay Leno, and the work ethic of a West Virginia coal miner.  Plus, you have three more people who are rising stars. Sounds good, doesn’t it?<br/><br/><a href='http://www.dzone.com/links/rss/refuse_to_understaff_it_departments.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301393' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301393</dz:linkId>
      <dz:submitDate>2009-11-23T16:26:08Z</dz:submitDate>
      <dz:voteUpCount>1</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>3</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301393.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>mswatcher</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/225256.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>Microsoft, Bing, and Murdoch: The Annoyance Factor</title>
      <link>http://www.dzone.com/links/rss/microsoft_bing_and_murdoch_the_annoyance_factor.html</link>
      <description>A story in Sunday’s Financial Times is reporting that Microsoft and Rupert Murdoch’s News Corp. have been holding preliminary talks to pull News Corp. content from Google, and for Bing to then pay a premium for that content.   There’s quite a debate around the web on what such a deal would mean for Google, or Bing, for that matter.</description>
      <category>microsoft</category>
      <category>news</category>
      <category>opinion</category>
      <category>trends</category>
      <pubDate>Mon, 23 Nov 2009 14:45:50 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301261.html</guid>
      <dc:creator>AlvinAshcraft</dc:creator>
      <dc:date>2009-11-23T14:45:50Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/microsoft_bing_and_murdoch_the_annoyance_factor.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301261.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'> A story in Sunday’s Financial Times is reporting that Microsoft and Rupert Murdoch’s News Corp. have been holding preliminary talks to pull News Corp. content from Google, and for Bing to then pay a premium for that content.   There’s quite a debate around the web on what such a deal would mean for Google, or Bing, for that matter. <br/><br/><a href='http://www.dzone.com/links/rss/microsoft_bing_and_murdoch_the_annoyance_factor.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301261' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301261</dz:linkId>
      <dz:submitDate>2009-11-23T14:45:50Z</dz:submitDate>
      <dz:voteUpCount>2</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>1</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301261.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>alashcraft</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/285573.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>What do you do after you find a bug ?</title>
      <link>http://www.dzone.com/links/rss/what_do_you_do_after_you_find_a_bug_.html</link>
      <description>How do you view your defects ?</description>
      <category>opinion</category>
      <pubDate>Mon, 23 Nov 2009 13:52:04 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301209.html</guid>
      <dc:creator>rajivnarula</dc:creator>
      <dc:date>2009-11-23T13:52:04Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/what_do_you_do_after_you_find_a_bug_.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301209.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>How do you view your defects ? <br/><br/><a href='http://www.dzone.com/links/rss/what_do_you_do_after_you_find_a_bug_.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301209' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301209</dz:linkId>
      <dz:submitDate>2009-11-23T13:52:04Z</dz:submitDate>
      <dz:voteUpCount>1</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>9</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301209.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>rajivnarula</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/475718.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>35 Cooless Depth of Field Photos to Chase Those Monday Blues</title>
      <link>http://www.dzone.com/links/rss/35_cooless_depth_of_field_photos_to_chase_those_m.html</link>
      <description>Depth of field is a creative technique in photography that brings out the focus of a particular matter in the image. Most commonly known as DOF, it is the total distance between the nearest and furthest object that appear reasonably sharp in photography. There are three factors pertaining to the effect of the depth of field – lens focal length, aperture and shooting distance.</description>
      <category>humor</category>
      <category>news</category>
      <category>opinion</category>
      <category>web 2.0</category>
      <pubDate>Mon, 23 Nov 2009 13:22:15 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301199.html</guid>
      <dc:creator>Onextrapixel</dc:creator>
      <dc:date>2009-11-23T13:22:15Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/35_cooless_depth_of_field_photos_to_chase_those_m.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301199.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>Depth of field is a creative technique in photography that brings out the focus of a particular matter in the image. Most commonly known as DOF, it is the total distance between the nearest and furthest object that appear reasonably sharp in photography. There are three factors pertaining to the effect of the depth of field – lens focal length, aperture and shooting distance.<br/><br/><a href='http://www.dzone.com/links/rss/35_cooless_depth_of_field_photos_to_chase_those_m.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301199' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301199</dz:linkId>
      <dz:submitDate>2009-11-23T13:22:15Z</dz:submitDate>
      <dz:voteUpCount>1</dz:voteUpCount>
      <dz:voteDownCount>1</dz:voteDownCount>
      <dz:clickCount>29</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301199.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>Onextrapixel</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/438045.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>The danger of releasing too early</title>
      <link>http://www.dzone.com/links/rss/the_danger_of_releasing_too_early.html</link>
      <description>Southland Tales, an apocalyptic sci-fi/drama/spoof/political satire written and directed by Richard Kelly, is a movie that all software team leaders and product owners should be aware of. They should carefully study this forgotten piece of recent film history and learn valuable lessons from it. They should do so not because of the great visual effects or the plot, but because of the story of the movie production, its release and utter commercial failure.</description>
      <category>opinion</category>
      <pubDate>Mon, 23 Nov 2009 12:01:01 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301153.html</guid>
      <dc:creator>gojkoa</dc:creator>
      <dc:date>2009-11-23T12:01:01Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/the_danger_of_releasing_too_early.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301153.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>Southland Tales, an apocalyptic sci-fi/drama/spoof/political satire written and directed by Richard Kelly, is a movie that all software team leaders and product owners should be aware of. They should carefully study this forgotten piece of recent film history and learn valuable lessons from it. They should do so not because of the great visual effects or the plot, but because of the story of the movie production, its release and utter commercial failure.<br/><br/><a href='http://www.dzone.com/links/rss/the_danger_of_releasing_too_early.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301153' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301153</dz:linkId>
      <dz:submitDate>2009-11-23T12:01:01Z</dz:submitDate>
      <dz:voteUpCount>1</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>17</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301153.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>gojkoa</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/301914.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>Cloud Computing Patterns</title>
      <link>http://www.dzone.com/links/rss/cloud_computing_patterns.html</link>
      <description>I have attended a presentation by Simon Guest from Microsoft on their cloud computing architecture. Although there was no new concept or idea introduced, Simon has provided an excellent summary on the major patterns of doing cloud computing.&#xD;
&#xD;
I have to admit that I am not familiar with Azure and this is my first time hearing a Microsoft cloud computing presentation. I felt Microsoft has explained their Azure platform in a very comprehensible way. I am quite impressed.&#xD;
&#xD;
Simon talked about 5 patterns of Cloud computing. Let me summarize it (and mix-in a lot of my own thoughts) ...</description>
      <category>frameworks</category>
      <category>opinion</category>
      <category>server</category>
      <pubDate>Mon, 23 Nov 2009 11:54:02 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301141.html</guid>
      <dc:creator>Masoud Kalali</dc:creator>
      <dc:date>2009-11-23T11:54:02Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/cloud_computing_patterns.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301141.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>I have attended a presentation by Simon Guest from Microsoft on their cloud computing architecture. Although there was no new concept or idea introduced, Simon has provided an excellent summary on the major patterns of doing cloud computing.

I have to admit that I am not familiar with Azure and this is my first time hearing a Microsoft cloud computing presentation. I felt Microsoft has explained their Azure platform in a very comprehensible way. I am quite impressed.

Simon talked about 5 patterns of Cloud computing. Let me summarize it (and mix-in a lot of my own thoughts) ...
<br/><br/><a href='http://www.dzone.com/links/rss/cloud_computing_patterns.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301141' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301141</dz:linkId>
      <dz:submitDate>2009-11-23T11:54:02Z</dz:submitDate>
      <dz:voteUpCount>4</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>15</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301141.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>Kalali</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/89352.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>Roundcube: the world's coolest Open Source webmail project?</title>
      <link>http://www.dzone.com/links/rss/roundcube_the_worlds_coolest_open_source_webmail.html</link>
      <description>At Sirius we have recently started using and deploying Roundcube in favour of the tried and tested (but very old) Squirrelmail. Impressed by it's beautiful front-end, ease of use and obvious extensibility, Tom Callway spoke to Till Klampaeckel and Thomas Bruederli, two of Roundcube's core developers, to find out more about this exciting project.</description>
      <category>open source</category>
      <category>opinion</category>
      <category>unix-linux</category>
      <pubDate>Mon, 23 Nov 2009 11:40:53 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/301125.html</guid>
      <dc:creator>bethebest</dc:creator>
      <dc:date>2009-11-23T11:40:53Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/roundcube_the_worlds_coolest_open_source_webmail.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/301125.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>At Sirius we have recently started using and deploying Roundcube in favour of the tried and tested (but very old) Squirrelmail. Impressed by it's beautiful front-end, ease of use and obvious extensibility, Tom Callway spoke to Till Klampaeckel and Thomas Bruederli, two of Roundcube's core developers, to find out more about this exciting project.<br/><br/><a href='http://www.dzone.com/links/rss/roundcube_the_worlds_coolest_open_source_webmail.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=301125' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>301125</dz:linkId>
      <dz:submitDate>2009-11-23T11:40:53Z</dz:submitDate>
      <dz:voteUpCount>1</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>16</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/301125.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>bethebest</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/453164.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>We are software tailors</title>
      <link>http://www.dzone.com/links/rss/we_are_software_tailors.html</link>
      <description>Metaphors help others not coming from the software business to better understand what you do and it helps us to reflect upon our work.&#xD;
We think software tailors is an appropiate metaphor for our work.</description>
      <category>opinion</category>
      <pubDate>Mon, 23 Nov 2009 09:00:24 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/300983.html</guid>
      <dc:creator>schneide</dc:creator>
      <dc:date>2009-11-23T09:00:24Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/we_are_software_tailors.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/300983.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>Metaphors help others not coming from the software business to better understand what you do and it helps us to reflect upon our work.
We think software tailors is an appropiate metaphor for our work.

<br/><br/><a href='http://www.dzone.com/links/rss/we_are_software_tailors.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=300983' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>300983</dz:linkId>
      <dz:submitDate>2009-11-23T09:00:24Z</dz:submitDate>
      <dz:voteUpCount>1</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>3</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/300983.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>schneide</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/429335.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>Architecting a system need a wide knowledge of technologies, COTS, projects, standards....</title>
      <link>http://www.dzone.com/links/rss/architecting_a_system_need_a_wide_knowledge_of_te.html</link>
      <description>Architecting a system need a wide knowledge of technologies, COTS, projects, standards....</description>
      <category>methodology</category>
      <category>opinion</category>
      <category>standards</category>
      <category>tools</category>
      <pubDate>Mon, 23 Nov 2009 08:34:24 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/300965.html</guid>
      <dc:creator>Masoud Kalali</dc:creator>
      <dc:date>2009-11-23T08:34:24Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/architecting_a_system_need_a_wide_knowledge_of_te.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/300965.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>Architecting a system need a wide knowledge of technologies, COTS, projects, standards....
<br/><br/><a href='http://www.dzone.com/links/rss/architecting_a_system_need_a_wide_knowledge_of_te.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=300965' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>300965</dz:linkId>
      <dz:submitDate>2009-11-23T08:34:24Z</dz:submitDate>
      <dz:voteUpCount>4</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>23</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/300965.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>Kalali</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/89352.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>How to Handle Rude Job Interviewers ?</title>
      <link>http://www.dzone.com/links/rss/how_to_handle_rude_job_interviewers_.html</link>
      <description>Learn how to handle rude interviewers in a job interview and why an interviewer might be pushing your buttons on purpose with expert interviewing tips in this free online career related video clip.</description>
      <category>how-to</category>
      <category>news</category>
      <category>opinion</category>
      <category>reviews</category>
      <pubDate>Mon, 23 Nov 2009 06:52:44 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/300853.html</guid>
      <dc:creator>varung</dc:creator>
      <dc:date>2009-11-23T06:52:44Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/how_to_handle_rude_job_interviewers_.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/300853.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>Learn how to handle rude interviewers in a job interview and why an interviewer might be pushing your buttons on purpose with expert interviewing tips in this free online career related video clip.
<br/><br/><a href='http://www.dzone.com/links/rss/how_to_handle_rude_job_interviewers_.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=300853' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>300853</dz:linkId>
      <dz:submitDate>2009-11-23T06:52:44Z</dz:submitDate>
      <dz:voteUpCount>3</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>24</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/300853.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>varung</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/447949.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>6 Great Ways to Recover From a Job Interview Mistake?</title>
      <link>http://www.dzone.com/links/rss/6_great_ways_to_recover_from_a_job_interview_mist.html</link>
      <description>Everyone has had an interview that didn't go as well as it should have. Luckily, there are things you can do before, during and after an interview to ensure that your mistakes can be avoided or negated.</description>
      <category>how-to</category>
      <category>news</category>
      <category>opinion</category>
      <category>reviews</category>
      <pubDate>Mon, 23 Nov 2009 06:43:51 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/300843.html</guid>
      <dc:creator>varung</dc:creator>
      <dc:date>2009-11-23T06:43:51Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/6_great_ways_to_recover_from_a_job_interview_mist.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/300843.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>Everyone has had an interview that didn't go as well as it should have. Luckily, there are things you can do before, during and after an interview to ensure that your mistakes can be avoided or negated.<br/><br/><a href='http://www.dzone.com/links/rss/6_great_ways_to_recover_from_a_job_interview_mist.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=300843' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>300843</dz:linkId>
      <dz:submitDate>2009-11-23T06:43:51Z</dz:submitDate>
      <dz:voteUpCount>3</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>14</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/300843.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>varung</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/447949.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>The wave experience</title>
      <link>http://www.dzone.com/links/rss/the_wave_experience.html</link>
      <description>I had the chance to take part of a multi people conversation on Google Wave.</description>
      <category>opinion</category>
      <category>reviews</category>
      <category>tools</category>
      <category>web 2.0</category>
      <pubDate>Sun, 22 Nov 2009 18:05:05 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/300265.html</guid>
      <dc:creator>AlvinAshcraft</dc:creator>
      <dc:date>2009-11-22T18:05:05Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/the_wave_experience.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/300265.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>I had the chance to take part of a multi people conversation on Google Wave.<br/><br/><a href='http://www.dzone.com/links/rss/the_wave_experience.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=300265' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>300265</dz:linkId>
      <dz:submitDate>2009-11-22T18:05:05Z</dz:submitDate>
      <dz:voteUpCount>4</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>16</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/300265.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>alashcraft</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/285573.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>Planning versus Experience</title>
      <link>http://www.dzone.com/links/rss/planning_versus_experience.html</link>
      <description>I picked this planning versus experience concept up from a Jim Coplien piece on InfoQ a few months ago. The idea was basically this; If you have 20 years experience doing roughly the same work you should acknowledge that the 20 years means you have a lot of your plan pre thought through before you even turn up.</description>
      <category>opinion</category>
      <category>reviews</category>
      <pubDate>Sun, 22 Nov 2009 17:40:23 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/300231.html</guid>
      <dc:creator>mswatcher</dc:creator>
      <dc:date>2009-11-22T17:40:23Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/planning_versus_experience.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/300231.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>I picked this planning versus experience concept up from a Jim Coplien piece on InfoQ a few months ago. The idea was basically this; If you have 20 years experience doing roughly the same work you should acknowledge that the 20 years means you have a lot of your plan pre thought through before you even turn up.<br/><br/><a href='http://www.dzone.com/links/rss/planning_versus_experience.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=300231' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>300231</dz:linkId>
      <dz:submitDate>2009-11-22T17:40:23Z</dz:submitDate>
      <dz:voteUpCount>4</dz:voteUpCount>
      <dz:voteDownCount>0</dz:voteDownCount>
      <dz:clickCount>20</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/300231.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>mswatcher</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/225256.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>Why Google Should Cool It With Chrome OS</title>
      <link>http://www.dzone.com/links/rss/why_google_should_cool_it_with_chrome_os.html</link>
      <description>Sometimes you have to take a step down to step up. That’s what Google should’ve done with its open source PC operating system Chrome OS, which the corporation demonstrated Thursday.&#xD;
&#xD;
Instead, Google is positioning Chrome OS against Microsoft with a lightweight OS shipping with netbooks next year. Chrome OS will function as a modified browser</description>
      <category>opinion</category>
      <category>reviews</category>
      <pubDate>Sun, 22 Nov 2009 17:38:22 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/300227.html</guid>
      <dc:creator>mswatcher</dc:creator>
      <dc:date>2009-11-22T17:38:22Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/why_google_should_cool_it_with_chrome_os.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/300227.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>Sometimes you have to take a step down to step up. That’s what Google should’ve done with its open source PC operating system Chrome OS, which the corporation demonstrated Thursday.

Instead, Google is positioning Chrome OS against Microsoft with a lightweight OS shipping with netbooks next year. Chrome OS will function as a modified browser<br/><br/><a href='http://www.dzone.com/links/rss/why_google_should_cool_it_with_chrome_os.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=300227' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>300227</dz:linkId>
      <dz:submitDate>2009-11-22T17:38:22Z</dz:submitDate>
      <dz:voteUpCount>2</dz:voteUpCount>
      <dz:voteDownCount>1</dz:voteDownCount>
      <dz:clickCount>15</dz:clickCount>
      <dz:commentCount>1</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/300227.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>mswatcher</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/225256.gif</dz:userimage>
      </dz:submitter>
    </item>
    <item>
      <title>Nobel Peace Price to Linux Architect?</title>
      <link>http://www.dzone.com/links/rss/nobel_peace_price_to_linux_architect.html</link>
      <description>After all open source brought lot of piece</description>
      <category>news</category>
      <category>open source</category>
      <category>opinion</category>
      <category>unix-linux</category>
      <pubDate>Sun, 22 Nov 2009 14:16:03 GMT</pubDate>
      <guid isPermaLink="false">http://www.dzone.com/links/300119.html</guid>
      <dc:creator>taranfx</dc:creator>
      <dc:date>2009-11-22T14:16:03Z</dc:date>
      <content:encoded><![CDATA[<a href='http://www.dzone.com/links/rss/nobel_peace_price_to_linux_architect.html'><img src='http://cdn.dzone.com/images/thumbs/120x90/300119.jpg' style='width:120;height:90;float:left;vertical-align:top;border:1px solid #ccc;' /></a><p style='margin-left: 130px;'>After all open source brought lot of piece<br/><br/><a href='http://www.dzone.com/links/rss/nobel_peace_price_to_linux_architect.html'><img src='http://www.dzone.com/links/voteCountImage?linkId=300119' border='0'/></a></p>]]></content:encoded>
      <dz:linkId>300119</dz:linkId>
      <dz:submitDate>2009-11-22T14:16:03Z</dz:submitDate>
      <dz:voteUpCount>2</dz:voteUpCount>
      <dz:voteDownCount>3</dz:voteDownCount>
      <dz:clickCount>18</dz:clickCount>
      <dz:commentCount>0</dz:commentCount>
      <dz:thumbnail>http://www.dzone.com/links/images/thumbs/120x90/300119.jpg</dz:thumbnail>
      <dz:submitter>
        <dz:username>taranfx</dz:username>
        <dz:userimage>http://www.dzone.com/links/images/avatars/414638.gif</dz:userimage>
      </dz:submitter>
    </item>
  </channel>
</rss>

