<?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: 5 Good Habits That Will Make You a Better Coder</title>
	<atom:link href="http://sixrevisions.com/web-development/5-good-habits-that-will-make-you-a-better-coder/feed/" rel="self" type="application/rss+xml" />
	<link>http://sixrevisions.com/web-development/5-good-habits-that-will-make-you-a-better-coder/</link>
	<description></description>
	<lastBuildDate>Tue, 15 May 2012 12:09:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Ryan Miller</title>
		<link>http://sixrevisions.com/web-development/5-good-habits-that-will-make-you-a-better-coder/#comment-128679</link>
		<dc:creator>Ryan Miller</dc:creator>
		<pubDate>Tue, 04 Oct 2011 17:10:49 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3583#comment-128679</guid>
		<description>I think the concept behind #2 is solid, but perhaps the implementation should be different.  I agree that if you can not explain in WORDS what you are trying to accomplish in code, how do you expect to code for it.  So being able to describe and explain what you want to do is important, and doing so in comments is an option, I would rather recommend using test-driven development (TDD) as it forces you to think through the problem you are solving as well as test for it as you go.</description>
		<content:encoded><![CDATA[<p>I think the concept behind #2 is solid, but perhaps the implementation should be different.  I agree that if you can not explain in WORDS what you are trying to accomplish in code, how do you expect to code for it.  So being able to describe and explain what you want to do is important, and doing so in comments is an option, I would rather recommend using test-driven development (TDD) as it forces you to think through the problem you are solving as well as test for it as you go.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Litvak</title>
		<link>http://sixrevisions.com/web-development/5-good-habits-that-will-make-you-a-better-coder/#comment-125377</link>
		<dc:creator>David Litvak</dc:creator>
		<pubDate>Tue, 27 Sep 2011 11:55:44 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3583#comment-125377</guid>
		<description>Nice post... though... the comments stuff... is way wrong from an agile point of view... every agile developing method is against comments in code... as code should express itself...
A good technique for avoiding unnecesary comments is good object modeling (which is really possible in Javascript) and good naming conventions</description>
		<content:encoded><![CDATA[<p>Nice post&#8230; though&#8230; the comments stuff&#8230; is way wrong from an agile point of view&#8230; every agile developing method is against comments in code&#8230; as code should express itself&#8230;<br />
A good technique for avoiding unnecesary comments is good object modeling (which is really possible in Javascript) and good naming conventions</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shireesha</title>
		<link>http://sixrevisions.com/web-development/5-good-habits-that-will-make-you-a-better-coder/#comment-110094</link>
		<dc:creator>shireesha</dc:creator>
		<pubDate>Sun, 24 Jul 2011 11:30:07 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3583#comment-110094</guid>
		<description>thank you.....for great tips</description>
		<content:encoded><![CDATA[<p>thank you&#8230;..for great tips</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wonde</title>
		<link>http://sixrevisions.com/web-development/5-good-habits-that-will-make-you-a-better-coder/#comment-103570</link>
		<dc:creator>Wonde</dc:creator>
		<pubDate>Fri, 03 Jun 2011 07:42:22 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3583#comment-103570</guid>
		<description>Thanks a lot, great tips</description>
		<content:encoded><![CDATA[<p>Thanks a lot, great tips</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Youpele</title>
		<link>http://sixrevisions.com/web-development/5-good-habits-that-will-make-you-a-better-coder/#comment-75891</link>
		<dc:creator>Youpele</dc:creator>
		<pubDate>Fri, 10 Sep 2010 21:57:08 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3583#comment-75891</guid>
		<description>This post has helped me stay some what focused as I&#039;m teaching myself HTML(Late starter I know CS5 out already!). It takes a keen eye yo to study the code of javascript and css with HTML code.(hope I&#039;m making sense:. I&#039;m teaching myself as feel enthused by the prospect of being a home starter.

Great Post</description>
		<content:encoded><![CDATA[<p>This post has helped me stay some what focused as I&#8217;m teaching myself HTML(Late starter I know CS5 out already!). It takes a keen eye yo to study the code of javascript and css with HTML code.(hope I&#8217;m making sense:. I&#8217;m teaching myself as feel enthused by the prospect of being a home starter.</p>
<p>Great Post</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron</title>
		<link>http://sixrevisions.com/web-development/5-good-habits-that-will-make-you-a-better-coder/#comment-72389</link>
		<dc:creator>Ron</dc:creator>
		<pubDate>Wed, 28 Jul 2010 19:37:05 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3583#comment-72389</guid>
		<description>Great tips, with one exception: Number 2:
I agree, that it might be helpful, to use some kind of pseudo-code or natural language to lay out a function at design time, but as soon as i write code, there are no comments anymore!
If you have to say something in your function, express it through code, by using meaningful variable names or good names for (sub)procedures/functions. 
This is the only way to get sustainable readable and understandable code. The code is the documentation, no need for code comments.
According to tip 4 (read books), i can only suggest reading &quot;Clean code&quot; by Robert C. Martin.

(Sorry, i am not a Web Developer, but a Java Developer, so my attitude may be a bit biased...)</description>
		<content:encoded><![CDATA[<p>Great tips, with one exception: Number 2:<br />
I agree, that it might be helpful, to use some kind of pseudo-code or natural language to lay out a function at design time, but as soon as i write code, there are no comments anymore!<br />
If you have to say something in your function, express it through code, by using meaningful variable names or good names for (sub)procedures/functions.<br />
This is the only way to get sustainable readable and understandable code. The code is the documentation, no need for code comments.<br />
According to tip 4 (read books), i can only suggest reading &#8220;Clean code&#8221; by Robert C. Martin.</p>
<p>(Sorry, i am not a Web Developer, but a Java Developer, so my attitude may be a bit biased&#8230;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bishal Pantha</title>
		<link>http://sixrevisions.com/web-development/5-good-habits-that-will-make-you-a-better-coder/#comment-72213</link>
		<dc:creator>Bishal Pantha</dc:creator>
		<pubDate>Sun, 25 Jul 2010 22:17:08 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3583#comment-72213</guid>
		<description>Great post to get Web-Tech enlightenment ...thanks a ton Matt...</description>
		<content:encoded><![CDATA[<p>Great post to get Web-Tech enlightenment &#8230;thanks a ton Matt&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mark</title>
		<link>http://sixrevisions.com/web-development/5-good-habits-that-will-make-you-a-better-coder/#comment-71487</link>
		<dc:creator>mark</dc:creator>
		<pubDate>Fri, 16 Jul 2010 07:32:06 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3583#comment-71487</guid>
		<description>2. Write Your Logic through Comments
You have to be kidding.
Stop writing articles just to for the sake of writing an article.</description>
		<content:encoded><![CDATA[<p>2. Write Your Logic through Comments<br />
You have to be kidding.<br />
Stop writing articles just to for the sake of writing an article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anees</title>
		<link>http://sixrevisions.com/web-development/5-good-habits-that-will-make-you-a-better-coder/#comment-71370</link>
		<dc:creator>Anees</dc:creator>
		<pubDate>Thu, 15 Jul 2010 07:20:57 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3583#comment-71370</guid>
		<description>Great article, Thanks buddy!</description>
		<content:encoded><![CDATA[<p>Great article, Thanks buddy!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BrightLoudNoise</title>
		<link>http://sixrevisions.com/web-development/5-good-habits-that-will-make-you-a-better-coder/#comment-71344</link>
		<dc:creator>BrightLoudNoise</dc:creator>
		<pubDate>Wed, 14 Jul 2010 17:50:14 +0000</pubDate>
		<guid isPermaLink="false">http://sixrevisions.com/?p=3583#comment-71344</guid>
		<description>Good tips, although I suspect you meant tenets as opposed to tenants.</description>
		<content:encoded><![CDATA[<p>Good tips, although I suspect you meant tenets as opposed to tenants.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

