<?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 Garfield Computer Science</title>
	<atom:link href="http://www.garfieldcs.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.garfieldcs.com</link>
	<description></description>
	<lastBuildDate>Thu, 10 Jun 2010 22:15:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Great advice from &#8217;09/&#8217;10 AP CS! by Nathan Hesterberg</title>
		<link>http://www.garfieldcs.com/2010/06/great-advice-from-0910-ap-cs/comment-page-1/#comment-383</link>
		<dc:creator>Nathan Hesterberg</dc:creator>
		<pubDate>Thu, 10 Jun 2010 22:15:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.garfieldcs.com/?p=1357#comment-383</guid>
		<description>I&#039;m Nathan Hesterberg. I&#039;m not as good as my brother. Someday, I&#039;m going to marry John Christiansen and we&#039;ll dance sassy dances in our sassy pantses all night long.

PEACE!</description>
		<content:encoded><![CDATA[<p>I&#8217;m Nathan Hesterberg. I&#8217;m not as good as my brother. Someday, I&#8217;m going to marry John Christiansen and we&#8217;ll dance sassy dances in our sassy pantses all night long.</p>
<p>PEACE!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Master of the Universe. by Gus</title>
		<link>http://www.garfieldcs.com/2010/03/master-of-the-universe/comment-page-1/#comment-376</link>
		<dc:creator>Gus</dc:creator>
		<pubDate>Thu, 10 Jun 2010 06:22:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.garfieldcs.com/?p=1114#comment-376</guid>
		<description>Here&#039;s some relevance I guess.

http://myapokalips.com/public/cartoons/021_Robot_Tattoo.png</description>
		<content:encoded><![CDATA[<p>Here&#8217;s some relevance I guess.</p>
<p><a href="http://myapokalips.com/public/cartoons/021_Robot_Tattoo.png" rel="nofollow" onclick="urchinTracker('/outgoing/myapokalips.com/public/cartoons/021_Robot_Tattoo.png?referer=');">http://myapokalips.com/public/cartoons/021_Robot_Tattoo.png</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Robot activities by Jason Evans</title>
		<link>http://www.garfieldcs.com/2010/05/robot-activities-2/comment-page-1/#comment-302</link>
		<dc:creator>Jason Evans</dc:creator>
		<pubDate>Thu, 20 May 2010 20:55:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.garfieldcs.com/?p=1264#comment-302</guid>
		<description>for i in range(50):
  mood = &quot;soo confuusing&quot;
  jasonsmood= &quot; i get it&quot;
  jasonsnewmood=&quot;i dont get it&quot;
while(jasonsmood != jasonsnewmood):
  print mood
else:
  print &quot;i get it&quot;</description>
		<content:encoded><![CDATA[<p>for i in range(50):<br />
  mood = &#8220;soo confuusing&#8221;<br />
  jasonsmood= &#8221; i get it&#8221;<br />
  jasonsnewmood=&#8221;i dont get it&#8221;<br />
while(jasonsmood != jasonsnewmood):<br />
  print mood<br />
else:<br />
  print &#8220;i get it&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extra Credit: read a book! by Will McNutt</title>
		<link>http://www.garfieldcs.com/2010/02/extra-credit-read-a-book/comment-page-1/#comment-300</link>
		<dc:creator>Will McNutt</dc:creator>
		<pubDate>Thu, 20 May 2010 02:37:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.garfieldcs.com/?p=1017#comment-300</guid>
		<description>This is a brief discussion of the book The C Programming Language, by Brian W. Kernichan and Dennis M. Ritchie, with a primary focus on its content. For sake of the anticipated audience, this will be written from a perspective which assumes a knowledge of the Java programming language. C was initially designed by Dennis Ritchie (one of the authors of The C Programming Language), for use on a Unix operating system. Created in the 1970&#039;s, C is one of the oldest programming languages still commonly used, although these days its primary function seems to be as a language for building operating systems, compilers, and other such low-level software.
	The C programming language adheres to a procedural programming paradigm, with the object-oriented paradigm central to Java, among other paradigms, being noticeably absent. As such, methods may logically be treated as static instances, therefore making those methods functions, rather than methods. Additionally, C only offers single-threaded program reading, making for invariably linear programming. Significantly, unlike in Java, C offers no automated garbage collection. In a large-scale program where memory constraints have a great deal of importance, memory overflow will occur if garbage collection is not done, which requires the program to manually perform garbage collection. To do that, pointers must be used.
	Pointers are essentially references to a particular location in a system&#039;s memory, often pointing to a variable or even a function. With a pointer or pointers, garbage collection can be removed through manipulation of that pointer. This has both positive and negative effects: manually programming the deallocation of system memory does not often lend itself to legibility in coding, however, it also allows for greater freedom and efficiency of related processes. 
	To briefly summarize the language: C is a much more powerful language than Java owing to its lower-level &quot;bare metal&quot; approach (Java was built on C), however for many it is a  very difficult language, simply because in order to use it properly and to its full extent, one must be careful and be able to write elegant code. Furthermore, while the C Standard Library provides a myriad of functions, many methods and routines readily available in other, more modern languages must be hand-coded. On the book itself, it is particularly well-written and presents information with a marked level of clarity difficult to find elsewhere. Be warned though: C is not a language for one-line solutions to all your coding problems.</description>
		<content:encoded><![CDATA[<p>This is a brief discussion of the book The C Programming Language, by Brian W. Kernichan and Dennis M. Ritchie, with a primary focus on its content. For sake of the anticipated audience, this will be written from a perspective which assumes a knowledge of the Java programming language. C was initially designed by Dennis Ritchie (one of the authors of The C Programming Language), for use on a Unix operating system. Created in the 1970&#8242;s, C is one of the oldest programming languages still commonly used, although these days its primary function seems to be as a language for building operating systems, compilers, and other such low-level software.<br />
	The C programming language adheres to a procedural programming paradigm, with the object-oriented paradigm central to Java, among other paradigms, being noticeably absent. As such, methods may logically be treated as static instances, therefore making those methods functions, rather than methods. Additionally, C only offers single-threaded program reading, making for invariably linear programming. Significantly, unlike in Java, C offers no automated garbage collection. In a large-scale program where memory constraints have a great deal of importance, memory overflow will occur if garbage collection is not done, which requires the program to manually perform garbage collection. To do that, pointers must be used.<br />
	Pointers are essentially references to a particular location in a system&#8217;s memory, often pointing to a variable or even a function. With a pointer or pointers, garbage collection can be removed through manipulation of that pointer. This has both positive and negative effects: manually programming the deallocation of system memory does not often lend itself to legibility in coding, however, it also allows for greater freedom and efficiency of related processes.<br />
	To briefly summarize the language: C is a much more powerful language than Java owing to its lower-level &#8220;bare metal&#8221; approach (Java was built on C), however for many it is a  very difficult language, simply because in order to use it properly and to its full extent, one must be careful and be able to write elegant code. Furthermore, while the C Standard Library provides a myriad of functions, many methods and routines readily available in other, more modern languages must be hand-coded. On the book itself, it is particularly well-written and presents information with a marked level of clarity difficult to find elsewhere. Be warned though: C is not a language for one-line solutions to all your coding problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extra Credit: read a book! by Ben Chun</title>
		<link>http://www.garfieldcs.com/2010/02/extra-credit-read-a-book/comment-page-1/#comment-285</link>
		<dc:creator>Ben Chun</dc:creator>
		<pubDate>Sat, 15 May 2010 23:49:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.garfieldcs.com/?p=1017#comment-285</guid>
		<description>Everything and More is great! There&#039;s no one quite like DFW was as a writer. Definitely really helpful in understanding the achievements of calculus. And inspirational as well: http://www.benchun.net/2008/11/everything-and-more/</description>
		<content:encoded><![CDATA[<p>Everything and More is great! There&#8217;s no one quite like DFW was as a writer. Definitely really helpful in understanding the achievements of calculus. And inspirational as well: <a href="http://www.benchun.net/2008/11/everything-and-more/" rel="nofollow" onclick="urchinTracker('/outgoing/www.benchun.net/2008/11/everything-and-more/?referer=');">http://www.benchun.net/2008/11/everything-and-more/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extra Credit: read a book! by Evan Sanders</title>
		<link>http://www.garfieldcs.com/2010/02/extra-credit-read-a-book/comment-page-1/#comment-281</link>
		<dc:creator>Evan Sanders</dc:creator>
		<pubDate>Wed, 12 May 2010 22:20:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.garfieldcs.com/?p=1017#comment-281</guid>
		<description>The book that I read was On Intelligence, by Jeff Hawkins. The book was about how our ever expanding knowledge of the brain can be used to make smarter computers.

The bits of the book about memory and how the brain uses that information for predicting future events was the most interesting part for me. Basically the brain interprets all information as patterns, and it can use these recurring patterns to make predictions. Oooooooh!</description>
		<content:encoded><![CDATA[<p>The book that I read was On Intelligence, by Jeff Hawkins. The book was about how our ever expanding knowledge of the brain can be used to make smarter computers.</p>
<p>The bits of the book about memory and how the brain uses that information for predicting future events was the most interesting part for me. Basically the brain interprets all information as patterns, and it can use these recurring patterns to make predictions. Oooooooh!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Networks by Michael Rosenberger</title>
		<link>http://www.garfieldcs.com/2010/05/networks/comment-page-1/#comment-278</link>
		<dc:creator>Michael Rosenberger</dc:creator>
		<pubDate>Wed, 12 May 2010 01:48:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.garfieldcs.com/?p=1256#comment-278</guid>
		<description>The visual traceroute is awesome! Just wasted 15 minutes tracing packets from all sorts of sites in Asia and stuff.</description>
		<content:encoded><![CDATA[<p>The visual traceroute is awesome! Just wasted 15 minutes tracing packets from all sorts of sites in Asia and stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Extra Credit: read a book! by Andrew McNutt</title>
		<link>http://www.garfieldcs.com/2010/02/extra-credit-read-a-book/comment-page-1/#comment-277</link>
		<dc:creator>Andrew McNutt</dc:creator>
		<pubDate>Tue, 11 May 2010 18:00:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.garfieldcs.com/?p=1017#comment-277</guid>
		<description>I read the book everything and more: acompact history of infinity by david foster wallace (http://www.amazon.com/Everything-More-Compact-Infinity-Discoveries/dp/0393003388).

From the start the book declared that its project was to explain the idea of Infinite Sets, and how there are different sizes of infinity. It does this by explaining all the math that leads up to that idea (2500 years aprox) from Zeno to Aristotle to Newton to Cantor. Its rough going.

However the ideas prsented are very powerful and have applications all over. To wit, it deeply explains set theory, and all the ins and outs of it. Mid way through this explaination it casually says &#039;oh and set theory gradually became the basis for programming arrays&#039;...

Highly recomended. But difficult.</description>
		<content:encoded><![CDATA[<p>I read the book everything and more: acompact history of infinity by david foster wallace (<a href="http://www.amazon.com/Everything-More-Compact-Infinity-Discoveries/dp/0393003388" rel="nofollow" onclick="urchinTracker('/outgoing/www.amazon.com/Everything-More-Compact-Infinity-Discoveries/dp/0393003388?referer=');">http://www.amazon.com/Everything-More-Compact-Infinity-Discoveries/dp/0393003388</a>).</p>
<p>From the start the book declared that its project was to explain the idea of Infinite Sets, and how there are different sizes of infinity. It does this by explaining all the math that leads up to that idea (2500 years aprox) from Zeno to Aristotle to Newton to Cantor. Its rough going.</p>
<p>However the ideas prsented are very powerful and have applications all over. To wit, it deeply explains set theory, and all the ins and outs of it. Mid way through this explaination it casually says &#8216;oh and set theory gradually became the basis for programming arrays&#8217;&#8230;</p>
<p>Highly recomended. But difficult.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lists tutorial by Ms. Martin</title>
		<link>http://www.garfieldcs.com/2010/05/lists-tutoria/comment-page-1/#comment-271</link>
		<dc:creator>Ms. Martin</dc:creator>
		<pubDate>Tue, 04 May 2010 00:15:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.garfieldcs.com/?p=1234#comment-271</guid>
		<description>Of course you did because you rock!  *virtual high five*

And remember, practice makes more awesome...</description>
		<content:encoded><![CDATA[<p>Of course you did because you rock!  *virtual high five*</p>
<p>And remember, practice makes more awesome&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Lists tutorial by Jason Evans</title>
		<link>http://www.garfieldcs.com/2010/05/lists-tutoria/comment-page-1/#comment-270</link>
		<dc:creator>Jason Evans</dc:creator>
		<pubDate>Mon, 03 May 2010 21:27:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.garfieldcs.com/?p=1234#comment-270</guid>
		<description>That was alot to deal with but the funny thing was i &quot;ACTUALLY&quot; understood it in a way 
i am != going to forget this</description>
		<content:encoded><![CDATA[<p>That was alot to deal with but the funny thing was i &#8220;ACTUALLY&#8221; understood it in a way<br />
i am != going to forget this</p>
]]></content:encoded>
	</item>
</channel>
</rss>
