<?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 Complete Coding</title>
	<atom:link href="http://kevinrodrigues.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://kevinrodrigues.com/blog</link>
	<description>A blog about programming and software development</description>
	<lastBuildDate>Wed, 28 Jul 2010 14:27:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
	<item>
		<title>Comment on The Ten Commandments for C++ Programmers by Kevin</title>
		<link>http://kevinrodrigues.com/blog/2010/07/22/the-ten-commandments-for-c-programmers/comment-page-1/#comment-691</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Wed, 28 Jul 2010 14:27:31 +0000</pubDate>
		<guid isPermaLink="false">http://kevinrodrigues.com/blog/?p=899#comment-691</guid>
		<description>Thanks for your comment, stevej. You have mentioned valid points there. 

This list of the ten commandments for C++ programmers has been taken from the &quot;Practical C++ Programming&quot; book.

The purpose of these points is not to have C++ converts. Rather it provides some basic points that C++ programmers could trip over and so should keep in mind while C++ programming.</description>
		<content:encoded><![CDATA[<p>Thanks for your comment, stevej. You have mentioned valid points there. </p>
<p>This list of the ten commandments for C++ programmers has been taken from the &#8220;Practical C++ Programming&#8221; book.</p>
<p>The purpose of these points is not to have C++ converts. Rather it provides some basic points that C++ programmers could trip over and so should keep in mind while C++ programming.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why It Pays To Start Your Career At A Small IT Organization by Kevin</title>
		<link>http://kevinrodrigues.com/blog/2010/06/24/why-it-pays-to-start-your-career-at-a-small-it-organization/comment-page-1/#comment-690</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Wed, 28 Jul 2010 14:23:45 +0000</pubDate>
		<guid isPermaLink="false">http://kevinrodrigues.com/blog/?p=796#comment-690</guid>
		<description>Thanks for your comment Asim. I am glad you enjoyed the post.</description>
		<content:encoded><![CDATA[<p>Thanks for your comment Asim. I am glad you enjoyed the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Why It Pays To Start Your Career At A Small IT Organization by Asim</title>
		<link>http://kevinrodrigues.com/blog/2010/06/24/why-it-pays-to-start-your-career-at-a-small-it-organization/comment-page-1/#comment-689</link>
		<dc:creator>Asim</dc:creator>
		<pubDate>Wed, 28 Jul 2010 06:27:45 +0000</pubDate>
		<guid isPermaLink="false">http://kevinrodrigues.com/blog/?p=796#comment-689</guid>
		<description>I couldn&#039;t agree with you more. This is something that a lot of freshers fail to recognize. The big names sweep through college placements looking for a few hands to man the deck. More often than not, freshers end up playing counter-strike on the LAN for a couple of months after which they&#039;re moved to some department that services tickets for a web server that is already in place.

I was recruited by a start up in Bangalore after completing my engineering and the two years that I&#039;ve spent there were probably the most enriching and most uplifting of my career. Startups need to be quick on their feet and its people need to be hungrier with a no BS attitude. 

Roles are greater, pays are smaller... but when you&#039;re 22, one should have enough to put a roof over their heads and feast like a lion. The in-betweens will come sooner or later.

Great post...!</description>
		<content:encoded><![CDATA[<p>I couldn&#8217;t agree with you more. This is something that a lot of freshers fail to recognize. The big names sweep through college placements looking for a few hands to man the deck. More often than not, freshers end up playing counter-strike on the LAN for a couple of months after which they&#8217;re moved to some department that services tickets for a web server that is already in place.</p>
<p>I was recruited by a start up in Bangalore after completing my engineering and the two years that I&#8217;ve spent there were probably the most enriching and most uplifting of my career. Startups need to be quick on their feet and its people need to be hungrier with a no BS attitude. </p>
<p>Roles are greater, pays are smaller&#8230; but when you&#8217;re 22, one should have enough to put a roof over their heads and feast like a lion. The in-betweens will come sooner or later.</p>
<p>Great post&#8230;!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Ten Commandments for C++ Programmers by stevej</title>
		<link>http://kevinrodrigues.com/blog/2010/07/22/the-ten-commandments-for-c-programmers/comment-page-1/#comment-688</link>
		<dc:creator>stevej</dc:creator>
		<pubDate>Tue, 27 Jul 2010 14:16:42 +0000</pubDate>
		<guid isPermaLink="false">http://kevinrodrigues.com/blog/?p=899#comment-688</guid>
		<description>#3,#7,and#9 are not C++-specific. Just plain ol&#039; oop.

#7: &#039;struct&#039; is &#039;class&#039; for public data members

#8 applies to object references in general (therefore java, etc.). Dangling pointer are trouble in non-oo languages as well (C, Pascal, etc).

#1: occasionally the default impls are fine. Just know what you&#039;re saying (see: Meyers, Saks).

It&#039;s a tricky and maligned language for sure. Not sure that the convoluted English or the &quot;10 commandments&quot; format will win over any new &quot;converts&quot; however.</description>
		<content:encoded><![CDATA[<p>#3,#7,and#9 are not C++-specific. Just plain ol&#8217; oop.</p>
<p>#7: &#8216;struct&#8217; is &#8216;class&#8217; for public data members</p>
<p>#8 applies to object references in general (therefore java, etc.). Dangling pointer are trouble in non-oo languages as well (C, Pascal, etc).</p>
<p>#1: occasionally the default impls are fine. Just know what you&#8217;re saying (see: Meyers, Saks).</p>
<p>It&#8217;s a tricky and maligned language for sure. Not sure that the convoluted English or the &#8220;10 commandments&#8221; format will win over any new &#8220;converts&#8221; however.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Don&#8217;t Be A Hotshot Programmer, Be A Boring Programmer by Kevin</title>
		<link>http://kevinrodrigues.com/blog/2010/07/08/dont-be-a-hotshot-programmer-be-a-boring-programmer/comment-page-1/#comment-683</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Fri, 09 Jul 2010 14:18:49 +0000</pubDate>
		<guid isPermaLink="false">http://kevinrodrigues.com/blog/?p=843#comment-683</guid>
		<description>Thanks Frank, I get the idea. It is of course more readable than the first example. However, using simple if/else will be easily read by a programmer of any level and easier to maintain :)</description>
		<content:encoded><![CDATA[<p>Thanks Frank, I get the idea. It is of course more readable than the first example. However, using simple if/else will be easily read by a programmer of any level and easier to maintain <img src='http://kevinrodrigues.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>
