<?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 Dysfunctional Programming</title>
	<atom:link href="http://ra3s.com/wordpress/dysfunctional-programming/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://ra3s.com/wordpress/dysfunctional-programming</link>
	<description>(λ (a b) a) vs (λ (a b) b)</description>
	<lastBuildDate>Thu, 05 Jan 2012 06:01:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Bondage and Discipline Python by aaron</title>
		<link>http://ra3s.com/wordpress/dysfunctional-programming/bondage-and-discipline-python/#comment-23</link>
		<dc:creator>aaron</dc:creator>
		<pubDate>Thu, 05 Jan 2012 06:01:36 +0000</pubDate>
		<guid isPermaLink="false">http://ra3s.com/wordpress/dysfunctional-programming/?p=320#comment-23</guid>
		<description>Excellent question. Python lambdas lack any support for Python statements. For example, if one wants to conditionally execute code, they cannot use &#039;if&#039; statements:

&lt;pre&gt;  (lambda x:
    if not x: print 0
    else:
      for y in x: 
        print x) # error&lt;/pre&gt;

Instead, you must use comprehensions to loop, short circuit operators to perform conditionals, etc:

&lt;pre&gt;  (lambda x:
    sys.__stdout__.write(&quot;0\n&quot;) 
    if not x else 
    sum((sys.__stdout__.write(&quot;%s\n&quot;%y),0) 
        for y in x)&lt;/pre&gt;

The latter is decidedly suboptimal.</description>
		<content:encoded><![CDATA[<p>Excellent question. Python lambdas lack any support for Python statements. For example, if one wants to conditionally execute code, they cannot use &#8216;if&#8217; statements:</p>
<pre>  (lambda x:
    if not x: print 0
    else:
      for y in x:
        print x) # error</pre>
<p>Instead, you must use comprehensions to loop, short circuit operators to perform conditionals, etc:</p>
<pre>  (lambda x:
    sys.__stdout__.write("0\n")
    if not x else
    sum((sys.__stdout__.write("%s\n"%y),0)
        for y in x)</pre>
<p>The latter is decidedly suboptimal.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Memoizer, in C++ by Lewis</title>
		<link>http://ra3s.com/wordpress/dysfunctional-programming/memoizer-in-c/#comment-2</link>
		<dc:creator>Lewis</dc:creator>
		<pubDate>Thu, 08 Dec 2011 01:36:51 +0000</pubDate>
		<guid isPermaLink="false">http://ra3s.com/wordpress/dysfunctional-programming/?p=8#comment-2</guid>
		<description>Thanks my friend for your code !!</description>
		<content:encoded><![CDATA[<p>Thanks my friend for your code !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bondage and Discipline Python by Amit Kumar</title>
		<link>http://ra3s.com/wordpress/dysfunctional-programming/bondage-and-discipline-python/#comment-20</link>
		<dc:creator>Amit Kumar</dc:creator>
		<pubDate>Sat, 26 Nov 2011 09:46:43 +0000</pubDate>
		<guid isPermaLink="false">http://ra3s.com/wordpress/dysfunctional-programming/?p=320#comment-20</guid>
		<description>Not sure what you mean by &quot;proper statement support for Lambdas&quot;. Lambda functions have been there in Python.</description>
		<content:encoded><![CDATA[<p>Not sure what you mean by &#8220;proper statement support for Lambdas&#8221;. Lambda functions have been there in Python.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quickrefs for Python and Vim by Luke</title>
		<link>http://ra3s.com/wordpress/dysfunctional-programming/quickrefs-for-python-and-vim/#comment-17</link>
		<dc:creator>Luke</dc:creator>
		<pubDate>Mon, 21 Nov 2011 14:12:16 +0000</pubDate>
		<guid isPermaLink="false">http://ra3s.com/wordpress/dysfunctional-programming/?p=288#comment-17</guid>
		<description>Hey there,

thanks for sharing.

To do my own stuff I would like to ask how you did this pocketmods. It would be nice if you could tell some things about it. I wonder if you used Latex to set this up, or is it something else?

Thanks in advance
Luke</description>
		<content:encoded><![CDATA[<p>Hey there,</p>
<p>thanks for sharing.</p>
<p>To do my own stuff I would like to ask how you did this pocketmods. It would be nice if you could tell some things about it. I wonder if you used Latex to set this up, or is it something else?</p>
<p>Thanks in advance<br />
Luke</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Only a Mathematician would say by David Stolowitz</title>
		<link>http://ra3s.com/wordpress/dysfunctional-programming/only-a-mathematician-would-say/#comment-21</link>
		<dc:creator>David Stolowitz</dc:creator>
		<pubDate>Fri, 14 Oct 2011 19:57:54 +0000</pubDate>
		<guid isPermaLink="false">http://ra3s.com/wordpress/dysfunctional-programming/?p=342#comment-21</guid>
		<description>Nah, just lump them all in the category of &quot;takes things way too personally&quot; :)</description>
		<content:encoded><![CDATA[<p>Nah, just lump them all in the category of &#8220;takes things way too personally&#8221; <img src='http://ra3s.com/wordpress/dysfunctional-programming/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kindle programming (part 1) by aaron</title>
		<link>http://ra3s.com/wordpress/dysfunctional-programming/kindle-programming-part-1/#comment-19</link>
		<dc:creator>aaron</dc:creator>
		<pubDate>Thu, 25 Aug 2011 09:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://ra3s.com/wordpress/dysfunctional-programming/?p=299#comment-19</guid>
		<description>The answer seems to be no, you cannot get the Kindle 3 browser to run content from Kindle storage without custom firmware.

Wikipedia [&lt;a href=&quot;http://en.wikipedia.org/wiki/Comparison_of_e-book_formats&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;] indicates that the Kindle ebook format uses HTML, so there&#039;s a remote possibility that you could compile a kindle book containing embedded scripts and do something useful; however, you&#039;ll be going through the e-reader application then, not the browser. Even if it worked, there might not exist any workable mechanism for text input.

For now, I&#039;ve been dropping my app onto my public dropbox folder. I have the url bookmarked on the kindle so it&#039;s easy to refresh. I really wish they would open it up though; e.g. permitting self-contained HTML files to be loaded (using data urls, embedding all necessary scripts, etc.)</description>
		<content:encoded><![CDATA[<p>The answer seems to be no, you cannot get the Kindle 3 browser to run content from Kindle storage without custom firmware.</p>
<p>Wikipedia [<a href="http://en.wikipedia.org/wiki/Comparison_of_e-book_formats" rel="nofollow">here</a>] indicates that the Kindle ebook format uses HTML, so there&#8217;s a remote possibility that you could compile a kindle book containing embedded scripts and do something useful; however, you&#8217;ll be going through the e-reader application then, not the browser. Even if it worked, there might not exist any workable mechanism for text input.</p>
<p>For now, I&#8217;ve been dropping my app onto my public dropbox folder. I have the url bookmarked on the kindle so it&#8217;s easy to refresh. I really wish they would open it up though; e.g. permitting self-contained HTML files to be loaded (using data urls, embedding all necessary scripts, etc.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Kindle programming (part 1) by Adrian</title>
		<link>http://ra3s.com/wordpress/dysfunctional-programming/kindle-programming-part-1/#comment-18</link>
		<dc:creator>Adrian</dc:creator>
		<pubDate>Tue, 28 Jun 2011 09:02:56 +0000</pubDate>
		<guid isPermaLink="false">http://ra3s.com/wordpress/dysfunctional-programming/?p=299#comment-18</guid>
		<description>Hi Aaron,

I also applied for Amazon&#039;s KDK program, but never heard a word from them apart from a confirmation email. The Kindle&#039;s a nice toy and I&#039;ve been wanting to hack something for it for a while now.

Do you know if the kindle&#039;s browser can run content directly from the kindle&#039;s storage? If yes then it would be a substitute for the kdk.

Adrian</description>
		<content:encoded><![CDATA[<p>Hi Aaron,</p>
<p>I also applied for Amazon&#8217;s KDK program, but never heard a word from them apart from a confirmation email. The Kindle&#8217;s a nice toy and I&#8217;ve been wanting to hack something for it for a while now.</p>
<p>Do you know if the kindle&#8217;s browser can run content directly from the kindle&#8217;s storage? If yes then it would be a substitute for the kdk.</p>
<p>Adrian</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Python debate on Tail Calls by Bondage and Discipline Python &#124; Dysfunctional Programming</title>
		<link>http://ra3s.com/wordpress/dysfunctional-programming/the-python-debate-on-tail-calls/#comment-6</link>
		<dc:creator>Bondage and Discipline Python &#124; Dysfunctional Programming</dc:creator>
		<pubDate>Fri, 18 Mar 2011 05:02:29 +0000</pubDate>
		<guid isPermaLink="false">http://ra3s.com/wordpress/dysfunctional-programming/2009/05/18/the-python-debate-on-tail-calls/#comment-6</guid>
		<description>[...] one way to do it that he picked (note that his blog post and followups contain a large number of factual errors; read it as an opinion piece [...] </description>
		<content:encoded><![CDATA[<p>[...] one way to do it that he picked (note that his blog post and followups contain a large number of factual errors; read it as an opinion piece [...] </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PDC10: Future of C# and Visual Basic by bao</title>
		<link>http://ra3s.com/wordpress/dysfunctional-programming/pdc10-future-of-c-and-visual-basic/#comment-16</link>
		<dc:creator>bao</dc:creator>
		<pubDate>Thu, 04 Nov 2010 17:48:37 +0000</pubDate>
		<guid isPermaLink="false">http://ra3s.com/wordpress/dysfunctional-programming/?p=268#comment-16</guid>
		<description>I wonder how similar Microsoft&#039;s C# compiler as a service implementation will be to Mono&#039;s: http://tirania.org/blog/archive/2010/Apr-27.html</description>
		<content:encoded><![CDATA[<p>I wonder how similar Microsoft&#8217;s C# compiler as a service implementation will be to Mono&#8217;s: <a href="http://tirania.org/blog/archive/2010/Apr-27.html" rel="nofollow">http://tirania.org/blog/archive/2010/Apr-27.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle sues Google over Android and Java by Jason</title>
		<link>http://ra3s.com/wordpress/dysfunctional-programming/oracle-sues-google-over-android-and-java-relevant-results-cnet-news/#comment-15</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Fri, 13 Aug 2010 04:27:54 +0000</pubDate>
		<guid isPermaLink="false">http://ra3s.com/wordpress/dysfunctional-programming/?p=254#comment-15</guid>
		<description>So Oracle is using these Java patents to turn into a patent troll? Anti-yay.</description>
		<content:encoded><![CDATA[<p>So Oracle is using these Java patents to turn into a patent troll? Anti-yay.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

