<?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: Invent Your Own Computer Games with Python</title>
	<atom:link href="http://coffeeghost.net/invent-your-own-computer-games-with-python/feed/" rel="self" type="application/rss+xml" />
	<link>http://coffeeghost.net</link>
	<description>Al Sweigart&#039;s blog.</description>
	<lastBuildDate>Fri, 27 Apr 2012 00:50:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: Werner</title>
		<link>http://coffeeghost.net/invent-your-own-computer-games-with-python/comment-page-1/#comment-136504</link>
		<dc:creator>Werner</dc:creator>
		<pubDate>Tue, 14 Feb 2012 13:11:46 +0000</pubDate>
		<guid isPermaLink="false">http://coffeeghost.net/invent-your-own-computer-games-with-python/#comment-136504</guid>
		<description>Solution:
The aforementioned error occurs only with links like
&quot;http://invpy.com/starPusherImages.zip&quot; as in the online version of the book.
It must spell
&quot;http://inventwithpython.com/starpusher.zip&quot;
Please correct the link in the online version. Thanks</description>
		<content:encoded><![CDATA[<p>Solution:<br />
The aforementioned error occurs only with links like<br />
&#8220;http://invpy.com/starPusherImages.zip&#8221; as in the online version of the book.<br />
It must spell<br />
&#8220;http://inventwithpython.com/starpusher.zip&#8221;</p>
<p>Please correct the link in the online version. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Werner</title>
		<link>http://coffeeghost.net/invent-your-own-computer-games-with-python/comment-page-1/#comment-136503</link>
		<dc:creator>Werner</dc:creator>
		<pubDate>Tue, 14 Feb 2012 12:49:06 +0000</pubDate>
		<guid isPermaLink="false">http://coffeeghost.net/invent-your-own-computer-games-with-python/#comment-136503</guid>
		<description>In Making Games with P&amp;P, I had the following problem:
I downloaded the media archives flippyimages.zip and starPusherImages.zip (Chapters 9, 10). Trying to unpack, I got error messages:
Win (7-zip): This is no valid archive.
Ubuntu (unzip and Gnome File Roller):
tmp$ unzip flippyimages.zip
Archive:  flippyimages.zip
  End-of-central-directory signature not found.  Either this file is not
  a zipfile, or it constitutes one disk of a multi-part archive.  In the
  latter case the central directory and zipfile comment will be found on
  the last disk(s) of this archive.
note:  flippyimages.zip may be a plain executable, not an archive
unzip:  cannot find zipfile directory in one of flippyimages.zip or
        flippyimages.zip.zip, and cannot find flippyimages.zip.ZIP, period.
Simply clicking on the archive link gives me an Error 404 plus
The requested URL /flippyimages.zip was not found on this server.</description>
		<content:encoded><![CDATA[<p>In Making Games with P&amp;P, I had the following problem:</p>
<p>I downloaded the media archives flippyimages.zip and starPusherImages.zip (Chapters 9, 10). Trying to unpack, I got error messages:</p>
<p>Win (7-zip): This is no valid archive.</p>
<p>Ubuntu (unzip and Gnome File Roller):</p>
<p>tmp$ unzip flippyimages.zip<br />
Archive:  flippyimages.zip<br />
  End-of-central-directory signature not found.  Either this file is not<br />
  a zipfile, or it constitutes one disk of a multi-part archive.  In the<br />
  latter case the central directory and zipfile comment will be found on<br />
  the last disk(s) of this archive.<br />
note:  flippyimages.zip may be a plain executable, not an archive<br />
unzip:  cannot find zipfile directory in one of flippyimages.zip or<br />
        flippyimages.zip.zip, and cannot find flippyimages.zip.ZIP, period.</p>
<p>Simply clicking on the archive link gives me an Error 404 plus<br />
The requested URL /flippyimages.zip was not found on this server.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nilotpal</title>
		<link>http://coffeeghost.net/invent-your-own-computer-games-with-python/comment-page-1/#comment-136445</link>
		<dc:creator>Nilotpal</dc:creator>
		<pubDate>Sun, 05 Feb 2012 12:23:57 +0000</pubDate>
		<guid isPermaLink="false">http://coffeeghost.net/invent-your-own-computer-games-with-python/#comment-136445</guid>
		<description>Ur books r simply great.Easy to learn ..looking forward for ur next books</description>
		<content:encoded><![CDATA[<p>Ur books r simply great.Easy to learn ..looking forward for ur next books</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Werner</title>
		<link>http://coffeeghost.net/invent-your-own-computer-games-with-python/comment-page-1/#comment-136393</link>
		<dc:creator>Werner</dc:creator>
		<pubDate>Sun, 29 Jan 2012 16:42:44 +0000</pubDate>
		<guid isPermaLink="false">http://coffeeghost.net/invent-your-own-computer-games-with-python/#comment-136393</guid>
		<description>Thank You for the excellent book.
I think there is a bug in sonar (ch. 13).
Line 83: chests.remove([x, y])
should be replaced by
    while [x,y] in chests:
        chests.remove([x, y])
because there is the faint possibility that two or more chests may lie at the same place.</description>
		<content:encoded><![CDATA[<p>Thank You for the excellent book.</p>
<p>I think there is a bug in sonar (ch. 13).<br />
Line 83: chests.remove([x, y])<br />
should be replaced by</p>
<p>    while [x,y] in chests:<br />
        chests.remove([x, y])</p>
<p>because there is the faint possibility that two or more chests may lie at the same place.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Treasure Hunt</title>
		<link>http://coffeeghost.net/invent-your-own-computer-games-with-python/comment-page-1/#comment-134916</link>
		<dc:creator>Treasure Hunt</dc:creator>
		<pubDate>Mon, 29 Aug 2011 12:30:53 +0000</pubDate>
		<guid isPermaLink="false">http://coffeeghost.net/invent-your-own-computer-games-with-python/#comment-134916</guid>
		<description>A treasure hunt is one of many different types of games which can have one or more players who try to find hidden articles, locations or places by using a series of clues. Treasure hunt games may be an indoor or outdoor activity. Outdoors they can be played in a garden or the treasure could be located anywhere around the world.</description>
		<content:encoded><![CDATA[<p>A treasure hunt is one of many different types of games which can have one or more players who try to find hidden articles, locations or places by using a series of clues. Treasure hunt games may be an indoor or outdoor activity. Outdoors they can be played in a garden or the treasure could be located anywhere around the world.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jane "Treasure Hunt" McDonell</title>
		<link>http://coffeeghost.net/invent-your-own-computer-games-with-python/comment-page-1/#comment-124284</link>
		<dc:creator>Jane "Treasure Hunt" McDonell</dc:creator>
		<pubDate>Mon, 03 May 2010 18:35:57 +0000</pubDate>
		<guid isPermaLink="false">http://coffeeghost.net/invent-your-own-computer-games-with-python/#comment-124284</guid>
		<description>As someone who started programming as a teenager writing computer games as a hobby - thanks for this book. I have passed it on to my son to see if anything wears off on him...</description>
		<content:encoded><![CDATA[<p>As someone who started programming as a teenager writing computer games as a hobby &#8211; thanks for this book. I have passed it on to my son to see if anything wears off on him&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stuart</title>
		<link>http://coffeeghost.net/invent-your-own-computer-games-with-python/comment-page-1/#comment-117646</link>
		<dc:creator>Stuart</dc:creator>
		<pubDate>Tue, 30 Mar 2010 04:04:04 +0000</pubDate>
		<guid isPermaLink="false">http://coffeeghost.net/invent-your-own-computer-games-with-python/#comment-117646</guid>
		<description>I have this latest Invent Your Own Computer Games with Python PDF and am looking forward to it&#039;s brilliant content to teach my Software Design class on Python. I&#039;m not too good with this language and before I start teaching them with it, have to ask, why am I getting silly little problems with all the code I have downloaded from your site in the zip file. I get a fault on a line each time I run it, and can&#039;t for the life of me tell what is the problem.
Other than this, if I can get the code to work, it is going to be a blessing to be able to use such a well put together teaching tool.
Keep up the good work, and I hope you can help this code dummy very soon so I can use the PDF. :)</description>
		<content:encoded><![CDATA[<p>I have this latest Invent Your Own Computer Games with Python PDF and am looking forward to it&#8217;s brilliant content to teach my Software Design class on Python. I&#8217;m not too good with this language and before I start teaching them with it, have to ask, why am I getting silly little problems with all the code I have downloaded from your site in the zip file. I get a fault on a line each time I run it, and can&#8217;t for the life of me tell what is the problem.</p>
<p>Other than this, if I can get the code to work, it is going to be a blessing to be able to use such a well put together teaching tool.</p>
<p>Keep up the good work, and I hope you can help this code dummy very soon so I can use the PDF. :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jav</title>
		<link>http://coffeeghost.net/invent-your-own-computer-games-with-python/comment-page-1/#comment-116970</link>
		<dc:creator>Jav</dc:creator>
		<pubDate>Wed, 24 Mar 2010 18:32:08 +0000</pubDate>
		<guid isPermaLink="false">http://coffeeghost.net/invent-your-own-computer-games-with-python/#comment-116970</guid>
		<description>The best way for reviewing programming. Thank you Al!</description>
		<content:encoded><![CDATA[<p>The best way for reviewing programming. Thank you Al!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://coffeeghost.net/invent-your-own-computer-games-with-python/comment-page-1/#comment-111721</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Fri, 26 Feb 2010 21:03:23 +0000</pubDate>
		<guid isPermaLink="false">http://coffeeghost.net/invent-your-own-computer-games-with-python/#comment-111721</guid>
		<description>Really a superior piece of work here, Al.  This is definitely something that I (a 46 yo non-programmer) want to work through over my forthcoming summer vacation.  It looks fun, and the explanations are just spot on.
You have a real talent for explaining what you are doing with the code and why you are doing it ... and that is just the comments sections of your actual programs!  The textual narrative expands your well documented scripts, giving a fuller accounting of your thinking in defining and addressing the problems writing the program is intended to solve.
This is a text that will surely appeal to all programmers who want to cut to the chase on how to resolve those typical problems encountered in creative program writing, and it certainly appeals to me as an interested layperson.
FWIW, this warrants being converted into a dead-tree version.</description>
		<content:encoded><![CDATA[<p>Really a superior piece of work here, Al.  This is definitely something that I (a 46 yo non-programmer) want to work through over my forthcoming summer vacation.  It looks fun, and the explanations are just spot on.</p>
<p>You have a real talent for explaining what you are doing with the code and why you are doing it &#8230; and that is just the comments sections of your actual programs!  The textual narrative expands your well documented scripts, giving a fuller accounting of your thinking in defining and addressing the problems writing the program is intended to solve.</p>
<p>This is a text that will surely appeal to all programmers who want to cut to the chase on how to resolve those typical problems encountered in creative program writing, and it certainly appeals to me as an interested layperson.</p>
<p>FWIW, this warrants being converted into a dead-tree version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: unleash_the_source!</title>
		<link>http://coffeeghost.net/invent-your-own-computer-games-with-python/comment-page-1/#comment-109370</link>
		<dc:creator>unleash_the_source!</dc:creator>
		<pubDate>Mon, 15 Feb 2010 19:14:33 +0000</pubDate>
		<guid isPermaLink="false">http://coffeeghost.net/invent-your-own-computer-games-with-python/#comment-109370</guid>
		<description>Is there a forum where we can discuss the lessons in the book and ask questions?</description>
		<content:encoded><![CDATA[<p>Is there a forum where we can discuss the lessons in the book and ask questions?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

