<?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 20papercups :: Michael Marner&#039;s Website</title>
	<atom:link href="http://www.20papercups.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.20papercups.net</link>
	<description>The (awesome) website of Michael Marner</description>
	<lastBuildDate>Sat, 27 Feb 2010 01:10:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Java Tutorial 01 &#8211; Intro To Java by Yilak</title>
		<link>http://www.20papercups.net/java-vtm-tutorials/java01-intro/comment-page-1/#comment-298</link>
		<dc:creator>Yilak</dc:creator>
		<pubDate>Sat, 27 Feb 2010 01:10:35 +0000</pubDate>
		<guid isPermaLink="false">http://marner.servebeer.com/wordpress/?p=50#comment-298</guid>
		<description>Thank you very informative...

I am thinking about getting my Masters in Information Systems.

Yilak</description>
		<content:encoded><![CDATA[<p>Thank you very informative&#8230;</p>
<p>I am thinking about getting my Masters in Information Systems.</p>
<p>Yilak</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Tutorial 01 &#8211; Intro To Java by Murali</title>
		<link>http://www.20papercups.net/java-vtm-tutorials/java01-intro/comment-page-1/#comment-297</link>
		<dc:creator>Murali</dc:creator>
		<pubDate>Tue, 16 Feb 2010 22:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://marner.servebeer.com/wordpress/?p=50#comment-297</guid>
		<description>Thanks for your useful videos Mr.Michael</description>
		<content:encoded><![CDATA[<p>Thanks for your useful videos Mr.Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Tutorial 04 &#8211; Control Structures by Michael</title>
		<link>http://www.20papercups.net/java-vtm-tutorials/java-vtm04-control-structures/comment-page-1/#comment-295</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sun, 14 Feb 2010 08:06:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.20papercups.net/?p=78#comment-295</guid>
		<description>Yes

If you have a look in the errata page, I&#039;ve given some code that uses Scanner. Back in the pre Java 1.5 days, Scanner didn&#039;t exist, and it was a bit of a pain to read from the keyboard.

Cheers
Michael</description>
		<content:encoded><![CDATA[<p>Yes</p>
<p>If you have a look in the errata page, I&#8217;ve given some code that uses Scanner. Back in the pre Java 1.5 days, Scanner didn&#8217;t exist, and it was a bit of a pain to read from the keyboard.</p>
<p>Cheers<br />
Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Tutorial 04 &#8211; Control Structures by azuro</title>
		<link>http://www.20papercups.net/java-vtm-tutorials/java-vtm04-control-structures/comment-page-1/#comment-294</link>
		<dc:creator>azuro</dc:creator>
		<pubDate>Sat, 13 Feb 2010 08:32:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.20papercups.net/?p=78#comment-294</guid>
		<description>You can import the Scanner from java.util.Scanner</description>
		<content:encoded><![CDATA[<p>You can import the Scanner from java.util.Scanner</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Tutorial 01 &#8211; Intro To Java by Tom</title>
		<link>http://www.20papercups.net/java-vtm-tutorials/java01-intro/comment-page-1/#comment-293</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Wed, 10 Feb 2010 17:05:25 +0000</pubDate>
		<guid isPermaLink="false">http://marner.servebeer.com/wordpress/?p=50#comment-293</guid>
		<description>Great Video. You taught me better than my professor.</description>
		<content:encoded><![CDATA[<p>Great Video. You taught me better than my professor.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Tutorial 03 &#8211; Arithmetic Operators by David</title>
		<link>http://www.20papercups.net/java-vtm-tutorials/java-vtm03-arithmetic-operators/comment-page-1/#comment-292</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 04 Feb 2010 17:37:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.20papercups.net/?p=83#comment-292</guid>
		<description>Again great tutorial!
Quick trick for mental math of 11 times any two digit number: add the two digits from the non-11 number together and &quot;insert&quot; the result in the middle of the two digits.
11 * 24 = 2 (2+4=6) 4 , so 11 * 24 = 264
11 * 17 = 1 (1+7=8) 7 , so 11 * 17 = 187
For numbers whose addition together will be more than 10 it gets a bit trickier, but still possible...
11 * 87 = 8 (8+7=15) 7  = 8(+1) 5 7 , the 5 goes in between 8 and 7 and you add 1 to the number on the left (8 in this case), so 11 * 87 = 957. 
Finally, 11 * 12 = 1 (1+2=3) 2, so 11 * 12 = 132!
Thanks again for the great vids.</description>
		<content:encoded><![CDATA[<p>Again great tutorial!<br />
Quick trick for mental math of 11 times any two digit number: add the two digits from the non-11 number together and &#8220;insert&#8221; the result in the middle of the two digits.<br />
11 * 24 = 2 (2+4=6) 4 , so 11 * 24 = 264<br />
11 * 17 = 1 (1+7=8) 7 , so 11 * 17 = 187<br />
For numbers whose addition together will be more than 10 it gets a bit trickier, but still possible&#8230;<br />
11 * 87 = 8 (8+7=15) 7  = 8(+1) 5 7 , the 5 goes in between 8 and 7 and you add 1 to the number on the left (8 in this case), so 11 * 87 = 957.<br />
Finally, 11 * 12 = 1 (1+2=3) 2, so 11 * 12 = 132!<br />
Thanks again for the great vids.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Tutorial 02 &#8211; Datatypes &amp; Variables by David</title>
		<link>http://www.20papercups.net/java-vtm-tutorials/java-vtm02-datatypes-variables/comment-page-1/#comment-291</link>
		<dc:creator>David</dc:creator>
		<pubDate>Thu, 04 Feb 2010 16:45:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.20papercups.net/?p=73#comment-291</guid>
		<description>Thanks for the tutorials! Very thorough, informative, helpful and entertaining!</description>
		<content:encoded><![CDATA[<p>Thanks for the tutorials! Very thorough, informative, helpful and entertaining!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Tutorial 03 &#8211; Arithmetic Operators by Michael</title>
		<link>http://www.20papercups.net/java-vtm-tutorials/java-vtm03-arithmetic-operators/comment-page-1/#comment-290</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Wed, 03 Feb 2010 05:52:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.20papercups.net/?p=83#comment-290</guid>
		<description>Hey 

Yep, to begin with, most places would teach java in the same order. You need to know how to print stuff, You need to know about variables, you need to know about conditionals, looping, and arrays, more or less in that order. 

Glad you like the videos!
Michael</description>
		<content:encoded><![CDATA[<p>Hey </p>
<p>Yep, to begin with, most places would teach java in the same order. You need to know how to print stuff, You need to know about variables, you need to know about conditionals, looping, and arrays, more or less in that order. </p>
<p>Glad you like the videos!<br />
Michael</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Tutorial 03 &#8211; Arithmetic Operators by beiko</title>
		<link>http://www.20papercups.net/java-vtm-tutorials/java-vtm03-arithmetic-operators/comment-page-1/#comment-289</link>
		<dc:creator>beiko</dc:creator>
		<pubDate>Mon, 01 Feb 2010 01:57:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.20papercups.net/?p=83#comment-289</guid>
		<description>dude this is exactly what were doing in first year object base programming
the exact same material you are teaching in the same order
thanks a lot its like having a tutor for my classes</description>
		<content:encoded><![CDATA[<p>dude this is exactly what were doing in first year object base programming<br />
the exact same material you are teaching in the same order<br />
thanks a lot its like having a tutor for my classes</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Java Tutorial 07 &#8211; Arrays by Joe</title>
		<link>http://www.20papercups.net/java-vtm-tutorials/java-vtm07-arrays/comment-page-1/#comment-288</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Mon, 01 Feb 2010 01:25:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.20papercups.net/?p=89#comment-288</guid>
		<description>great videos, absolutely useful and very balanced introduction to many topics..

and great reference/subversive shoutout to bad religion!</description>
		<content:encoded><![CDATA[<p>great videos, absolutely useful and very balanced introduction to many topics..</p>
<p>and great reference/subversive shoutout to bad religion!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
