<?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 for someone with blinders</title>
	<atom:link href="http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html</link>
	<description>Productive software development using ASP.NET, C#, Adobe Flex, and other technologies and tools.</description>
	<lastBuildDate>Thu, 09 Sep 2010 10:53:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Bookmarks about Flex</title>
		<link>http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html/comment-page-1#comment-1286</link>
		<dc:creator>Bookmarks about Flex</dc:creator>
		<pubDate>Mon, 12 Jan 2009 10:45:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html#comment-1286</guid>
		<description>[...] - bookmarked by 4 members originally found by cstarrett on 2008-12-17  Programming for someone with blinders  http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html - bookmarked by 1 [...]</description>
		<content:encoded><![CDATA[<p>[...] &#8211; bookmarked by 4 members originally found by cstarrett on 2008-12-17  Programming for someone with blinders  <a href="http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html" rel="nofollow">http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html</a> &#8211; bookmarked by 1 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Design your classes for their consumer</title>
		<link>http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html/comment-page-1#comment-625</link>
		<dc:creator>Design your classes for their consumer</dc:creator>
		<pubDate>Mon, 11 Aug 2008 19:45:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html#comment-625</guid>
		<description>[...] have a tendency to just focus on the class we&#8217;re currently working on. Of course I believe this is a good thing, because we all know the importance of focus. However, you should never forget the reason [...]</description>
		<content:encoded><![CDATA[<p>[...] have a tendency to just focus on the class we&#8217;re currently working on. Of course I believe this is a good thing, because we all know the importance of focus. However, you should never forget the reason [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Romeo</title>
		<link>http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html/comment-page-1#comment-617</link>
		<dc:creator>Romeo</dc:creator>
		<pubDate>Sat, 26 Jul 2008 08:07:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html#comment-617</guid>
		<description>I share your enthusiasm when it comes to being strict with coding standards, particularly with the readability of codes.

Some TLs who&#039;d like code reviews, with this in mind, you&#039;d have to worry less.

It&#039;s basic OOP principle...&quot;Separation of concern&quot;. :D</description>
		<content:encoded><![CDATA[<p>I share your enthusiasm when it comes to being strict with coding standards, particularly with the readability of codes.</p>
<p>Some TLs who&#8217;d like code reviews, with this in mind, you&#8217;d have to worry less.</p>
<p>It&#8217;s basic OOP principle&#8230;&#8221;Separation of concern&#8221;. <img src='http://www.ytechie.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rex</title>
		<link>http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html/comment-page-1#comment-611</link>
		<dc:creator>Rex</dc:creator>
		<pubDate>Thu, 24 Jul 2008 19:39:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html#comment-611</guid>
		<description>But what about job security...? JK

I really agree with you.  Having an application split up into different classes really is the easiest way for me to understand it.

I&#039;d much rather have different classes representing objects and an actual data access layer, etc, than having a Windows Form with 10,000 lines of code in it that does everything.</description>
		<content:encoded><![CDATA[<p>But what about job security&#8230;? JK</p>
<p>I really agree with you.  Having an application split up into different classes really is the easiest way for me to understand it.</p>
<p>I&#8217;d much rather have different classes representing objects and an actual data access layer, etc, than having a Windows Form with 10,000 lines of code in it that does everything.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Al</title>
		<link>http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html/comment-page-1#comment-608</link>
		<dc:creator>Al</dc:creator>
		<pubDate>Wed, 23 Jul 2008 14:29:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.ytechie.com/2008/07/programming-for-someone-with-blinders.html#comment-608</guid>
		<description>While I don&#039;t think anyone should be scared of creating additional classes where required, you do have to be mindful of having too many classes, too many interfaces, to overly complex inheritance. 

Being able to understand a given class is one thing, being able to understand the system and how/why it is constructed in a particular way is another thing entirely I think. 

I know I&#039;ve seen people walk into sections of a software stack that is deliberately heavily decoupled and flounder for quite a while - until they finally nut their way through it or seek help from a more senior programmer.

Remember, everything comes with a trade off.</description>
		<content:encoded><![CDATA[<p>While I don&#8217;t think anyone should be scared of creating additional classes where required, you do have to be mindful of having too many classes, too many interfaces, to overly complex inheritance. </p>
<p>Being able to understand a given class is one thing, being able to understand the system and how/why it is constructed in a particular way is another thing entirely I think. </p>
<p>I know I&#8217;ve seen people walk into sections of a software stack that is deliberately heavily decoupled and flounder for quite a while &#8211; until they finally nut their way through it or seek help from a more senior programmer.</p>
<p>Remember, everything comes with a trade off.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
