<?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: On Django</title>
	<atom:link href="http://www.paragiraffe.com/2006/12/11/on-django/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.paragiraffe.com/2006/12/11/on-django/</link>
	<description>I love arugula.</description>
	<lastBuildDate>Wed, 05 May 2010 18:13:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: very oddd</title>
		<link>http://www.paragiraffe.com/2006/12/11/on-django/#comment-6616</link>
		<dc:creator>very oddd</dc:creator>
		<pubDate>Thu, 14 Dec 2006 23:51:17 +0000</pubDate>
		<guid isPermaLink="false">#comment-6616</guid>
		<description>
&lt;p&gt;Very nice and good work on building your own!
&lt;/p&gt;


</description>
		<content:encoded><![CDATA[<p>Very nice and good work on building your own!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: cristinamarie</title>
		<link>http://www.paragiraffe.com/2006/12/11/on-django/#comment-6615</link>
		<dc:creator>cristinamarie</dc:creator>
		<pubDate>Thu, 14 Dec 2006 02:40:50 +0000</pubDate>
		<guid isPermaLink="false">#comment-6615</guid>
		<description>
&lt;p&gt;It all sounds complicated and I understand none of it, but it looks fab.
&lt;/p&gt;


</description>
		<content:encoded><![CDATA[<p>It all sounds complicated and I understand none of it, but it looks fab.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: C</title>
		<link>http://www.paragiraffe.com/2006/12/11/on-django/#comment-6614</link>
		<dc:creator>C</dc:creator>
		<pubDate>Tue, 12 Dec 2006 16:33:10 +0000</pubDate>
		<guid isPermaLink="false">#comment-6614</guid>
		<description>
&lt;p&gt;I suppose this is more attributable to your design, but I love the cleanness (is that even a word?) of the whole thing. It seems to move quickly and it just looks nice.
&lt;/p&gt;


</description>
		<content:encoded><![CDATA[<p>I suppose this is more attributable to your design, but I love the cleanness (is that even a word?) of the whole thing. It seems to move quickly and it just looks nice.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.paragiraffe.com/2006/12/11/on-django/#comment-6613</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Tue, 12 Dec 2006 13:01:34 +0000</pubDate>
		<guid isPermaLink="false">#comment-6613</guid>
		<description>
&lt;p&gt;As a long time MT user, and one who is still languishing at version 2.66, I would be very interested in a more detailed review of what your Django blog management system looks like.
&lt;/p&gt;


</description>
		<content:encoded><![CDATA[<p>As a long time MT user, and one who is still languishing at version 2.66, I would be very interested in a more detailed review of what your Django blog management system looks like.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon Willison</title>
		<link>http://www.paragiraffe.com/2006/12/11/on-django/#comment-6612</link>
		<dc:creator>Simon Willison</dc:creator>
		<pubDate>Tue, 12 Dec 2006 11:39:43 +0000</pubDate>
		<guid isPermaLink="false">#comment-6612</guid>
		<description>
&lt;p&gt;Rich: That&#8217;s not pure Ruby code, it&#8217;s embedded Ruby - Ruby embedded in HTML. That said, the Django equivalent (which uses its own template language with syntax inspired by Python) would look like this:
&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;{% for s in students %}{{ s.name }}{% endfor %}
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;In pure Python, for loops tend to look like this:
&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;for s in student:
    print s
&lt;/code&gt;&lt;/pre&gt;

</description>
		<content:encoded><![CDATA[<p>Rich: That&#8217;s not pure Ruby code, it&#8217;s embedded Ruby &#8211; Ruby embedded in HTML. That said, the Django equivalent (which uses its own template language with syntax inspired by Python) would look like this:
</p>
<pre><code>{% for s in students %}{{ s.name }}{% endfor %}
</code></pre>
<p>In pure Python, for loops tend to look like this:
</p>
<pre><code>for s in student:
    print s
</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich</title>
		<link>http://www.paragiraffe.com/2006/12/11/on-django/#comment-6611</link>
		<dc:creator>Rich</dc:creator>
		<pubDate>Tue, 12 Dec 2006 11:15:04 +0000</pubDate>
		<guid isPermaLink="false">#comment-6611</guid>
		<description>
&lt;p&gt;Just how elegant or straight-forward is Python compared to Ruby? &lt;a href=&quot;http://www.digital-web.com/articles/ruby_on_rails_for_the_rest_of_us/&quot;&gt;Digital Web&#8217;s article&lt;/a&gt; on Ruby on Rails has this snippet of code:
&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&lt;% @students.each do &#124;s&#124; %&gt;
&lt;p&gt;&lt;%= s.name %&gt;&lt;/p&gt;
&lt;% end %&gt;
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;I don&#8217;t really know Ruby, but that looks easy enough that I know it&#8217;s a loop and I could spend a few minutes to know what it&#8217;s doing. Is the equivalent in Python any easier?
&lt;/p&gt;
&lt;p&gt;And what about hosting? A lot of the tutorials (and for Ruby on Rails) seem to be an installation on a local (or purely clean, remote) system. If it&#8217;s already installed, how do you go about calling the installation? Or make templates?
&lt;/p&gt;
&lt;p&gt;P.S. I miss the live comment preview.
&lt;/p&gt;


</description>
		<content:encoded><![CDATA[<p>Just how elegant or straight-forward is Python compared to Ruby? <a href="http://www.digital-web.com/articles/ruby_on_rails_for_the_rest_of_us/">Digital Web&#8217;s article</a> on Ruby on Rails has this snippet of code:
</p>
<pre><code>&lt;% @students.each do |s| %&gt;
&lt;p&gt;&lt;%= s.name %&gt;&lt;/p&gt;
&lt;% end %&gt;
</code></pre>
<p>I don&#8217;t really know Ruby, but that looks easy enough that I know it&#8217;s a loop and I could spend a few minutes to know what it&#8217;s doing. Is the equivalent in Python any easier?
</p>
<p>And what about hosting? A lot of the tutorials (and for Ruby on Rails) seem to be an installation on a local (or purely clean, remote) system. If it&#8217;s already installed, how do you go about calling the installation? Or make templates?
</p>
<p>P.S. I miss the live comment preview.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suki</title>
		<link>http://www.paragiraffe.com/2006/12/11/on-django/#comment-6610</link>
		<dc:creator>suki</dc:creator>
		<pubDate>Tue, 12 Dec 2006 09:29:42 +0000</pubDate>
		<guid isPermaLink="false">#comment-6610</guid>
		<description>
&lt;p&gt;thanks!  for some weird reason, the RSS wasn&#8217;t updating to show this post.  yay for non-programming attempts at django!
&lt;/p&gt;


</description>
		<content:encoded><![CDATA[<p>thanks!  for some weird reason, the RSS wasn&#8217;t updating to show this post.  yay for non-programming attempts at django!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
