<?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 Pure Danger Tech</title>
	<atom:link href="http://tech.puredanger.com/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://tech.puredanger.com</link>
	<description>Alex Miller&#039;s technical blog</description>
	<lastBuildDate>Mon, 06 Feb 2012 19:39:50 -0800</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
	<item>
		<title>Comment on Clojure values by Nick Bauman</title>
		<link>http://tech.puredanger.com/2012/02/05/clojure-values/comment-page-1/#comment-296113</link>
		<dc:creator>Nick Bauman</dc:creator>
		<pubDate>Mon, 06 Feb 2012 19:39:50 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/?p=1210#comment-296113</guid>
		<description>I&#039;m a huge fan of Clojure but this hammock debugging and &quot;thinking over tests&quot; is really strange. You will take my TDD from my cold, dead hands.</description>
		<content:encoded><![CDATA[<p>I&#8217;m a huge fan of Clojure but this hammock debugging and &#8220;thinking over tests&#8221; is really strange. You will take my TDD from my cold, dead hands.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Clojure values by Gregg Williams</title>
		<link>http://tech.puredanger.com/2012/02/05/clojure-values/comment-page-1/#comment-296111</link>
		<dc:creator>Gregg Williams</dc:creator>
		<pubDate>Mon, 06 Feb 2012 05:50:42 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/?p=1210#comment-296111</guid>
		<description>I&#039;m very pleased to see a desire *expressed* for clarity over terseness--now I&#039;d like to see it put into action. I&#039;m a perennial Clojure beginner (2+ years of coding, much study of all the Clojure books, and still mystified on a regular basis by the language&#039;s behavior), and I find the Clojure community to be very intent on proving how smart it is. Single-letter variables...really! And try to imagine a newcomer trying to decode some of the Clojure doc strings. I look forward to seeing people writing code (especially code *meant* for public consumption) that&#039;s easier to understand than what I&#039;ve seen so far. And if you want help on how to do that, I&#039;ll be glad to help. Thanks for listening.</description>
		<content:encoded><![CDATA[<p>I&#8217;m very pleased to see a desire *expressed* for clarity over terseness&#8211;now I&#8217;d like to see it put into action. I&#8217;m a perennial Clojure beginner (2+ years of coding, much study of all the Clojure books, and still mystified on a regular basis by the language&#8217;s behavior), and I find the Clojure community to be very intent on proving how smart it is. Single-letter variables&#8230;really! And try to imagine a newcomer trying to decode some of the Clojure doc strings. I look forward to seeing people writing code (especially code *meant* for public consumption) that&#8217;s easier to understand than what I&#8217;ve seen so far. And if you want help on how to do that, I&#8217;ll be glad to help. Thanks for listening.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Getting Java source on the Mac by Swati</title>
		<link>http://tech.puredanger.com/2007/09/21/java-source-mac/comment-page-1/#comment-296110</link>
		<dc:creator>Swati</dc:creator>
		<pubDate>Mon, 06 Feb 2012 01:34:32 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/2007/09/21/java-source-mac/#comment-296110</guid>
		<description>Java 1.6 update 29 source code is available at location:
/Library/Java/JavaVirtualMachines/1.6.0_29-b11-402.jdk/Contents/Home/src.jar</description>
		<content:encoded><![CDATA[<p>Java 1.6 update 29 source code is available at location:<br />
/Library/Java/JavaVirtualMachines/1.6.0_29-b11-402.jdk/Contents/Home/src.jar</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java 7 TransferQueue by yongboy</title>
		<link>http://tech.puredanger.com/2009/02/28/java-7-transferqueue/comment-page-1/#comment-296109</link>
		<dc:creator>yongboy</dc:creator>
		<pubDate>Thu, 02 Feb 2012 04:27:22 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/2009/02/28/java-7-transferqueue/#comment-296109</guid>
		<description>Hi, Alex:
Thanks for your response.
I understood wrong with the transfer method, with my test, your are right.
With some item already in the queue, when call the transfer method, the producer thread will wait util  the other items have been consumed.</description>
		<content:encoded><![CDATA[<p>Hi, Alex:<br />
Thanks for your response.<br />
I understood wrong with the transfer method, with my test, your are right.<br />
With some item already in the queue, when call the transfer method, the producer thread will wait util  the other items have been consumed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java 7 TransferQueue by Alex Miller</title>
		<link>http://tech.puredanger.com/2009/02/28/java-7-transferqueue/comment-page-1/#comment-296108</link>
		<dc:creator>Alex Miller</dc:creator>
		<pubDate>Wed, 01 Feb 2012 04:00:50 +0000</pubDate>
		<guid isPermaLink="false">http://tech.puredanger.com/2009/02/28/java-7-transferqueue/#comment-296108</guid>
		<description>@yongboy: I think it is correct as written.  If you are putting a new item in the queue, then it cannot be consumed until all of the other items already in the queue have been consumed (as that&#039;s the FIFO guarantee).</description>
		<content:encoded><![CDATA[<p>@yongboy: I think it is correct as written.  If you are putting a new item in the queue, then it cannot be consumed until all of the other items already in the queue have been consumed (as that&#8217;s the FIFO guarantee).</p>
]]></content:encoded>
	</item>
</channel>
</rss>

