<?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 Todd Huss</title>
	<atom:link href="http://gabrito.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://gabrito.com</link>
	<description>Anecdotes on Technology Leadership, Ruby, Java, Scala, Cloud Computing, Open-Source, SEO, and Design</description>
	<lastBuildDate>Sat, 28 Aug 2010 06:23:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Code readability through conciseness by Todd Huss</title>
		<link>http://gabrito.com/post/code-readability-through-conciseness/comment-page-1#comment-246323</link>
		<dc:creator>Todd Huss</dc:creator>
		<pubDate>Sat, 28 Aug 2010 06:23:30 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/?p=286#comment-246323</guid>
		<description>Ian, nice, highly readable and very concise! 

I&#039;m not crazy about the procedural nature of PHP&#039;s array_sum(...) and Python&#039;s sum(...) but that&#039;s just my personal taste for highly object oriented languages like Ruby, Scala, and Smalltalk versus hybrid languages like Perl, PHP, Python, and Java. I think there&#039;s no question though that the Python and PHP examples are both highly readable and concise.</description>
		<content:encoded><![CDATA[<p>Ian, nice, highly readable and very concise! </p>
<p>I&#8217;m not crazy about the procedural nature of PHP&#8217;s array_sum(&#8230;) and Python&#8217;s sum(&#8230;) but that&#8217;s just my personal taste for highly object oriented languages like Ruby, Scala, and Smalltalk versus hybrid languages like Perl, PHP, Python, and Java. I think there&#8217;s no question though that the Python and PHP examples are both highly readable and concise.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Code readability through conciseness by ic</title>
		<link>http://gabrito.com/post/code-readability-through-conciseness/comment-page-1#comment-246286</link>
		<dc:creator>ic</dc:creator>
		<pubDate>Sat, 28 Aug 2010 01:14:59 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/?p=286#comment-246286</guid>
		<description>Then, of course, there is concision + clarity...

PHP:
$sum = array_sum(array(1,2,3,4));</description>
		<content:encoded><![CDATA[<p>Then, of course, there is concision + clarity&#8230;</p>
<p>PHP:<br />
$sum = array_sum(array(1,2,3,4));</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Code readability through conciseness by Todd Huss</title>
		<link>http://gabrito.com/post/code-readability-through-conciseness/comment-page-1#comment-245006</link>
		<dc:creator>Todd Huss</dc:creator>
		<pubDate>Thu, 12 Aug 2010 18:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/?p=286#comment-245006</guid>
		<description>Steven, I can see your viewpoint and it&#039;s definitely a matter of taste as to when you take advantage of the conciseness features of a certain language. If it&#039;s the anonymous functions you&#039;re not liking though, get ready, because anonymous functions and closures are coming in Java 7. 

Also, you can&#039;t lump Scala with Ruby as being a dynamic language. Scala is statically typed and many argue that it&#039;s type system is stronger than Java&#039;s (especially around generics) yet with far less ceremony (where ceremony = having to unnecessarily re-declare your types over and over again). 

I do however agree that Scala syntax takes some getting used to.</description>
		<content:encoded><![CDATA[<p>Steven, I can see your viewpoint and it&#8217;s definitely a matter of taste as to when you take advantage of the conciseness features of a certain language. If it&#8217;s the anonymous functions you&#8217;re not liking though, get ready, because anonymous functions and closures are coming in Java 7. </p>
<p>Also, you can&#8217;t lump Scala with Ruby as being a dynamic language. Scala is statically typed and many argue that it&#8217;s type system is stronger than Java&#8217;s (especially around generics) yet with far less ceremony (where ceremony = having to unnecessarily re-declare your types over and over again). </p>
<p>I do however agree that Scala syntax takes some getting used to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Code readability through conciseness by steven</title>
		<link>http://gabrito.com/post/code-readability-through-conciseness/comment-page-1#comment-244949</link>
		<dc:creator>steven</dc:creator>
		<pubDate>Thu, 12 Aug 2010 03:07:40 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/?p=286#comment-244949</guid>
		<description>cryptic code like this is exactly why i dont like these kind of dynamic languages. they try to get too smart for their own good and it just turns into a pissing contest just like this post.</description>
		<content:encoded><![CDATA[<p>cryptic code like this is exactly why i dont like these kind of dynamic languages. they try to get too smart for their own good and it just turns into a pissing contest just like this post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Code readability through conciseness by Todd Huss</title>
		<link>http://gabrito.com/post/code-readability-through-conciseness/comment-page-1#comment-244921</link>
		<dc:creator>Todd Huss</dc:creator>
		<pubDate>Wed, 11 Aug 2010 20:43:24 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/?p=286#comment-244921</guid>
		<description>Mike, if you haven&#039;t used a language that supports anonymous functions and closures like Ruby, Scala, and soon Java 7 then the above would probably be very cryptic. I know it was for me when I first started using Ruby but now I&#039;m a huge fan. 

I would still argue that summing an array with [1,2,3,4].inject(:+) is a lot more readable than the longer variant and a hell of a lot more readable than the non functional form using a for loop. Even if you don&#039;t necessarily understand the underlying mechanics.</description>
		<content:encoded><![CDATA[<p>Mike, if you haven&#8217;t used a language that supports anonymous functions and closures like Ruby, Scala, and soon Java 7 then the above would probably be very cryptic. I know it was for me when I first started using Ruby but now I&#8217;m a huge fan. </p>
<p>I would still argue that summing an array with [1,2,3,4].inject(:+) is a lot more readable than the longer variant and a hell of a lot more readable than the non functional form using a for loop. Even if you don&#8217;t necessarily understand the underlying mechanics.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Code readability through conciseness by Mike Funk</title>
		<link>http://gabrito.com/post/code-readability-through-conciseness/comment-page-1#comment-244919</link>
		<dc:creator>Mike Funk</dc:creator>
		<pubDate>Wed, 11 Aug 2010 20:29:23 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/?p=286#comment-244919</guid>
		<description>Todd, that sure is some cryptic looking code. But, then, there has always been an element of code obfuscators in the computer language community. I&#039;m a minimalist, and I dig conciseness and readability - just not to the extreme you take it with Ruby and Scala.

BTW, coming from a sailing family, very nice boat.</description>
		<content:encoded><![CDATA[<p>Todd, that sure is some cryptic looking code. But, then, there has always been an element of code obfuscators in the computer language community. I&#8217;m a minimalist, and I dig conciseness and readability &#8211; just not to the extreme you take it with Ruby and Scala.</p>
<p>BTW, coming from a sailing family, very nice boat.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ruby on Rails Dreamhost plugin by Andrew W</title>
		<link>http://gabrito.com/post/ruby-on-rails-dreamhost-plugin/comment-page-1#comment-243838</link>
		<dc:creator>Andrew W</dc:creator>
		<pubDate>Mon, 02 Aug 2010 04:29:02 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/post/ruby-on-rails-dreamhost-plugin#comment-243838</guid>
		<description>Has anyone figured out anything similar to this now that Dreamhost is using Passenger?

Andrew W.</description>
		<content:encoded><![CDATA[<p>Has anyone figured out anything similar to this now that Dreamhost is using Passenger?</p>
<p>Andrew W.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Instantiating and populating a list or collection by Martial Java / Initializing Collection</title>
		<link>http://gabrito.com/post/instantiating-and-populating-a-list-or-collection/comment-page-1#comment-242724</link>
		<dc:creator>Martial Java / Initializing Collection</dc:creator>
		<pubDate>Wed, 21 Jul 2010 11:16:08 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/post/instantiating-and-populating-a-list-or-collection#comment-242724</guid>
		<description>[...] hardly find an elegant solution until I see this post. There are at least three better solution for the [...]</description>
		<content:encoded><![CDATA[<p>[...] hardly find an elegant solution until I see this post. There are at least three better solution for the [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Simple CMS using Google Spreadsheet API by Ruli</title>
		<link>http://gabrito.com/post/simple-cms-using-google-spreadsheet-api/comment-page-1#comment-241968</link>
		<dc:creator>Ruli</dc:creator>
		<pubDate>Thu, 08 Jul 2010 20:23:38 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/post/simple-cms-using-google-spreadsheet-api#comment-241968</guid>
		<description>I am having the same problem, 

side from pasting the code into a page and then changing the URL to match the published spreadsheet. what else do i need to do?

This is my code



function displayContent(json) { document.getElementById(&#039;headline&#039;).innerHTML = json.feed.entry[0].gsx$html.$t; }


</description>
		<content:encoded><![CDATA[<p>I am having the same problem, </p>
<p>side from pasting the code into a page and then changing the URL to match the published spreadsheet. what else do i need to do?</p>
<p>This is my code</p>
<p>function displayContent(json) { document.getElementById(&#8216;headline&#8217;).innerHTML = json.feed.entry[0].gsx$html.$t; }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Instantiating and populating a list or collection by Java Tips: Initializing Collection &#171; satukubik</title>
		<link>http://gabrito.com/post/instantiating-and-populating-a-list-or-collection/comment-page-1#comment-241478</link>
		<dc:creator>Java Tips: Initializing Collection &#171; satukubik</dc:creator>
		<pubDate>Thu, 01 Jul 2010 13:46:43 +0000</pubDate>
		<guid isPermaLink="false">http://gabrito.com/post/instantiating-and-populating-a-list-or-collection#comment-241478</guid>
		<description>[...] hardly find an elegant solution until I see this post. There are at least three better solution for the [...]</description>
		<content:encoded><![CDATA[<p>[...] hardly find an elegant solution until I see this post. There are at least three better solution for the [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
