<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for I Might Be Wrong</title>
	<atom:link href="http://faceted.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://faceted.wordpress.com</link>
	<description>Leif Ryge's weblog</description>
	<lastBuildDate>Fri, 31 Oct 2008 20:41:38 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Computing permutations with a recursive generator expression by William Bowers on RefactorMyCode.com</title>
		<link>http://faceted.wordpress.com/2008/10/21/computing-permutations-with-a-recursive-generator-expression/#comment-26</link>
		<dc:creator>William Bowers on RefactorMyCode.com</dc:creator>
		<pubDate>Fri, 31 Oct 2008 20:41:38 +0000</pubDate>
		<guid isPermaLink="false">http://faceted.wordpress.com/?p=24#comment-26</guid>
		<description>&lt;strong&gt;Computing permutations with a recursive generator expression...&lt;/strong&gt;

That&#039;s very true. In this case it would be better to go with A, as you probably don&#039;t want that last call to permute() to go off. I prefer B in case where it doesn&#039;t really matter, like when Z and Y are both strings or numbers, or when both Z and Y ...</description>
		<content:encoded><![CDATA[<p><strong>Computing permutations with a recursive generator expression&#8230;</strong></p>
<p>That&#8217;s very true. In this case it would be better to go with A, as you probably don&#8217;t want that last call to permute() to go off. I prefer B in case where it doesn&#8217;t really matter, like when Z and Y are both strings or numbers, or when both Z and Y &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Computing permutations with a recursive generator expression by Leif Ryge on RefactorMyCode.com</title>
		<link>http://faceted.wordpress.com/2008/10/21/computing-permutations-with-a-recursive-generator-expression/#comment-25</link>
		<dc:creator>Leif Ryge on RefactorMyCode.com</dc:creator>
		<pubDate>Fri, 31 Oct 2008 06:56:10 +0000</pubDate>
		<guid isPermaLink="false">http://faceted.wordpress.com/?p=24#comment-25</guid>
		<description>&lt;strong&gt;Computing permutations with a recursive generator expression...&lt;/strong&gt;

Answering my own question: the caveat to idiom_B is that it isn&#039;t short-circuiting. So, if instead of z and y we had z() and y() then evaluating the expression causes BOTH functions to be called (regardless of the value of x) in idiom_B, while in A an...</description>
		<content:encoded><![CDATA[<p><strong>Computing permutations with a recursive generator expression&#8230;</strong></p>
<p>Answering my own question: the caveat to idiom_B is that it isn&#8217;t short-circuiting. So, if instead of z and y we had z() and y() then evaluating the expression causes BOTH functions to be called (regardless of the value of x) in idiom_B, while in A an&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Computing permutations with a recursive generator expression by Leif Ryge on RefactorMyCode.com</title>
		<link>http://faceted.wordpress.com/2008/10/21/computing-permutations-with-a-recursive-generator-expression/#comment-24</link>
		<dc:creator>Leif Ryge on RefactorMyCode.com</dc:creator>
		<pubDate>Thu, 30 Oct 2008 20:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://faceted.wordpress.com/?p=24#comment-24</guid>
		<description>&lt;strong&gt;Computing permutations with a recursive generator expression...&lt;/strong&gt;

Thanks! I was actually unaware that booleans could be used as getitem keys, which is a very useful trick. I wonder why I&#039;ve seen the horribly ugly idiom_A [below] in wide use instead of the much more elegant B....</description>
		<content:encoded><![CDATA[<p><strong>Computing permutations with a recursive generator expression&#8230;</strong></p>
<p>Thanks! I was actually unaware that booleans could be used as getitem keys, which is a very useful trick. I wonder why I&#8217;ve seen the horribly ugly idiom_A [below] in wide use instead of the much more elegant B&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Computing permutations with a recursive generator expression by wbowers.myopenid.com on RefactorMyCode.com</title>
		<link>http://faceted.wordpress.com/2008/10/21/computing-permutations-with-a-recursive-generator-expression/#comment-23</link>
		<dc:creator>wbowers.myopenid.com on RefactorMyCode.com</dc:creator>
		<pubDate>Thu, 30 Oct 2008 07:29:11 +0000</pubDate>
		<guid isPermaLink="false">http://faceted.wordpress.com/?p=24#comment-23</guid>
		<description>&lt;strong&gt;Computing permutations with a recursive generator expression...&lt;/strong&gt;

First off let me say your solution is already an elegant one. I made a couple changes. First off you&#039;ll notice I turn the list into a Set which removes any duplicate values (that may or may not be what you want). Secondly, I shortened your list compre...</description>
		<content:encoded><![CDATA[<p><strong>Computing permutations with a recursive generator expression&#8230;</strong></p>
<p>First off let me say your solution is already an elegant one. I made a couple changes. First off you&#8217;ll notice I turn the list into a Set which removes any duplicate values (that may or may not be what you want). Secondly, I shortened your list compre&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Computing permutations with a recursive generator expression by Auron on RefactorMyCode.com</title>
		<link>http://faceted.wordpress.com/2008/10/21/computing-permutations-with-a-recursive-generator-expression/#comment-22</link>
		<dc:creator>Auron on RefactorMyCode.com</dc:creator>
		<pubDate>Wed, 22 Oct 2008 08:20:05 +0000</pubDate>
		<guid isPermaLink="false">http://faceted.wordpress.com/?p=24#comment-22</guid>
		<description>&lt;strong&gt;Computing permutations with a recursive generator expression...&lt;/strong&gt;

Your code works great but addresses a different problem than this one (http://refactormycode.com/codes/523-permutation-of-values), which is really not a permutation (it was my fault).

I like your one-line solution, although I find it difficult to unde...</description>
		<content:encoded><![CDATA[<p><strong>Computing permutations with a recursive generator expression&#8230;</strong></p>
<p>Your code works great but addresses a different problem than this one (<a href="http://refactormycode.com/codes/523-permutation-of-values)" rel="nofollow">http://refactormycode.com/codes/523-permutation-of-values)</a>, which is really not a permutation (it was my fault).</p>
<p>I like your one-line solution, although I find it difficult to unde&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LCARS 4.2 released by chatterbox</title>
		<link>http://faceted.wordpress.com/2008/09/23/lcars-42-released/#comment-17</link>
		<dc:creator>chatterbox</dc:creator>
		<pubDate>Mon, 29 Sep 2008 19:17:11 +0000</pubDate>
		<guid isPermaLink="false">http://faceted.wordpress.com/?p=17#comment-17</guid>
		<description>While I enjoyed the previous LCARS themes, I just couldn&#039;t keep them around... But this one just works great and looks great!  Makes me look back and be very happy that ya&#039;ll continued to maintain the LCARS theme after the N800 came out.</description>
		<content:encoded><![CDATA[<p>While I enjoyed the previous LCARS themes, I just couldn&#8217;t keep them around&#8230; But this one just works great and looks great!  Makes me look back and be very happy that ya&#8217;ll continued to maintain the LCARS theme after the N800 came out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LCARS 4.2 released by ACTTPOHABT</title>
		<link>http://faceted.wordpress.com/2008/09/23/lcars-42-released/#comment-8</link>
		<dc:creator>ACTTPOHABT</dc:creator>
		<pubDate>Thu, 25 Sep 2008 01:47:17 +0000</pubDate>
		<guid isPermaLink="false">http://faceted.wordpress.com/?p=17#comment-8</guid>
		<description>Thanks for your reply! I&#039;m still using it, it&#039;s awesome. We&#039;ll have to wait for Nokia updates.</description>
		<content:encoded><![CDATA[<p>Thanks for your reply! I&#8217;m still using it, it&#8217;s awesome. We&#8217;ll have to wait for Nokia updates.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LCARS 4.2 released by Leif Ryge</title>
		<link>http://faceted.wordpress.com/2008/09/23/lcars-42-released/#comment-7</link>
		<dc:creator>Leif Ryge</dc:creator>
		<pubDate>Wed, 24 Sep 2008 21:56:39 +0000</pubDate>
		<guid isPermaLink="false">http://faceted.wordpress.com/?p=17#comment-7</guid>
		<description>Those three issues are &lt;a href=&quot;http://synthesize.us/LCARS_PADD#Known_issues&quot; rel=&quot;nofollow&quot;&gt;known&lt;/a&gt; to us as maemo bugs &lt;a href=&quot;https://bugs.maemo.org/show_bug.cgi?id=3678&quot; rel=&quot;nofollow&quot;&gt;3678&lt;/a&gt;, &lt;a href=&quot;https://bugs.maemo.org/show_bug.cgi?id=3503&quot; rel=&quot;nofollow&quot;&gt;3503&lt;/a&gt;, and &lt;a href=&quot;https://bugs.maemo.org/show_bug.cgi?id=1716&quot; rel=&quot;nofollow&quot;&gt;1716&lt;/a&gt;, respectively. The chat program actually works fine after you configure its font color (Instant messaging -&gt; Tools -&gt; Settings), and it seems possible that the Application manager and RSS reader bugs might actually get fixed by Nokia in a future update to ITOS2008.</description>
		<content:encoded><![CDATA[<p>Those three issues are <a href="http://synthesize.us/LCARS_PADD#Known_issues" rel="nofollow">known</a> to us as maemo bugs <a href="https://bugs.maemo.org/show_bug.cgi?id=3678" rel="nofollow">3678</a>, <a href="https://bugs.maemo.org/show_bug.cgi?id=3503" rel="nofollow">3503</a>, and <a href="https://bugs.maemo.org/show_bug.cgi?id=1716" rel="nofollow">1716</a>, respectively. The chat program actually works fine after you configure its font color (Instant messaging -&gt; Tools -&gt; Settings), and it seems possible that the Application manager and RSS reader bugs might actually get fixed by Nokia in a future update to ITOS2008.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LCARS 4.2 released by ACTTPOHABT</title>
		<link>http://faceted.wordpress.com/2008/09/23/lcars-42-released/#comment-6</link>
		<dc:creator>ACTTPOHABT</dc:creator>
		<pubDate>Wed, 24 Sep 2008 15:07:59 +0000</pubDate>
		<guid isPermaLink="false">http://faceted.wordpress.com/?p=17#comment-6</guid>
		<description>Great job, guys!
I just love it!
Although there is couple of bugs that I&#039;ve noticed so far. Feed list in RSS Reader, application lis in Application Manager and conversations in GTalk are not readable due to using black font color on a black background.
Thank you once again!</description>
		<content:encoded><![CDATA[<p>Great job, guys!<br />
I just love it!<br />
Although there is couple of bugs that I&#8217;ve noticed so far. Feed list in RSS Reader, application lis in Application Manager and conversations in GTalk are not readable due to using black font color on a black background.<br />
Thank you once again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LCARS 4.2 released by loki</title>
		<link>http://faceted.wordpress.com/2008/09/23/lcars-42-released/#comment-5</link>
		<dc:creator>loki</dc:creator>
		<pubDate>Wed, 24 Sep 2008 00:32:06 +0000</pubDate>
		<guid isPermaLink="false">http://faceted.wordpress.com/?p=17#comment-5</guid>
		<description>The best of all themes themes before.

Very nice work, congratulations! :D

Greets, and keep up the good work!</description>
		<content:encoded><![CDATA[<p>The best of all themes themes before.</p>
<p>Very nice work, congratulations! :D</p>
<p>Greets, and keep up the good work!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
