<?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 for Tom E Stephens</title>
	<atom:link href="http://tomestephens.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://tomestephens.com</link>
	<description>Whatever interests me</description>
	<lastBuildDate>Sat, 23 Mar 2013 02:12:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on Config Files with IronPython: Overriding the ConfigurationManager by Tom E Stephens &#187; Blog Archive &#187; The Unexpected Influence of IronPython</title>
		<link>http://tomestephens.com/2011/02/making-ironpython-work-overriding-the-configurationmanager/comment-page-1/#comment-2263</link>
		<dc:creator>Tom E Stephens &#187; Blog Archive &#187; The Unexpected Influence of IronPython</dc:creator>
		<pubDate>Sat, 23 Mar 2013 02:12:59 +0000</pubDate>
		<guid isPermaLink="false">http://tomestephens.com/?p=44#comment-2263</guid>
		<description><![CDATA[[...] actually gotten a fair amount of traffic. A couple of years back I was heavily into IronPython and I found a way to use config files in the IronPython shell. It turns out that for one, I made some copy paste errors and my posted code didn&#8217;t compile [...]]]></description>
		<content:encoded><![CDATA[<p>[...] actually gotten a fair amount of traffic. A couple of years back I was heavily into IronPython and I found a way to use config files in the IronPython shell. It turns out that for one, I made some copy paste errors and my posted code didn&#8217;t compile [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Config Files with IronPython: Overriding the ConfigurationManager by Tom</title>
		<link>http://tomestephens.com/2011/02/making-ironpython-work-overriding-the-configurationmanager/comment-page-1/#comment-993</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Wed, 25 Jan 2012 16:20:55 +0000</pubDate>
		<guid isPermaLink="false">http://tomestephens.com/?p=44#comment-993</guid>
		<description><![CDATA[Well like I mentioned at the top this solution is for my use of the IronPython shell. if you&#039;re writing an app you shouldn&#039;t need it. But if you are using the shell then it will work like the example I have.

&lt;code&gt;
import clr
clr.AddReferenceToFile(&quot;ConfigurationProxy.dll&quot;)
clr.AddReference(&quot;System.Configuration&quot;)
from System.Configuration import ConfigurationManager
import ConfigurationProxy
p = ConfigurationProxy(&#039;myAlternateAppSettings.config&#039;)
p.InjectToConfigurationManager()

conn = ConfigurationManager.ConnectionStrings[&#039;myConnectionString&#039;]
&lt;/code&gt;

&lt;a href=&quot;http://tomestephens.com/2011/02/extending-my-ironpython-toolset&quot; rel=&quot;nofollow&quot;&gt;You might be interested in my other post where I use this a little more.&lt;/a&gt;]]></description>
		<content:encoded><![CDATA[<p>Well like I mentioned at the top this solution is for my use of the IronPython shell. if you&#8217;re writing an app you shouldn&#8217;t need it. But if you are using the shell then it will work like the example I have.</p>
<p><code><br />
import clr<br />
clr.AddReferenceToFile("ConfigurationProxy.dll")<br />
clr.AddReference("System.Configuration")<br />
from System.Configuration import ConfigurationManager<br />
import ConfigurationProxy<br />
p = ConfigurationProxy('myAlternateAppSettings.config')<br />
p.InjectToConfigurationManager()</p>
<p>conn = ConfigurationManager.ConnectionStrings['myConnectionString']<br />
</code></p>
<p><a href="http://tomestephens.com/2011/02/extending-my-ironpython-toolset" rel="nofollow">You might be interested in my other post where I use this a little more.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Config Files with IronPython: Overriding the ConfigurationManager by Jack</title>
		<link>http://tomestephens.com/2011/02/making-ironpython-work-overriding-the-configurationmanager/comment-page-1/#comment-989</link>
		<dc:creator>Jack</dc:creator>
		<pubDate>Wed, 25 Jan 2012 01:39:51 +0000</pubDate>
		<guid isPermaLink="false">http://tomestephens.com/?p=44#comment-989</guid>
		<description><![CDATA[Could you elaborate as to how someone could use your proxy class within an IronPython with a custom file?]]></description>
		<content:encoded><![CDATA[<p>Could you elaborate as to how someone could use your proxy class within an IronPython with a custom file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Automation &#8211; saving 15 mins/day at a time by Troy</title>
		<link>http://tomestephens.com/2011/10/automation-saving-15-minsday-at-a-time/comment-page-1/#comment-703</link>
		<dc:creator>Troy</dc:creator>
		<pubDate>Fri, 28 Oct 2011 19:33:30 +0000</pubDate>
		<guid isPermaLink="false">http://tomestephens.com/?p=105#comment-703</guid>
		<description><![CDATA[I like your tack! I was toying with creating a repo class to deal with the changes. I really like the idea of running it as a background task :)

Any how, I ended up completely rewriting it so that it checks the commit status of the repo before attempting to pull/push changes.

http://bluebill.wordpress.com/2011/10/22/mercurial-pushpull-script-with-status-checking/

cheers,
Troy]]></description>
		<content:encoded><![CDATA[<p>I like your tack! I was toying with creating a repo class to deal with the changes. I really like the idea of running it as a background task <img src='http://tomestephens.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Any how, I ended up completely rewriting it so that it checks the commit status of the repo before attempting to pull/push changes.</p>
<p><a href="http://bluebill.wordpress.com/2011/10/22/mercurial-pushpull-script-with-status-checking/" rel="nofollow">http://bluebill.wordpress.com/2011/10/22/mercurial-pushpull-script-with-status-checking/</a></p>
<p>cheers,<br />
Troy</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AutoMapper: Ups, Downs, and Implementations &#8211; Part 2 by Tom</title>
		<link>http://tomestephens.com/2010/01/automapper-ups-downs-and-implementations-part-2/comment-page-1/#comment-430</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Thu, 14 Jul 2011 18:04:45 +0000</pubDate>
		<guid isPermaLink="false">http://tomestephens.com/?p=14#comment-430</guid>
		<description><![CDATA[This is taxing my memory. I haven&#039;t been working with AutoMapper extensively much these days since all of my translation code is more or less complete and hasn&#039;t needed to be changed. I had to look through some of my other code, but it looks like I have a mistake here.

The Contacts Property on the Client Object would need to be given an explicit mapping unless there is a Contacts property on the ClientDto (which I don&#039;t believe there would be).

That said, I know some changes have been made to AutoMapper in recent releases and those may have removed the need for this. I&#039;m not sure though.
Tom]]></description>
		<content:encoded><![CDATA[<p>This is taxing my memory. I haven&#8217;t been working with AutoMapper extensively much these days since all of my translation code is more or less complete and hasn&#8217;t needed to be changed. I had to look through some of my other code, but it looks like I have a mistake here.</p>
<p>The Contacts Property on the Client Object would need to be given an explicit mapping unless there is a Contacts property on the ClientDto (which I don&#8217;t believe there would be).</p>
<p>That said, I know some changes have been made to AutoMapper in recent releases and those may have removed the need for this. I&#8217;m not sure though.<br />
Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AutoMapper: Ups, Downs, and Implementations &#8211; Part 1 by Tom</title>
		<link>http://tomestephens.com/2010/01/automapper-ups-downs-and-implementations-part-1/comment-page-1/#comment-429</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Thu, 14 Jul 2011 17:54:50 +0000</pubDate>
		<guid isPermaLink="false">http://tomestephens.com/?p=12#comment-429</guid>
		<description><![CDATA[Yes, that&#039;s correct. I&#039;ll fix the example. Thanks for pointing that out... it&#039;s been wrong for a long time :)]]></description>
		<content:encoded><![CDATA[<p>Yes, that&#8217;s correct. I&#8217;ll fix the example. Thanks for pointing that out&#8230; it&#8217;s been wrong for a long time <img src='http://tomestephens.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AutoMapper: Ups, Downs, and Implementations &#8211; Part 2 by sun1991</title>
		<link>http://tomestephens.com/2010/01/automapper-ups-downs-and-implementations-part-2/comment-page-1/#comment-420</link>
		<dc:creator>sun1991</dc:creator>
		<pubDate>Wed, 13 Jul 2011 14:02:03 +0000</pubDate>
		<guid isPermaLink="false">http://tomestephens.com/?p=14#comment-420</guid>
		<description><![CDATA[How about: 
public List Contacts { get; set; }?

Will automapper populate it, or just ignore it (automatically)?]]></description>
		<content:encoded><![CDATA[<p>How about:<br />
public List Contacts { get; set; }?</p>
<p>Will automapper populate it, or just ignore it (automatically)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on AutoMapper: Ups, Downs, and Implementations &#8211; Part 1 by sun1991</title>
		<link>http://tomestephens.com/2010/01/automapper-ups-downs-and-implementations-part-1/comment-page-1/#comment-419</link>
		<dc:creator>sun1991</dc:creator>
		<pubDate>Wed, 13 Jul 2011 13:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://tomestephens.com/?p=12#comment-419</guid>
		<description><![CDATA[ClientDto dto = Mapper.Map&lt;IDataReader, IEnumerable&gt;(myDataReader);

Do you mean:
ClientDto dto = Mapper.Map&lt;IDataReader, IEnumerable&gt;(myDataReader).First();?]]></description>
		<content:encoded><![CDATA[<p>ClientDto dto = Mapper.Map&lt;IDataReader, IEnumerable&gt;(myDataReader);</p>
<p>Do you mean:<br />
ClientDto dto = Mapper.Map&lt;IDataReader, IEnumerable&gt;(myDataReader).First();?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What&#8217;s it worth? &#8211; trying to find the true value by Tom</title>
		<link>http://tomestephens.com/2010/01/whats-it-worth/comment-page-1/#comment-367</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Thu, 23 Jun 2011 14:47:47 +0000</pubDate>
		<guid isPermaLink="false">http://tomestephens.com/?p=10#comment-367</guid>
		<description><![CDATA[What I like about this is that it is the essential core of Buddhism:

Don&#039;t empty your cup so we can fill it back up again as much as empty it, and keep it there.]]></description>
		<content:encoded><![CDATA[<p>What I like about this is that it is the essential core of Buddhism:</p>
<p>Don&#8217;t empty your cup so we can fill it back up again as much as empty it, and keep it there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Time for Change by Daniel J. Roos</title>
		<link>http://tomestephens.com/2011/06/time-for-change/comment-page-1/#comment-362</link>
		<dc:creator>Daniel J. Roos</dc:creator>
		<pubDate>Wed, 22 Jun 2011 02:08:14 +0000</pubDate>
		<guid isPermaLink="false">http://tomestephens.com/?p=101#comment-362</guid>
		<description><![CDATA[Who will take care of the chickens?  I mean, congrats and keep in touch.  Heck, someday, post something over at SnarkCriticPop, man!]]></description>
		<content:encoded><![CDATA[<p>Who will take care of the chickens?  I mean, congrats and keep in touch.  Heck, someday, post something over at SnarkCriticPop, man!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
