<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: What Makes You a Good C/C++ Coder?</title>
	<atom:link href="http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/feed/" rel="self" type="application/rss+xml" />
	<link>http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Mon, 27 Jul 2009 06:26:25 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ruman Zakaria</title>
		<link>http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-47</link>
		<dc:creator>Ruman Zakaria</dc:creator>
		<pubDate>Thu, 22 May 2008 11:58:51 +0000</pubDate>
		<guid isPermaLink="false">http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-47</guid>
		<description>Boost!!
Use Boost C++ libraries which can I suppose help one out with memory leaks and so on. Some of the libraries in Boost are supposed to be incorporated into the next version of C++ (C++0x). But there are lot more stuff in Boost than just smart pointers. I am glad that Boost is being incorporated just like STL was done a few years ago..:D:D 

The days of JAVA are coming to an end (maybe not).. long live C++</description>
		<content:encoded><![CDATA[<p>Boost!!<br />
Use Boost C++ libraries which can I suppose help one out with memory leaks and so on. Some of the libraries in Boost are supposed to be incorporated into the next version of C++ (C++0x). But there are lot more stuff in Boost than just smart pointers. I am glad that Boost is being incorporated just like STL was done a few years ago..:D:D </p>
<p>The days of JAVA are coming to an end (maybe not).. long live C++</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mdzahidh</title>
		<link>http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-20</link>
		<dc:creator>mdzahidh</dc:creator>
		<pubDate>Thu, 23 Aug 2007 06:06:20 +0000</pubDate>
		<guid isPermaLink="false">http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-20</guid>
		<description>@Shams: Though Singleton is one type of design pattern but this is something that is used in almost all projects quite heavily. To reduce code-rewriting, people often write a Template Singleton class then derive all other singletons from that Template. So I thought its good to have knowledge on how to write Singleton, Template Singleton and etc.

@Imran: Memory Leak Avoidance and Detection both actually come through experience. But there are still various programmatic aids that you can use to detect Memory Leaks, for example crtdbg routines of VC++. While in eSophers I was not aware of the existence of crtdbg and wrote a leak detector myself which worked almost similarly to crtdbg. That leak detector was esoterically named as &quot;Terror Lib&quot; and was dedicated to Sazzad Bhai (Mr. Terror). But later I found that crtdbg is already there to do just that. But crtdbg is not portable ,as far as i know. So if you are planning to write some cross-platform code, use your own leak detector. I will probably write something on leak detection soon, so stay tuned</description>
		<content:encoded><![CDATA[<p>@Shams: Though Singleton is one type of design pattern but this is something that is used in almost all projects quite heavily. To reduce code-rewriting, people often write a Template Singleton class then derive all other singletons from that Template. So I thought its good to have knowledge on how to write Singleton, Template Singleton and etc.</p>
<p>@Imran: Memory Leak Avoidance and Detection both actually come through experience. But there are still various programmatic aids that you can use to detect Memory Leaks, for example crtdbg routines of VC++. While in eSophers I was not aware of the existence of crtdbg and wrote a leak detector myself which worked almost similarly to crtdbg. That leak detector was esoterically named as &#8220;Terror Lib&#8221; and was dedicated to Sazzad Bhai (Mr. Terror). But later I found that crtdbg is already there to do just that. But crtdbg is not portable ,as far as i know. So if you are planning to write some cross-platform code, use your own leak detector. I will probably write something on leak detection soon, so stay tuned</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran M Yousuf</title>
		<link>http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-18</link>
		<dc:creator>Imran M Yousuf</dc:creator>
		<pubDate>Wed, 22 Aug 2007 09:08:01 +0000</pubDate>
		<guid isPermaLink="false">http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-18</guid>
		<description>Though I am a Java fanatic, I find the Blog quite intriguing. But I find (8) to be a little too difficult as it only comes with experience. 

By the grace of Allah I almost know all the other points except memory leak. I am looking forward to a post on it from Zahid; especially because I know that Zahid mastered it :)</description>
		<content:encoded><![CDATA[<p>Though I am a Java fanatic, I find the Blog quite intriguing. But I find (8) to be a little too difficult as it only comes with experience. </p>
<p>By the grace of Allah I almost know all the other points except memory leak. I am looking forward to a post on it from Zahid; especially because I know that Zahid mastered it <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shams</title>
		<link>http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-17</link>
		<dc:creator>Shams</dc:creator>
		<pubDate>Wed, 22 Aug 2007 09:03:27 +0000</pubDate>
		<guid isPermaLink="false">http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-17</guid>
		<description>Nice article, but I would like to know why you pointed out the singleton pattern explicitly and why it is so valuable in C++. Forgive my ignorance (in c++) :)</description>
		<content:encoded><![CDATA[<p>Nice article, but I would like to know why you pointed out the singleton pattern explicitly and why it is so valuable in C++. Forgive my ignorance (in c++) <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tahmid Munaz</title>
		<link>http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-16</link>
		<dc:creator>Tahmid Munaz</dc:creator>
		<pubDate>Tue, 21 Aug 2007 17:32:22 +0000</pubDate>
		<guid isPermaLink="false">http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-16</guid>
		<description>Exclusive guideline for any C/C++ newbie coders :) 
You are BlogLinked! ;)</description>
		<content:encoded><![CDATA[<p>Exclusive guideline for any C/C++ newbie coders <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
You are BlogLinked! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mdzahidh</title>
		<link>http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-15</link>
		<dc:creator>mdzahidh</dc:creator>
		<pubDate>Sun, 19 Aug 2007 06:36:40 +0000</pubDate>
		<guid isPermaLink="false">http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-15</guid>
		<description>Well, the easiest of the above lot is the MACRO. Jalal, i am sure you have used macros, its just about using #defines, thats it. But you will be amazed how simple #defines can be used in your code in intriguing ways.</description>
		<content:encoded><![CDATA[<p>Well, the easiest of the above lot is the MACRO. Jalal, i am sure you have used macros, its just about using #defines, thats it. But you will be amazed how simple #defines can be used in your code in intriguing ways.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jalal</title>
		<link>http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-14</link>
		<dc:creator>Jalal</dc:creator>
		<pubDate>Sun, 19 Aug 2007 03:11:32 +0000</pubDate>
		<guid isPermaLink="false">http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-14</guid>
		<description>When Zahid talks on technical things most of fly over my head. So, this is not a special case. I finally able to understand the use of the above thing coz I have used those in small application except macros. I really dont know how use macros and how a non experience (work exp) coder like me will able to answer questions like macros??</description>
		<content:encoded><![CDATA[<p>When Zahid talks on technical things most of fly over my head. So, this is not a special case. I finally able to understand the use of the above thing coz I have used those in small application except macros. I really dont know how use macros and how a non experience (work exp) coder like me will able to answer questions like macros??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reza</title>
		<link>http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-13</link>
		<dc:creator>Reza</dc:creator>
		<pubDate>Fri, 17 Aug 2007 12:03:16 +0000</pubDate>
		<guid isPermaLink="false">http://mdzahidh.wordpress.com/2007/08/16/what-makes-you-a-good-cc-coder/#comment-13</guid>
		<description>Thank you for the points. They will be very helpful for people who want to establish themselve as good c/c++ programmers.</description>
		<content:encoded><![CDATA[<p>Thank you for the points. They will be very helpful for people who want to establish themselve as good c/c++ programmers.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
