<?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: Why I&#8217;m hooked on parameters</title>
	<atom:link href="http://blog.tplus1.com/index.php/2009/10/14/why-im-hooked-on-parameters/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.tplus1.com/index.php/2009/10/14/why-im-hooked-on-parameters/</link>
	<description>Programming, gardening, economics, life in Cleveland Heights</description>
	<lastBuildDate>Sat, 14 Aug 2010 09:05:49 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: nokfarang001</title>
		<link>http://blog.tplus1.com/index.php/2009/10/14/why-im-hooked-on-parameters/comment-page-1/#comment-2895</link>
		<dc:creator>nokfarang001</dc:creator>
		<pubDate>Thu, 12 Nov 2009 18:21:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tplus1.com/?p=459#comment-2895</guid>
		<description>Thank you for share source code.</description>
		<content:encoded><![CDATA[<p>Thank you for share source code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Wilson</title>
		<link>http://blog.tplus1.com/index.php/2009/10/14/why-im-hooked-on-parameters/comment-page-1/#comment-2725</link>
		<dc:creator>Matt Wilson</dc:creator>
		<pubDate>Sat, 17 Oct 2009 23:55:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tplus1.com/?p=459#comment-2725</guid>
		<description>Marius -- what text editors do that?  This code is from an open-source&lt;br&gt;project with a user base of one (me), but I&#039;d like to make it useful&lt;br&gt;for others.</description>
		<content:encoded><![CDATA[<p>Marius &#8212; what text editors do that?  This code is from an open-source<br />project with a user base of one (me), but I&#39;d like to make it useful<br />for others.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marius Gedminas</title>
		<link>http://blog.tplus1.com/index.php/2009/10/14/why-im-hooked-on-parameters/comment-page-1/#comment-2724</link>
		<dc:creator>Marius Gedminas</dc:creator>
		<pubDate>Sat, 17 Oct 2009 23:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tplus1.com/?p=459#comment-2724</guid>
		<description>Looking at the code I wondered slightly whether it&#039;ll work with text editors that don&#039;t overwrite the file in place but instead rename the original to *.bak and create a new file with the same name.</description>
		<content:encoded><![CDATA[<p>Looking at the code I wondered slightly whether it&#39;ll work with text editors that don&#39;t overwrite the file in place but instead rename the original to *.bak and create a new file with the same name.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Wilson</title>
		<link>http://blog.tplus1.com/index.php/2009/10/14/why-im-hooked-on-parameters/comment-page-1/#comment-2709</link>
		<dc:creator>Matt Wilson</dc:creator>
		<pubDate>Thu, 15 Oct 2009 16:40:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tplus1.com/?p=459#comment-2709</guid>
		<description>Yeah, before I ever heard of unit testing or mock objects, I would do&lt;br&gt;most of my debugging by working in an interactive session, and just&lt;br&gt;run my program in tiny little pieces like that.&lt;br&gt;&lt;br&gt;When I worked with other programmers, it would drive me nuts to load&lt;br&gt;up some colleague&#039;s code into a session, and I&#039;d try to instantiate&lt;br&gt;some class that was defined like this:&lt;br&gt;&lt;code&gt;&lt;br&gt;class C(object):&lt;br&gt;&lt;br&gt;    def __init__(self):&lt;br&gt;&lt;/code&gt;&lt;br&gt;&lt;br&gt;But when I did C(), the initializer would blow up because of some&lt;br&gt;missing environmental configuration.&lt;br&gt;&lt;br&gt;I don&#039;t much like the strict TDD mindset, but I do love how they&#039;re&lt;br&gt;getting people to make dependencies more obvious.&lt;br&gt;&lt;br&gt;Thanks for the comment!</description>
		<content:encoded><![CDATA[<p>Yeah, before I ever heard of unit testing or mock objects, I would do<br />most of my debugging by working in an interactive session, and just<br />run my program in tiny little pieces like that.</p>
<p>When I worked with other programmers, it would drive me nuts to load<br />up some colleague&#39;s code into a session, and I&#39;d try to instantiate<br />some class that was defined like this:<br /><code>&lt;br&gt;class C(object):&lt;br&gt;&lt;br&gt;&nbsp;&nbsp;&nbsp;&nbsp;def __init__(self):&lt;br&gt;</code></p>
<p>But when I did C(), the initializer would blow up because of some<br />missing environmental configuration.</p>
<p>I don&#39;t much like the strict TDD mindset, but I do love how they&#39;re<br />getting people to make dependencies more obvious.</p>
<p>Thanks for the comment!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gregg</title>
		<link>http://blog.tplus1.com/index.php/2009/10/14/why-im-hooked-on-parameters/comment-page-1/#comment-2708</link>
		<dc:creator>Gregg</dc:creator>
		<pubDate>Thu, 15 Oct 2009 15:46:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tplus1.com/?p=459#comment-2708</guid>
		<description>This is a pretty good way to make your stuff easier to unit-test too... You can mock quite a bit more this way.</description>
		<content:encoded><![CDATA[<p>This is a pretty good way to make your stuff easier to unit-test too&#8230; You can mock quite a bit more this way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt Wilson</title>
		<link>http://blog.tplus1.com/index.php/2009/10/14/why-im-hooked-on-parameters/comment-page-1/#comment-2706</link>
		<dc:creator>Matt Wilson</dc:creator>
		<pubDate>Thu, 15 Oct 2009 13:48:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tplus1.com/?p=459#comment-2706</guid>
		<description>Ben -- thanks for the tip!  I&#039;ve been looking for a new language to&lt;br&gt;study.  That one sounds really interesting.</description>
		<content:encoded><![CDATA[<p>Ben &#8212; thanks for the tip!  I&#39;ve been looking for a new language to<br />study.  That one sounds really interesting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://blog.tplus1.com/index.php/2009/10/14/why-im-hooked-on-parameters/comment-page-1/#comment-2702</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Thu, 15 Oct 2009 08:59:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.tplus1.com/?p=459#comment-2702</guid>
		<description>You should take a look at Newspeak, where everything is parameterized, including modules used by other modules</description>
		<content:encoded><![CDATA[<p>You should take a look at Newspeak, where everything is parameterized, including modules used by other modules</p>
]]></content:encoded>
	</item>
</channel>
</rss>
