<?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"
	>
<channel>
	<title>Comments for Ruslan's Blog</title>
	<atom:link href="http://ruslanspivak.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://ruslanspivak.com</link>
	<description>Musings on dynamic languages and more than that</description>
	<pubDate>Sun, 06 Jul 2008 16:43:40 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on Autovivication and Y Combinator in Python by Ur</title>
		<link>http://ruslanspivak.com/2008/04/14/autovivication-and-y-combinator-in-python/#comment-334</link>
		<dc:creator>Ur</dc:creator>
		<pubDate>Thu, 03 Jul 2008 16:59:16 +0000</pubDate>
		<guid isPermaLink="false">http://ruslanspivak.wordpress.com/?p=29#comment-334</guid>
		<description>Yes, You right. 
But maybe its possible to modify this to access without square brackets in attribute style. Instead d['q']['w']['r'] = 777 =&#62; d.q.w.r = 777 ???
already seen that this is possible, but sorry, I don't remember where...</description>
		<content:encoded><![CDATA[<p>Yes, You right.<br />
But maybe its possible to modify this to access without square brackets in attribute style. Instead d['q']['w']['r'] = 777 =&gt; d.q.w.r = 777 ???<br />
already seen that this is possible, but sorry, I don&#8217;t remember where&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autovivication and Y Combinator in Python by Ruslan Spivak</title>
		<link>http://ruslanspivak.com/2008/04/14/autovivication-and-y-combinator-in-python/#comment-333</link>
		<dc:creator>Ruslan Spivak</dc:creator>
		<pubDate>Thu, 03 Jul 2008 16:16:14 +0000</pubDate>
		<guid isPermaLink="false">http://ruslanspivak.wordpress.com/?p=29#comment-333</guid>
		<description>Yep, though here I showed additional ways to implement autovivication.

Here is from the same author with my comment:
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/537637</description>
		<content:encoded><![CDATA[<p>Yep, though here I showed additional ways to implement autovivication.</p>
<p>Here is from the same author with my comment:<br />
<a href="http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/537637" rel="nofollow">http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/537637</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autovivication and Y Combinator in Python by Ur</title>
		<link>http://ruslanspivak.com/2008/04/14/autovivication-and-y-combinator-in-python/#comment-332</link>
		<dc:creator>Ur</dc:creator>
		<pubDate>Thu, 03 Jul 2008 15:48:11 +0000</pubDate>
		<guid isPermaLink="false">http://ruslanspivak.wordpress.com/?p=29#comment-332</guid>
		<description>already seen here: 
http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/537636</description>
		<content:encoded><![CDATA[<p>already seen here:<br />
<a href="http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/537636" rel="nofollow">http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/537636</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Erlang for Python programmers: Part I by Ruslan Spivak</title>
		<link>http://ruslanspivak.com/2007/09/09/erlang-for-python-programmers-part-i/#comment-324</link>
		<dc:creator>Ruslan Spivak</dc:creator>
		<pubDate>Sun, 20 Apr 2008 02:49:42 +0000</pubDate>
		<guid isPermaLink="false">http://ruslanspivak.com/2007/09/09/erlang-for-python-programmers-part-i/#comment-324</guid>
		<description>I think it could be related to copy/paste error in your code.
In io:format there should be double quotes around X = ~p~n, i.e
io:format("X = ~p~n", [X])</description>
		<content:encoded><![CDATA[<p>I think it could be related to copy/paste error in your code.<br />
In io:format there should be double quotes around X = ~p~n, i.e<br />
io:format(&#8221;X = ~p~n&#8221;, [X])</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Erlang for Python programmers: Part I by Joe</title>
		<link>http://ruslanspivak.com/2007/09/09/erlang-for-python-programmers-part-i/#comment-323</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Sun, 20 Apr 2008 01:11:58 +0000</pubDate>
		<guid isPermaLink="false">http://ruslanspivak.com/2007/09/09/erlang-for-python-programmers-part-i/#comment-323</guid>
		<description>Was there a syntax change in 5.6.2? This isn't quite working for me:

$ erl
Erlang (BEAM) emulator version 5.6.2 [source] [async-threads:0] [kernel-poll:false]

Eshell V5.6.2  (abort with ^G)
1&#62; Print_val = fun(X) -&#62; io:format(.X = ~p~n., [X]), X*2 end.
* 1: syntax error before: X</description>
		<content:encoded><![CDATA[<p>Was there a syntax change in 5.6.2? This isn&#8217;t quite working for me:</p>
<p>$ erl<br />
Erlang (BEAM) emulator version 5.6.2 [source] [async-threads:0] [kernel-poll:false]</p>
<p>Eshell V5.6.2  (abort with ^G)<br />
1&gt; Print_val = fun(X) -&gt; io:format(.X = ~p~n., [X]), X*2 end.<br />
* 1: syntax error before: X</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autovivication and Y Combinator in Python by Maxime Biais</title>
		<link>http://ruslanspivak.com/2008/04/14/autovivication-and-y-combinator-in-python/#comment-320</link>
		<dc:creator>Maxime Biais</dc:creator>
		<pubDate>Wed, 16 Apr 2008 09:21:48 +0000</pubDate>
		<guid isPermaLink="false">http://ruslanspivak.wordpress.com/?p=29#comment-320</guid>
		<description>Thanks for the tip, I often write code with defaultdict(dict) but i never had to use a deeper dict structure.</description>
		<content:encoded><![CDATA[<p>Thanks for the tip, I often write code with defaultdict(dict) but i never had to use a deeper dict structure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Erlang binary search by Array module in Erlang &#171; Ruslan&#8217;s Blog</title>
		<link>http://ruslanspivak.com/2007/08/15/my-erlang-binary-search/#comment-318</link>
		<dc:creator>Array module in Erlang &#171; Ruslan&#8217;s Blog</dc:creator>
		<pubDate>Mon, 14 Apr 2008 03:47:31 +0000</pubDate>
		<guid isPermaLink="false">http://ruslanspivak.wordpress.com/2007/08/15/my-erlang-binary-search/#comment-318</guid>
		<description>[...] binary search algorithm can be implemented quite efficiently with functional [...]</description>
		<content:encoded><![CDATA[<p>[...] binary search algorithm can be implemented quite efficiently with functional [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Delete blank lines with flush-lines by Jesper</title>
		<link>http://ruslanspivak.com/2007/10/22/delete-blank-lines-with-flush-lines/#comment-315</link>
		<dc:creator>Jesper</dc:creator>
		<pubDate>Wed, 20 Feb 2008 14:04:03 +0000</pubDate>
		<guid isPermaLink="false">http://ruslanspivak.com/2007/10/22/delete-blank-lines-with-flush-lines/#comment-315</guid>
		<description>Give M-x delete-trailing-whitespace RET a go too ;)</description>
		<content:encoded><![CDATA[<p>Give M-x delete-trailing-whitespace RET a go too ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Erlang for Python programmers: Intro by &#60;blog&#62; interfce.com &#60;/blog&#62; &#187; Blog Archive &#187; bookmark dump</title>
		<link>http://ruslanspivak.com/2007/08/27/erlang-for-python-programmers-intro/#comment-165</link>
		<dc:creator>&#60;blog&#62; interfce.com &#60;/blog&#62; &#187; Blog Archive &#187; bookmark dump</dc:creator>
		<pubDate>Tue, 20 Nov 2007 20:30:43 +0000</pubDate>
		<guid isPermaLink="false">http://ruslanspivak.com/2007/08/27/erlang-for-python-programmers-intro/#comment-165</guid>
		<description>[...] Erlang for Python programmers: Intro « Ruslan’s Blog [...]</description>
		<content:encoded><![CDATA[<p>[...] Erlang for Python programmers: Intro « Ruslan’s Blog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Erlang for Python programmers: Part V by Andy Freeman</title>
		<link>http://ruslanspivak.com/2007/11/16/erlang-for-python-programmers-part-v/#comment-156</link>
		<dc:creator>Andy Freeman</dc:creator>
		<pubDate>Fri, 16 Nov 2007 16:35:57 +0000</pubDate>
		<guid isPermaLink="false">http://ruslanspivak.com/2007/11/16/erlang-for-python-programmers-part-v/#comment-156</guid>
		<description>Erlang makes it difficult to get values out of list comprehensions.  The second rule is especially annoying because non-local variables are the typical mechanism for doing so.</description>
		<content:encoded><![CDATA[<p>Erlang makes it difficult to get values out of list comprehensions.  The second rule is especially annoying because non-local variables are the typical mechanism for doing so.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
