<?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: The Source of Bugs</title>
	<atom:link href="http://www.codesimplicity.com/post/the-source-of-bugs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.codesimplicity.com/post/the-source-of-bugs/</link>
	<description></description>
	<lastBuildDate>Tue, 27 Dec 2011 03:40:15 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Max Kanat-Alexander</title>
		<link>http://www.codesimplicity.com/post/the-source-of-bugs/comment-page-1/#comment-1068</link>
		<dc:creator>Max Kanat-Alexander</dc:creator>
		<pubDate>Tue, 14 Jul 2009 01:36:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesimplicity.com/?p=35#comment-1068</guid>
		<description>Thanks! :-)

-Max</description>
		<content:encoded><![CDATA[<p>Thanks! <img src='http://www.codesimplicity.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>-Max</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ask Questions</title>
		<link>http://www.codesimplicity.com/post/the-source-of-bugs/comment-page-1/#comment-1067</link>
		<dc:creator>Ask Questions</dc:creator>
		<pubDate>Mon, 13 Jul 2009 04:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesimplicity.com/?p=35#comment-1067</guid>
		<description>Thats the best line &quot;The simpler your code is, the fewer bugs you will have. &quot; ;)</description>
		<content:encoded><![CDATA[<p>Thats the best line &#8220;The simpler your code is, the fewer bugs you will have. &#8221; <img src='http://www.codesimplicity.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dział IT</title>
		<link>http://www.codesimplicity.com/post/the-source-of-bugs/comment-page-1/#comment-1058</link>
		<dc:creator>Dział IT</dc:creator>
		<pubDate>Wed, 10 Jun 2009 11:32:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesimplicity.com/?p=35#comment-1058</guid>
		<description>[...] Oryginalny artykuł: Code Simplicity - The Source of Bugs [...]</description>
		<content:encoded><![CDATA[<p>[...] Oryginalny artykuł: Code Simplicity &#8211; The Source of Bugs [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Путь программиста - Откуда берутся баги</title>
		<link>http://www.codesimplicity.com/post/the-source-of-bugs/comment-page-1/#comment-1006</link>
		<dc:creator>Путь программиста - Откуда берутся баги</dc:creator>
		<pubDate>Mon, 23 Feb 2009 11:06:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesimplicity.com/?p=35#comment-1006</guid>
		<description>[...] мотивам The Source of Bugs by Max [...]</description>
		<content:encoded><![CDATA[<p>[...] мотивам The Source of Bugs by Max [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Max Kanat-Alexander</title>
		<link>http://www.codesimplicity.com/post/the-source-of-bugs/comment-page-1/#comment-580</link>
		<dc:creator>Max Kanat-Alexander</dc:creator>
		<pubDate>Sat, 13 Sep 2008 10:56:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesimplicity.com/?p=35#comment-580</guid>
		<description>Amen, brother!! Amen. :-)

  -Max</description>
		<content:encoded><![CDATA[<p>Amen, brother!! Amen. <img src='http://www.codesimplicity.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>  -Max</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bobobobo</title>
		<link>http://www.codesimplicity.com/post/the-source-of-bugs/comment-page-1/#comment-579</link>
		<dc:creator>bobobobo</dc:creator>
		<pubDate>Sat, 13 Sep 2008 10:38:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesimplicity.com/?p=35#comment-579</guid>
		<description>Well, its not always possible to make code that does incredibly complex stuff with good efficiency very simple.. but it is always possible to make the API to USE YOUR CODE simpler.

For example, say I&#039;m writing a bunch of code to create pdf documents... I create a class PDF.  The internals of the PDF object I create can be as complex as I like.. but the functions that the person USING that PDF object should be madd simple.

I don&#039;t want my API to require the user of my API to know too much.  Contrast php&#039;s simplexml lib ext http://php.net/simplexml with any of the other xml lib exts.. pretty much everyone uses simplexml, because its easy to use.  We don&#039;t care how complex it is inside, as long as its outward representation is simple to use.</description>
		<content:encoded><![CDATA[<p>Well, its not always possible to make code that does incredibly complex stuff with good efficiency very simple.. but it is always possible to make the API to USE YOUR CODE simpler.</p>
<p>For example, say I&#8217;m writing a bunch of code to create pdf documents&#8230; I create a class PDF.  The internals of the PDF object I create can be as complex as I like.. but the functions that the person USING that PDF object should be madd simple.</p>
<p>I don&#8217;t want my API to require the user of my API to know too much.  Contrast php&#8217;s simplexml lib ext <a href="http://php.net/simplexml" rel="nofollow">http://php.net/simplexml</a> with any of the other xml lib exts.. pretty much everyone uses simplexml, because its easy to use.  We don&#8217;t care how complex it is inside, as long as its outward representation is simple to use.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Max Kanat-Alexander</title>
		<link>http://www.codesimplicity.com/post/the-source-of-bugs/comment-page-1/#comment-419</link>
		<dc:creator>Max Kanat-Alexander</dc:creator>
		<pubDate>Tue, 29 Jul 2008 03:42:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesimplicity.com/?p=35#comment-419</guid>
		<description>Thanks! :-) You&#039;re very, very right.

-Max</description>
		<content:encoded><![CDATA[<p>Thanks! <img src='http://www.codesimplicity.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  You&#8217;re very, very right.</p>
<p>-Max</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sergiu Rata</title>
		<link>http://www.codesimplicity.com/post/the-source-of-bugs/comment-page-1/#comment-401</link>
		<dc:creator>Sergiu Rata</dc:creator>
		<pubDate>Thu, 24 Jul 2008 20:18:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesimplicity.com/?p=35#comment-401</guid>
		<description>Excellent post! I also believed for a long time that the simpler your code is - the better for you now and in the long-run.</description>
		<content:encoded><![CDATA[<p>Excellent post! I also believed for a long time that the simpler your code is &#8211; the better for you now and in the long-run.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Come evitare bug / Melodycode.com - Life is a flash</title>
		<link>http://www.codesimplicity.com/post/the-source-of-bugs/comment-page-1/#comment-381</link>
		<dc:creator>Come evitare bug / Melodycode.com - Life is a flash</dc:creator>
		<pubDate>Tue, 22 Jul 2008 10:44:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.codesimplicity.com/?p=35#comment-381</guid>
		<description>[...] di rilanciare alcune iniziative! (1a parte e 2a parte)&quot;.Buona navigazione e grazie per la visita!Articolo di facile lettura che spiega le regole base per scrivere codice il meno buggato possibile: The simpler your code is, [...]</description>
		<content:encoded><![CDATA[<p>[...] di rilanciare alcune iniziative! (1a parte e 2a parte)&#8221;.Buona navigazione e grazie per la visita!Articolo di facile lettura che spiega le regole base per scrivere codice il meno buggato possibile: The simpler your code is, [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

