<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Floorplanner Tech Blog &#187; Books</title>
	<atom:link href="http://techblog.floorplanner.com/category/books/feed/" rel="self" type="application/rss+xml" />
	<link>http://techblog.floorplanner.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 19 Nov 2009 04:00:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Finished reading Code Complete</title>
		<link>http://techblog.floorplanner.com/2007/11/20/72/</link>
		<comments>http://techblog.floorplanner.com/2007/11/20/72/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 09:43:21 +0000</pubDate>
		<dc:creator>Gert-Jan</dc:creator>
				<category><![CDATA[Books]]></category>

		<guid isPermaLink="false">http://www.suite75.net/blog/dev/72.html</guid>
		<description><![CDATA[
Yesterday I finally finished reading Steve McConnell&#8217;s Code Complete &#8211; A practival handbook of software construction. I really loved reading it and I definitely learned a lot from it, but it takes a while to finish the 914 pages  
If you are in the business of writing code, I recommend you to buy a [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ftechblog.floorplanner.com%2F2007%2F11%2F20%2F72%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ftechblog.floorplanner.com%2F2007%2F11%2F20%2F72%2F" height="61" width="51" /></a></div><div style="float:left;margin-right:10px;"><a href="http://cc2e.com/" target="_blank"><img src="http://tbn0.google.com/images?q=tbn:CEofuCj0j96x2M:https://tlsj.tenlong.com.tw/WebModule/BookSearch/cover/E01/0735619670.jpg" alt="Code Complete"/></a></div>
<p>Yesterday I finally finished reading Steve McConnell&#8217;s <a href="http://cc2e.com/" target="_blank">Code Complete &#8211; A practival handbook of software construction</a>. I really loved reading it and I definitely learned a lot from it, but it takes a while to finish the 914 pages <img src='http://techblog.floorplanner.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>If you are in the business of writing code, I recommend you to buy a copy of this book and start reading it right away!</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.floorplanner.com/2007/11/20/72/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Changing coding style</title>
		<link>http://techblog.floorplanner.com/2007/08/01/changing-coding-style/</link>
		<comments>http://techblog.floorplanner.com/2007/08/01/changing-coding-style/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 12:55:34 +0000</pubDate>
		<dc:creator>Gert-Jan</dc:creator>
				<category><![CDATA[Books]]></category>

		<guid isPermaLink="false">http://www.suite75.net/blog/dev/changing-coding-style.html</guid>
		<description><![CDATA[After reading the chapter Layout and Style of the (very good) book Code Complete 2nd Edition Steve McConnell convinced me to change the way I write my functions. Before I wrote functions like this:

function functionName&#40;&#41;
&#123;
    ...
&#125;

This way you have a nice line of white space between the function declaration and the inside [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ftechblog.floorplanner.com%2F2007%2F08%2F01%2Fchanging-coding-style%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ftechblog.floorplanner.com%2F2007%2F08%2F01%2Fchanging-coding-style%2F" height="61" width="51" /></a></div><p>After reading the chapter <b>Layout and Style</b> of the (very good) book <a href="http://www.amazon.com/Code-Complete-Second-Steve-McConnell/dp/0735619670/sr=1-1/qid=1169499581?ie=UTF8&#038;s=books" target="_blank">Code Complete 2nd Edition</a> Steve McConnell convinced me to change the way I write my functions. Before I wrote functions like this:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family: Monaco,monospace;"><span style="color: #000000; font-weight: bold;">function</span> functionName<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>
<span style="color: #66cc66;">&#123;</span>
    ...
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>This way you have a nice line of white space between the function declaration and the inside of the function. I thought this line of white space improved the readability of the code. Steve McConnell learned me that although that may be true, it cripples the most important thing of code layout: the layout has to follow logical structure of the code.  So I&#8217;m back to using this style:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family: Monaco,monospace;"><span style="color: #000000; font-weight: bold;">function</span> functionName<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span> <span style="color: #66cc66;">&#123;</span>
    ...
<span style="color: #66cc66;">&#125;</span></pre></div></div>

<p>If you want to know more about this subject or anything else regarding software construction I can certainly recommend you to read <a href="http://www.amazon.com/Code-Complete-Second-Steve-McConnell/dp/0735619670/sr=1-1/qid=1169499581?ie=UTF8&#038;s=books" target="_blank">Code Complete 2nd Edition</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.floorplanner.com/2007/08/01/changing-coding-style/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Pragmatic Programmer</title>
		<link>http://techblog.floorplanner.com/2007/05/02/the-pragmatic-programmer/</link>
		<comments>http://techblog.floorplanner.com/2007/05/02/the-pragmatic-programmer/#comments</comments>
		<pubDate>Wed, 02 May 2007 10:48:34 +0000</pubDate>
		<dc:creator>Gert-Jan</dc:creator>
				<category><![CDATA[Books]]></category>

		<guid isPermaLink="false">http://www.suite75.net/blog/dev/?p=44</guid>
		<description><![CDATA[I really enjoyed reading The Pragmatic Programmer. It made me realise that there is still a lot to learn.  

]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Ftechblog.floorplanner.com%2F2007%2F05%2F02%2Fthe-pragmatic-programmer%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Ftechblog.floorplanner.com%2F2007%2F05%2F02%2Fthe-pragmatic-programmer%2F" height="61" width="51" /></a></div><p>I really enjoyed reading <a href="http://www.pragmaticprogrammer.com/ppbook/index.shtml" target="_blank">The Pragmatic Programmer</a>. It made me realise that there is still a lot to learn. <img src='http://techblog.floorplanner.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href="http://www.pragmaticprogrammer.com/ppbook/index.shtml" target="_blank"><img src="http://techblog.floorplanner.com/wp-content/uploads/2007/05/pp_cover_small.jpg" border="0"/></a></p>
]]></content:encoded>
			<wfw:commentRss>http://techblog.floorplanner.com/2007/05/02/the-pragmatic-programmer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
