<?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 on: Thoughts on Clojure	</title>
	<atom:link href="https://programmingzen.com/thoughts-on-clojure/feed/" rel="self" type="application/rss+xml" />
	<link>https://programmingzen.com/thoughts-on-clojure/</link>
	<description>Meditations on programming, startups, and technology</description>
	<lastBuildDate>Thu, 09 Sep 2010 03:37:41 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: roger		</title>
		<link>https://programmingzen.com/thoughts-on-clojure/#comment-18597</link>

		<dc:creator><![CDATA[roger]]></dc:creator>
		<pubDate>Thu, 09 Sep 2010 03:37:41 +0000</pubDate>
		<guid isPermaLink="false">http://programmingzen.com/?p=1225#comment-18597</guid>

					<description><![CDATA[So what&#039;s your take on Scala? Not as &quot;fun, interesting, and pragmatic&quot;?
-r]]></description>
			<content:encoded><![CDATA[<p>So what&#8217;s your take on Scala? Not as &#8220;fun, interesting, and pragmatic&#8221;?<br />
-r</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sahil		</title>
		<link>https://programmingzen.com/thoughts-on-clojure/#comment-10812</link>

		<dc:creator><![CDATA[Sahil]]></dc:creator>
		<pubDate>Wed, 14 Jul 2010 17:08:22 +0000</pubDate>
		<guid isPermaLink="false">http://programmingzen.com/?p=1225#comment-10812</guid>

					<description><![CDATA[Nice!
I am definitely going to give it a shot.]]></description>
			<content:encoded><![CDATA[<p>Nice!<br />
I am definitely going to give it a shot.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: How to setup Clojure from scratch		</title>
		<link>https://programmingzen.com/thoughts-on-clojure/#comment-10769</link>

		<dc:creator><![CDATA[How to setup Clojure from scratch]]></dc:creator>
		<pubDate>Tue, 13 Jul 2010 18:46:42 +0000</pubDate>
		<guid isPermaLink="false">http://programmingzen.com/?p=1225#comment-10769</guid>

					<description><![CDATA[[...] Wikibooks as a base, but I built on top of it , so as to customize and improve it.&#039;;  My previous post about Clojure generated quite a bit of interest, so I thought I&#8217;d follow it up with something a bit more [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] Wikibooks as a base, but I built on top of it , so as to customize and improve it.&#039;;  My previous post about Clojure generated quite a bit of interest, so I thought I&#8217;d follow it up with something a bit more [&#8230;]</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Dave		</title>
		<link>https://programmingzen.com/thoughts-on-clojure/#comment-10665</link>

		<dc:creator><![CDATA[Dave]]></dc:creator>
		<pubDate>Sat, 10 Jul 2010 04:48:52 +0000</pubDate>
		<guid isPermaLink="false">http://programmingzen.com/?p=1225#comment-10665</guid>

					<description><![CDATA[There&#039;s an interesting dissection of the SE Radio interview by Rich Hickey (clojure author) here:

http://whiley.org/2010/06/23/rich-hickey-on-clojure-se-radio/

This talks a lot on the advantages of using values and pure functions, compared with the normal OO approach.]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s an interesting dissection of the SE Radio interview by Rich Hickey (clojure author) here:</p>
<p><a href="http://whiley.org/2010/06/23/rich-hickey-on-clojure-se-radio/" rel="nofollow ugc">http://whiley.org/2010/06/23/rich-hickey-on-clojure-se-radio/</a></p>
<p>This talks a lot on the advantages of using values and pure functions, compared with the normal OO approach.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: John Smith		</title>
		<link>https://programmingzen.com/thoughts-on-clojure/#comment-10660</link>

		<dc:creator><![CDATA[John Smith]]></dc:creator>
		<pubDate>Sat, 10 Jul 2010 00:43:23 +0000</pubDate>
		<guid isPermaLink="false">http://programmingzen.com/?p=1225#comment-10660</guid>

					<description><![CDATA[I also find Clojure to be the most fun, interesting and pragmatic.

Immutable data structures they actually made it work in log32n.

lazy / infinite sequences and memoization - a nice powerful way to solve problems. 

Destructuring and sequence comprehension - a wonderful mechanism that lets me clearly express how I want to deal with my data.

No one notices () after the first 2 weeks. Use an editor that colors them if you like.

I get more done in a day using Clojure (by far) than I could in a day using any other language over the past 20 years. Any my Clojure code is better designed and has less bugs and performs better given the same effort.

Rich&#039;s videos on Clojure are a great way to enlighten yourself about a cool new thing in your universe.]]></description>
			<content:encoded><![CDATA[<p>I also find Clojure to be the most fun, interesting and pragmatic.</p>
<p>Immutable data structures they actually made it work in log32n.</p>
<p>lazy / infinite sequences and memoization &#8211; a nice powerful way to solve problems. </p>
<p>Destructuring and sequence comprehension &#8211; a wonderful mechanism that lets me clearly express how I want to deal with my data.</p>
<p>No one notices () after the first 2 weeks. Use an editor that colors them if you like.</p>
<p>I get more done in a day using Clojure (by far) than I could in a day using any other language over the past 20 years. Any my Clojure code is better designed and has less bugs and performs better given the same effort.</p>
<p>Rich&#8217;s videos on Clojure are a great way to enlighten yourself about a cool new thing in your universe.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Antonio Cangiano		</title>
		<link>https://programmingzen.com/thoughts-on-clojure/#comment-10655</link>

		<dc:creator><![CDATA[Antonio Cangiano]]></dc:creator>
		<pubDate>Fri, 09 Jul 2010 20:11:34 +0000</pubDate>
		<guid isPermaLink="false">http://programmingzen.com/?p=1225#comment-10655</guid>

					<description><![CDATA[A Hacker News commenter linked to a great comment on how to get started with Clojure: http://news.ycombinator.com/item?id=1033503]]></description>
			<content:encoded><![CDATA[<p>A Hacker News commenter linked to a great comment on how to get started with Clojure: <a href="http://news.ycombinator.com/item?id=1033503" rel="nofollow ugc">http://news.ycombinator.com/item?id=1033503</a></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
