<?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>Tue, 31 Jan 2012 19:15:34 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: glennF</title>
		<link>http://computationallegalstudies.com/2009/10/11/programming-dynamic-models-in-python/#comment-757</link>
		<dc:creator>glennF</dc:creator>
		<pubDate>Sat, 02 Oct 2010 08:54:56 +0000</pubDate>
		<guid isPermaLink="false">http://computationallegalstudies.com/?p=2192#comment-757</guid>
		<description>I have to agree with @VLDR. To use long variable names in mathematical formula vcan obscure the formula and introduce mistakes. I am in favour of keeping the code similar to the mathematical formula (but maybe that is because I am a mathematician and write mathematical programs for a living). In other cases, then I think it is good practice to use long and descriptive variable names.</description>
		<content:encoded><![CDATA[<p>I have to agree with @VLDR. To use long variable names in mathematical formula vcan obscure the formula and introduce mistakes. I am in favour of keeping the code similar to the mathematical formula (but maybe that is because I am a mathematician and write mathematical programs for a living). In other cases, then I think it is good practice to use long and descriptive variable names.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: erik</title>
		<link>http://computationallegalstudies.com/2009/10/11/programming-dynamic-models-in-python/#comment-756</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-756</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-755</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-755</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-754</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-754</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-753</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-753</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-752</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-752</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-751</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-751</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>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using apc
Page Caching using apc
Database Caching 1/4 queries in 0.001 seconds using apc
Object Caching 280/284 objects using apc

Served from: computationallegalstudies.com @ 2012-02-07 15:03:21 -->
