<?xml version="1.0" encoding="utf-8" ?>
<rss version="2.0" xmlns:osnews="http://osnews.com/rss2#">
	<channel>
		<title>OSNews: </title>
		<link>http://www.osnews.com/story/5243/Book_Review_--_Code_Reading_An_Open_Source_Perspective</link>
		<description>Exploring the Future of Computing</description>
		<language>en-us</language>
		<copyright>Copyright 2001-2009, David Adams</copyright>
		<webMaster>adam+nospam@osnews.com</webMaster>
		<lastBuildDate>Tue, 10 Nov 2009 04:25:30 GMT</lastBuildDate>
		<image>
			<url>http://www.osnews.com/images/osnews.gif</url>
			<title>OSNews.com</title>
			<link>http://www.osnews.com</link>
		</image>
		<item>
			<title>interesting</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Thanks for the review, and for simply bringing this book to my attention. I am trying to become a programmer, and I'm finding that reading code is the most difficult thing to pick up -- much harder and slower than writing it. I find that once I've thought a problem through, implementing a solution is fairly quick; but understanding what someone else's program is doing takes much more time. And reading code is not covered in the classroom at all(not yet for me, at any rate). I may have to pick up a copy of this book.<br />
<br />
My questions to the reviewer are: 1) How much did the book do for you from a practical standpoint? Do you find it easier/faster reading code now that you've read it? 2) What level of experience do you think the book requires to be useful?</description>
			<pubDate>Thu, 27 Nov 2003 05:50:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Cultural Issues</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>You can gain such a rich insight into the computer cultural biases and heritage of a programmer by looking at the idioms, conventions, and structure of her source code.  I'd be interested to know if this book discusses the cultural histories of programming style at all?<br />
<br />
-braddock</description>
			<pubDate>Thu, 27 Nov 2003 16:03:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Interesting</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>1)  I haven't had a chance to try it out reading a large chunk of code, but I have found my style of writing to have improved.  I was working on a Java Servlet a little bit after I finished reading it, and found myself thinking about how to clarify my style, and where were good points to put in comments.  All in all, I think it had quite a good effect on my coding style.<br />
<br />
2)  While it does provide brief explanations of most C features, this is not a Learning C book.  At least an intermediate knowledge of C is require, and some experience with C++ and/or Java would be helpful.  But the most important thing is a working knowledge of C-style syntax.<br />
<br />
Thanks all, and happy Thanksgiving!</description>
			<pubDate>Thu, 27 Nov 2003 16:04:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Thanks</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>I do C from 1990, I have always liked NetBSD.<br />
Thanks Owen for reviewing that book.<br />
<br />
I'm going to a buy a copy.<br />
<br />
Thanks again!</description>
			<pubDate>Thu, 27 Nov 2003 17:55:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>C centrism</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Reviewer:<br />
&quot;My only other complaint is this book's C-family centrism, focusing on C, C++, and Java&quot;<br />
<br />
The book briefly mentions that there is going to be a volume two which will have scripting languages covered. This book is great, maybe one of the best books I've read on programming, I'm eagerly awaiting vol. 2.</description>
			<pubDate>Thu, 27 Nov 2003 18:42:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: Centrism</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>This is probably going to start a flame war......but here goes....<br />
<br />
I come from the philosophy that if you understand C,C++ porting syntax to another language is straight forward.<br />
<br />
Scripting languages especially (I'm thinking PERL, Python etc.), if you jump right into these languages, learning them is cool.....but then moving onto C, you're in for another steep learning curve.<br />
<br />
Learning C/C++, and then switching to Python/Perl seems to be such an easier transfer of knowledge.<br />
<br />
I love Python (and some other script languages) for its quick application development, but I think I understand why this book is focussed on C.....it is probably the most widely used to app development, and once you get C/C++ style down, you can transfer it to other languages fairly simply.</description>
			<pubDate>Thu, 27 Nov 2003 19:46:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>Re: Centrism</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>I come from the philosophy that if you understand C,C++ porting syntax to another language is straight forward. <br />
<br />
True for block-like languages, like the most popular (Pascal, Java, Python, Perl, Ruby, PHP, Lua, etc.) are nowadays.  Not true for Lisp, Haskell or Prolog, for example.</description>
			<pubDate>Fri, 28 Nov 2003 14:20:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>More on Centrism</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Your comment that most programming is done in C or any of the other Algol family of languages is a bit off the mark.  This assumption is relevant only in the open source community.  There is upwards of a billion lines of COBOL code generated every year in the financial sector alone.  The aerospace community is Ada centric and there is a lot of legacy code that remains (and will continue for a long time) in Fortran.  In my opinion Steve McConnell's book "Code Complete" still remains a classic particularly because of his insistence on not focussing on one particular language.</description>
			<pubDate>Fri, 28 Nov 2003 17:45:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>i'm part way through reading this book</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>All the code samples do come from NetBSD because the publisher was comfortable with that license.  (This was in the preface).<br />
<br />
I think it's good to be familiar with programming idioms.  That's what I've got out of the book so far.</description>
			<pubDate>Sat, 29 Nov 2003 06:16:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: i'm part way through reading this book</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Will this help a novice.<br />
I have read K&amp;R and Practical C.<br />
I tried to read c unleashed.</description>
			<pubDate>Sun, 30 Nov 2003 00:38:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE:I'm part way through reading this book</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Not all of the examples are from NetBSD, a few are from a Java program (something to do with Apache) and Apache itself. He did choose BSD licenses because of the publisher perhaps, but the author is a FreeBSD committer so he likes BSD.</description>
			<pubDate>Sun, 30 Nov 2003 05:16:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE: i'm part way through reading this book</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>This book starts out on a very easy level, it should be fine for anyone who's semi-literate at C, at least for the first few sections of the book. In fact it should improve your ability to write code as well as read it due to this coverage of basic coding structures and practice.</description>
			<pubDate>Sun, 30 Nov 2003 05:46:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>RE:  More on Centrism</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>&gt;&gt; The aerospace community is Ada centric...<br />
<br />
Not true. The aerospace community is Fortran centric.<br />
<br />
Tom H.<br />
Aerospace Engineer</description>
			<pubDate>Sun, 30 Nov 2003 23:48:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>When will COBOL die?</title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>I've used several programming languages over the years but the only one I've ever HATED is COBOL. Aside from it's installed base, are there any good reasons to keep using it?</description>
			<pubDate>Mon, 01 Dec 2003 03:03:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>

		<item>
			<title>s/it's/its </title>
			<link>http://osnews.com/thread?</link>
			<guid isPermaLink="true">http://osnews.com/thread?</guid>
			<description>Damn fat fingers. Hey, how about a preview mode, guys?</description>
			<pubDate>Mon, 01 Dec 2003 03:05:00 GMT</pubDate>
			<author>donotreply@osnews.com (Anonymous)</author>
			<category>Comments</category>
		</item>
	</channel>
</rss>
