<?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: Programming Dynamic Models in Python</title>
	<atom:link href="http://computationallegalstudies.com/2009/10/11/programming-dynamic-models-in-python/feed/" rel="self" type="application/rss+xml" />
	<link>http://computationallegalstudies.com/2009/10/11/programming-dynamic-models-in-python/</link>
	<description></description>
	<lastBuildDate>Thu, 25 Feb 2010 01:48:35 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: erik</title>
		<link>http://computationallegalstudies.com/2009/10/11/programming-dynamic-models-in-python/comment-page-1/#comment-314</link>
		<dc:creator>erik</dc:creator>
		<pubDate>Mon, 19 Oct 2009 19:30:15 +0000</pubDate>
		<guid isPermaLink="false">http://computationallegalstudies.com/?p=2192#comment-314</guid>
		<description>&lt;a href=&quot;#comment-307&quot; rel=&quot;nofollow&quot;&gt;@VLDR&lt;/a&gt; 
There&#039;s nothing wrong with this code. S, I and R are obvious acronyms for the numbers of susceptible, infected and recovered. It&#039;s standard to do this (google &quot;SIR model&quot;).</description>
		<content:encoded><![CDATA[<p><a href="#comment-307" rel="nofollow">@VLDR</a><br />
There&#8217;s nothing wrong with this code. S, I and R are obvious acronyms for the numbers of susceptible, infected and recovered. It&#8217;s standard to do this (google &#8220;SIR model&#8221;).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven Oldner</title>
		<link>http://computationallegalstudies.com/2009/10/11/programming-dynamic-models-in-python/comment-page-1/#comment-311</link>
		<dc:creator>Steven Oldner</dc:creator>
		<pubDate>Mon, 12 Oct 2009 18:02:16 +0000</pubDate>
		<guid isPermaLink="false">http://computationallegalstudies.com/?p=2192#comment-311</guid>
		<description>LOL! Should have said I now know something more I didn&#039;t before!
Thanks again.</description>
		<content:encoded><![CDATA[<p>LOL! Should have said I now know something more I didn&#8217;t before!<br />
Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steven Oldner</title>
		<link>http://computationallegalstudies.com/2009/10/11/programming-dynamic-models-in-python/comment-page-1/#comment-310</link>
		<dc:creator>Steven Oldner</dc:creator>
		<pubDate>Mon, 12 Oct 2009 17:59:51 +0000</pubDate>
		<guid isPermaLink="false">http://computationallegalstudies.com/?p=2192#comment-310</guid>
		<description>At my work, we write it first to get the logic working, then re-write to make the code standarized and optimized.  So your python code is good.

What I found meaningful is how you used it.  I now something I didn&#039;t before, and thanks to you code, have a starting point should I use need it.  

I&#039;m looking forward to more.

Thanks!</description>
		<content:encoded><![CDATA[<p>At my work, we write it first to get the logic working, then re-write to make the code standarized and optimized.  So your python code is good.</p>
<p>What I found meaningful is how you used it.  I now something I didn&#8217;t before, and thanks to you code, have a starting point should I use need it.  </p>
<p>I&#8217;m looking forward to more.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rantenki</title>
		<link>http://computationallegalstudies.com/2009/10/11/programming-dynamic-models-in-python/comment-page-1/#comment-309</link>
		<dc:creator>Rantenki</dc:creator>
		<pubDate>Mon, 12 Oct 2009 16:26:23 +0000</pubDate>
		<guid isPermaLink="false">http://computationallegalstudies.com/?p=2192#comment-309</guid>
		<description>Unlike VLDR, I did read the article. I don&#039;t like his tone very much, but he is right that your use of single letter variable names is bad form. Comments are useful for deciphering the code, but susceptibles = 1000 #number of susceptibles, etc. would not add much typing, and would greatly increase legibility.

Perhaps the most important core tenet of python is that code is read far more often than it is written, so legibility is of paramount importance.

Other than that, this is a good starting point for new programmers, and I am glad to see python taking such a large role in education nowadays (as opposed to icky icky java).</description>
		<content:encoded><![CDATA[<p>Unlike VLDR, I did read the article. I don&#8217;t like his tone very much, but he is right that your use of single letter variable names is bad form. Comments are useful for deciphering the code, but susceptibles = 1000 #number of susceptibles, etc. would not add much typing, and would greatly increase legibility.</p>
<p>Perhaps the most important core tenet of python is that code is read far more often than it is written, so legibility is of paramount importance.</p>
<p>Other than that, this is a good starting point for new programmers, and I am glad to see python taking such a large role in education nowadays (as opposed to icky icky java).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mjbommar</title>
		<link>http://computationallegalstudies.com/2009/10/11/programming-dynamic-models-in-python/comment-page-1/#comment-308</link>
		<dc:creator>mjbommar</dc:creator>
		<pubDate>Mon, 12 Oct 2009 15:40:19 +0000</pubDate>
		<guid isPermaLink="false">http://computationallegalstudies.com/?p=2192#comment-308</guid>
		<description>&lt;a href=&quot;#comment-307&quot; rel=&quot;nofollow&quot;&gt;@VLDR&lt;/a&gt; 
Maybe you missed the part where we explain that this is part of a set of tutorials for those new to programming.  Maybe you missed the part where we indicate that these variables are named to correspond with the variables from the differential equation model.

Or maybe you&#039;re just a troll and missed a proper raising.</description>
		<content:encoded><![CDATA[<p><a href="#comment-307" rel="nofollow">@VLDR</a><br />
Maybe you missed the part where we explain that this is part of a set of tutorials for those new to programming.  Maybe you missed the part where we indicate that these variables are named to correspond with the variables from the differential equation model.</p>
<p>Or maybe you&#8217;re just a troll and missed a proper raising.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VLDR</title>
		<link>http://computationallegalstudies.com/2009/10/11/programming-dynamic-models-in-python/comment-page-1/#comment-307</link>
		<dc:creator>VLDR</dc:creator>
		<pubDate>Mon, 12 Oct 2009 15:23:42 +0000</pubDate>
		<guid isPermaLink="false">http://computationallegalstudies.com/?p=2192#comment-307</guid>
		<description>I looked at the code before reading the article and decided not to bother.

S I R N t .. ?
sList iList rList?

Where the f*ck did you learn to program?</description>
		<content:encoded><![CDATA[<p>I looked at the code before reading the article and decided not to bother.</p>
<p>S I R N t .. ?<br />
sList iList rList?</p>
<p>Where the f*ck did you learn to program?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
