<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for No One Is Perfect</title>
	<atom:link href="http://watchitlater.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://watchitlater.com/blog</link>
	<description>A reluctant foray into the world of blogging.</description>
	<lastBuildDate>Sun, 13 Jun 2010 10:00:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Manipulating collections with lambdaj by B. K. Oxley (binkley)</title>
		<link>http://watchitlater.com/blog/2010/06/manipulating-collections-with-lambdaj/comment-page-1/#comment-8896</link>
		<dc:creator>B. K. Oxley (binkley)</dc:creator>
		<pubDate>Sun, 13 Jun 2010 10:00:31 +0000</pubDate>
		<guid isPermaLink="false">http://watchitlater.com/blog/?p=212#comment-8896</guid>
		<description>I am in the same boat re &quot;advanced&quot; languages, etc.  An idiom for Java I picked up once I became used to it:

List activeCustomers = new ArrayList();
for (Customer customer : customers) {
  if (customer.isActive()) {
    activeCusomers.add(customer);
  }
}

becomes:

List activeCustomers = new ArrayList(customers.size()) {{
for (Customer customer : customers)
  if (customer.isActive())
    add(customer);
}};

It is more of a taste issue -- the code is semantically identical -- but using the anonymous instance and {{ ... }} is a visual pattern which make collection transformation look like its own idiom.

Cheers,
--binkley</description>
		<content:encoded><![CDATA[<p>I am in the same boat re &#8220;advanced&#8221; languages, etc.  An idiom for Java I picked up once I became used to it:</p>
<p>List activeCustomers = new ArrayList();<br />
for (Customer customer : customers) {<br />
  if (customer.isActive()) {<br />
    activeCusomers.add(customer);<br />
  }<br />
}</p>
<p>becomes:</p>
<p>List activeCustomers = new ArrayList(customers.size()) {{<br />
for (Customer customer : customers)<br />
  if (customer.isActive())<br />
    add(customer);<br />
}};</p>
<p>It is more of a taste issue &#8212; the code is semantically identical &#8212; but using the anonymous instance and {{ &#8230; }} is a visual pattern which make collection transformation look like its own idiom.</p>
<p>Cheers,<br />
&#8211;binkley</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New line in Excel on Mac by Julie</title>
		<link>http://watchitlater.com/blog/2008/04/new-line-in-excel-on-mac/comment-page-1/#comment-8416</link>
		<dc:creator>Julie</dc:creator>
		<pubDate>Tue, 27 Apr 2010 00:53:56 +0000</pubDate>
		<guid isPermaLink="false">http://watchitlater.com/blog/archives/9#comment-8416</guid>
		<description>I love my Mac, but some of the &quot;little&quot; issues like this with Mac Excel have been driving me...... Anyway, thanks for posting the solution!</description>
		<content:encoded><![CDATA[<p>I love my Mac, but some of the &#8220;little&#8221; issues like this with Mac Excel have been driving me&#8230;&#8230; Anyway, thanks for posting the solution!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Test definitions for developers by Tom</title>
		<link>http://watchitlater.com/blog/2010/03/test-definitions-for-developers/comment-page-1/#comment-7502</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Sun, 21 Mar 2010 11:35:25 +0000</pubDate>
		<guid isPermaLink="false">http://watchitlater.com/blog/?p=201#comment-7502</guid>
		<description>Q.E.D. :D</description>
		<content:encoded><![CDATA[<p>Q.E.D. <img src='http://watchitlater.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
