<?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 Chuck Conway</title>
	<atom:link href="http://www.chuckconway.com/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.chuckconway.com</link>
	<description>Will code C# for food!</description>
	<lastBuildDate>Fri, 24 Feb 2012 17:56:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on All UTC times are not necessarily the same by chuck</title>
		<link>http://www.chuckconway.com/?p=307#comment-610</link>
		<dc:creator>chuck</dc:creator>
		<pubDate>Fri, 24 Feb 2012 17:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.chuckconway.com/?p=307#comment-610</guid>
		<description>Thanks for the suggestion. I disagree. There is no clock that is perfectly synced. While the differences are extremely small, there are still differences. 

I changed the title, I liked your name better :)</description>
		<content:encoded><![CDATA[<p>Thanks for the suggestion. I disagree. There is no clock that is perfectly synced. While the differences are extremely small, there are still differences. </p>
<p>I changed the title, I liked your name better <img src='http://www.chuckconway.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PST file size versus Sql Server file size by Gautam</title>
		<link>http://www.chuckconway.com/?p=279#comment-576</link>
		<dc:creator>Gautam</dc:creator>
		<pubDate>Sun, 19 Feb 2012 17:00:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.chuckconway.com/?p=279#comment-576</guid>
		<description>Hi Chuck !
This post was an interesting read !
However, could you detail a bit more on how you managed to get all the outlook data into SQL Server ? 
Cheers
G</description>
		<content:encoded><![CDATA[<p>Hi Chuck !<br />
This post was an interesting read !<br />
However, could you detail a bit more on how you managed to get all the outlook data into SQL Server ?<br />
Cheers<br />
G</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on All UTC times are not necessarily the same by Ponnuvel</title>
		<link>http://www.chuckconway.com/?p=307#comment-511</link>
		<dc:creator>Ponnuvel</dc:creator>
		<pubDate>Tue, 07 Feb 2012 00:18:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.chuckconway.com/?p=307#comment-511</guid>
		<description>While its true that the clock skews there, it doesn&#039;t mean they are all different as the title implies. A better title would be &#039;All UTC times are not necessarily the same&#039;.</description>
		<content:encoded><![CDATA[<p>While its true that the clock skews there, it doesn&#8217;t mean they are all different as the title implies. A better title would be &#8216;All UTC times are not necessarily the same&#8217;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Insecurinator Developer by Marina</title>
		<link>http://www.chuckconway.com/?p=183#comment-48</link>
		<dc:creator>Marina</dc:creator>
		<pubDate>Thu, 22 Sep 2011 00:47:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.chuckconway.com/?p=183#comment-48</guid>
		<description>You have really interesting blog, keep up posting such informative posts!</description>
		<content:encoded><![CDATA[<p>You have really interesting blog, keep up posting such informative posts!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ooooh The Pain – Regions in C# by The CoatTails-Riding Developer</title>
		<link>http://www.chuckconway.com/?p=197#comment-27</link>
		<dc:creator>The CoatTails-Riding Developer</dc:creator>
		<pubDate>Thu, 23 Jun 2011 20:41:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.chuckconway.com/?p=197#comment-27</guid>
		<description>Equating region folding and OO misunderstands the best practices use for this feature in Visual Studio. I agree with you that logic that can be encapsulated into a class or method should not be instead used in regions. If anything in the region could operate on it&#039;s own, a developer should consider of placing this logic in another class or method. Your argument has merit on these principles.

However....
Just because someone tries to screw in a nail with a hammer doesn&#039;t mean the hammer is defective. Just means a moron is trying to use it. That goes the same way with code folding.
I will go out on a limb here and say what i consider Best Practices:
     1) Separating code out into parts of the class. This would be separating your properties ,events, methods, back end store variables, etc so that you can find them as needed when you do use your little mouse wheel. 
    2) Folding out procedural code that is needed but muddles the high level reading of the class. Yes, this is a fine line. No this doesn&#039;t mean you hide away the crap code. This means that the coder is the judge of what really needs another class. Does a 4 liner chunk of code need a whole new class (new address)? If it is used only once, fold it maybe. If you need that functionality later in another class, or during re-factoring you find a better way, promote it to a class, but not really before. Improper class creation (i.e. a bucket full of one line classes) is just as bad (IMHO) as what Atwood is complaining about.

By the way, all sorts of IDE &#039;s  have this feature... someone must think it is a good idea.  http://bit.ly/j8Ot65</description>
		<content:encoded><![CDATA[<p>Equating region folding and OO misunderstands the best practices use for this feature in Visual Studio. I agree with you that logic that can be encapsulated into a class or method should not be instead used in regions. If anything in the region could operate on it&#8217;s own, a developer should consider of placing this logic in another class or method. Your argument has merit on these principles.</p>
<p>However&#8230;.<br />
Just because someone tries to screw in a nail with a hammer doesn&#8217;t mean the hammer is defective. Just means a moron is trying to use it. That goes the same way with code folding.<br />
I will go out on a limb here and say what i consider Best Practices:<br />
     1) Separating code out into parts of the class. This would be separating your properties ,events, methods, back end store variables, etc so that you can find them as needed when you do use your little mouse wheel.<br />
    2) Folding out procedural code that is needed but muddles the high level reading of the class. Yes, this is a fine line. No this doesn&#8217;t mean you hide away the crap code. This means that the coder is the judge of what really needs another class. Does a 4 liner chunk of code need a whole new class (new address)? If it is used only once, fold it maybe. If you need that functionality later in another class, or during re-factoring you find a better way, promote it to a class, but not really before. Improper class creation (i.e. a bucket full of one line classes) is just as bad (IMHO) as what Atwood is complaining about.</p>
<p>By the way, all sorts of IDE &#8216;s  have this feature&#8230; someone must think it is a good idea.  <a href="http://bit.ly/j8Ot65" rel="nofollow">http://bit.ly/j8Ot65</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on King of the Hill Developer by Mini-Me Developer</title>
		<link>http://www.chuckconway.com/?p=179#comment-9</link>
		<dc:creator>Mini-Me Developer</dc:creator>
		<pubDate>Wed, 08 Jun 2011 13:35:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.chuckconway.com/?p=179#comment-9</guid>
		<description>[...] developer follows the King of the Hill Developer like fly&#8217;s to shit. This person is the voice of the King of the Hill Developer in the their [...] </description>
		<content:encoded><![CDATA[<p>[...] developer follows the King of the Hill Developer like fly&#8217;s to shit. This person is the voice of the King of the Hill Developer in the their [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

