<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>PyGame</title>
	<atom:link href="http://mattalui.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mattalui.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Sun, 23 Jan 2011 21:54:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='mattalui.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>PyGame</title>
		<link>http://mattalui.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://mattalui.wordpress.com/osd.xml" title="PyGame" />
	<atom:link rel='hub' href='http://mattalui.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Makin&#8217; those servos work!</title>
		<link>http://mattalui.wordpress.com/2011/01/23/makin-those-servos-work/</link>
		<comments>http://mattalui.wordpress.com/2011/01/23/makin-those-servos-work/#comments</comments>
		<pubDate>Sun, 23 Jan 2011 21:54:27 +0000</pubDate>
		<dc:creator>mattalui</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattalui.wordpress.com/?p=31</guid>
		<description><![CDATA[I&#8217;ve kind of taken a break with pyton and pygame, and I&#8217;ve started doing things with the Arduino board. So I now own an Arduino Diecimila board. So, of course, I did many of the arduino tutorials on the arduino website. I did that until I thought I had  basic understanding of Arduino. So I moved [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=31&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve kind of taken a break with pyton and pygame, and I&#8217;ve started doing things with the Arduino board. So I now own an Arduino Diecimila board. So, of course, I did many of the <a href="http://www.arduino.cc/en/Tutorial/HomePage">arduino tutorials</a> on the arduino website.</p>
<p>I did that until I thought I had  basic understanding of Arduino. So I moved on to a slightly bigger project. I was going to build a simple robot using the Arduino.</p>
<p>To start I took the main part of my Parallax Boe 2 off of the body part, so I had something to build with. And, as most robots need <strong>SOMETHING</strong> to do I hooked up the servos used for the wheels to my Arduino/solderless breadboard using the following schematic:</p>
<p> <a href="http://mattalui.files.wordpress.com/2011/01/servoschematics.png"><img class="size-medium wp-image-32 alignnone" title="servoschematics" src="http://mattalui.files.wordpress.com/2011/01/servoschematics.png?w=329&#038;h=205" alt="" width="329" height="205" /></a></p>
<p>For those who don&#8217;t know: Vdd is power, Vss is the ground, and obviously the I/O pin is what gets conneted to the Arduino boards so that the servo actually knows what to do.</p>
<p>After a long afternoon of exploring PWM (Pulse Width <span style="color:#000000;">Modulation) and how to use it, we tried to actually get the sevos moving. As with most projects I do, it didn&#8217;t work at first. So after extensive research online I found this code:</span></p>
<p><span style="color:#808080;">int servoPin = 7;</span><br />
<span style="color:#808080;">void setup()</span><br />
<span style="color:#808080;">{</span><br />
<span style="color:#808080;">pinMode(servoPin,OUTPUT);</span><br />
<span style="color:#808080;">}</span><br />
<span style="color:#808080;">void loop()</span><br />
<span style="color:#808080;">{</span><br />
<span style="color:#808080;">int temp;</span><br />
<span style="color:#808080;">for (temp = 0; temp &lt;= 200; temp++)</span><br />
<span style="color:#808080;">{</span><br />
<span style="color:#808080;">digitalWrite(servoPin,HIGH);</span><br />
<span style="color:#808080;">delayMicroseconds(1500); // 1.5ms</span><br />
<span style="color:#808080;">digitalWrite(servoPin,LOW);</span><br />
<span style="color:#808080;">delay(20); // 20ms</span><br />
<span style="color:#808080;">}</span><br />
<span style="color:#808080;">for (temp = 0; temp &lt;= 200; temp++)</span><br />
<span style="color:#808080;">{</span><br />
<span style="color:#808080;">digitalWrite(servoPin,HIGH);</span><br />
<span style="color:#808080;">delayMicroseconds(1800); // 1.8ms</span><br />
<span style="color:#808080;">digitalWrite(servoPin,LOW);</span><br />
<span style="color:#808080;">delay(20); // 20ms</span><br />
<span style="color:#808080;">}</span><br />
<span style="color:#808080;">for (temp = 0; temp &lt;= 200; temp++)</span><br />
<span style="color:#808080;">{</span><br />
<span style="color:#808080;">digitalWrite(servoPin,HIGH);</span><br />
<span style="color:#808080;">delayMicroseconds(1200); // 1.2ms</span><br />
<span style="color:#808080;">digitalWrite(servoPin,LOW);</span><br />
<span style="color:#808080;">delay(20); // 20ms</span><br />
<span style="color:#808080;">}</span><br />
<span style="color:#808080;">}</span></p>
<p><span style="color:#000000;">Basically, what this code was doing was using PWM in a &#8220;braindead way&#8221;. It made The servos soin in one direction until the time got slow enough that it stopped and started spinning in the opposite direction. &#8220;Wow. That seems a bit too tedious to be the <strong>real</strong> way to control the servos,&#8221; I thought. Research. Research. Research.</span></p>
<p><span style="color:#000000;">After all of that research and stuff, I found one of the weird things the guy who wrote the previous code did. He was using digitalWrite. It is much easier to us analogWrite, so that you can use a number value instead of just LOW/HIGH. That&#8217;s important because the way that the servos work is based on the PWM coming from the Arduino board. So if It&#8217;s at either extremes, the servos won&#8217;t move very fast, if at all. That&#8217;s why, in the following code, the analogWrite sets the wheels to a space in between HIGH and LOW.</span></p>
<p><span style="color:#808080;">#define CLOCK 52</span><br />
<span style="color:#808080;">#define COUNTER 200</span><br />
<span style="color:#808080;">#define NOTMOVING 128</span><br />
<span style="color:#808080;">#define RIGHT 6  //sets pin 6 to the right wheel</span><br />
<span style="color:#808080;">#define LEFT 5  //sets pin 5 to the left wheel</span></p>
<p><span style="color:#808080;">void forward() {  //the &#8220;function&#8221; used to refer to moving the servos forward</span><br />
<span style="color:#808080;">  analogWrite(RIGHT, CLOCK);</span><br />
<span style="color:#808080;">  analogWrite(LEFT, COUNTER);  </span><br />
<span style="color:#808080;">}</span><br />
<span style="color:#808080;">void stopped() {  //the &#8220;function&#8221; used to refer to the servos being stopped</span><br />
<span style="color:#808080;">  analogWrite(RIGHT, NOTMOVING);</span><br />
<span style="color:#808080;">  analogWrite(LEFT, NOTMOVING);</span><br />
<span style="color:#808080;">}</span><br />
<span style="color:#808080;">void backwards() { //the &#8220;function&#8221; used to refer to the servos </span><br />
<span style="color:#808080;">  analogWrite(RIGHT, COUNTER);</span><br />
<span style="color:#808080;">  analogWrite(LEFT, CLOCK);</span><br />
<span style="color:#808080;">}</span><br />
<span style="color:#808080;">void setup() {</span><br />
<span style="color:#808080;">  pinMode(RIGHT, OUTPUT);  //sets pin 7 as an output</span><br />
<span style="color:#808080;">  pinMode(LEFT, OUTPUT);  //sets pin 6 as an output</span><br />
<span style="color:#808080;">}</span><br />
<span style="color:#808080;">void loop() {</span><br />
<span style="color:#808080;">  forward();</span><br />
<span style="color:#808080;">}</span></p>
<p><span style="color:#000000;">This code, as it is, will just make the little BOE move forward. However, I added the function of moving backward, and staying still. So all you would have to do to make it move backward or stay still is add it it to the loop. So as soon as I get around to doing other stuff to the robot, like adding sensore, I can still tell it which ways it should move easily. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mattalui.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mattalui.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mattalui.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mattalui.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mattalui.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mattalui.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mattalui.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mattalui.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mattalui.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mattalui.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mattalui.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mattalui.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mattalui.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mattalui.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=31&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mattalui.wordpress.com/2011/01/23/makin-those-servos-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e2eedbf0a5bec04b933cc3c69039894?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mattalui</media:title>
		</media:content>

		<media:content url="http://mattalui.files.wordpress.com/2011/01/servoschematics.png?w=300" medium="image">
			<media:title type="html">servoschematics</media:title>
		</media:content>
	</item>
		<item>
		<title>Random Fact Generator</title>
		<link>http://mattalui.wordpress.com/2010/05/28/random-fact-generator/</link>
		<comments>http://mattalui.wordpress.com/2010/05/28/random-fact-generator/#comments</comments>
		<pubDate>Fri, 28 May 2010 04:00:47 +0000</pubDate>
		<dc:creator>mattalui</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattalui.wordpress.com/?p=26</guid>
		<description><![CDATA[I thought it would be a fun idea to write some code that generated some random fun facts when I ran it. So I started working on it eary this morning. I was going to use a lot of stuff similar to what we did when we made the number guessing game, because it seemed the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=26&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I thought it would be a fun idea to write some code that generated some random fun facts when I ran it. So I started working on it eary this morning. I was going to use a lot of stuff similar to what we did when we made the number guessing game, because it seemed the best way to make it random. However after telling my brother about the project he suggested that instead of doing it the stupid way that I was gonna do it, (like below) </p>
<p><span style="color:#808080;">import random<br />
randomfact =  random.randint(1,  3)<br />
if randomfact == 1:<br />
    print &#8216;There are square watermelons in Japan!&#8217;<br />
if randomfact == 2:<br />
    print &#8216;Philo Farnsworth (the man tht invented the television) had a complete undderstanding of the the theory of relativity when he was 15!&#8217;<br />
if randomfact == 3:<br />
    print &#8216;crwth is an english word with no vowel!&#8217;<br />
if randomfact == 4:<br />
    print &#8216;Horses do not yawn!&#8217;</span></p>
<p><span style="color:#000000;">he suggested we do it with a list. So we talked for a while about lists. Then we talked about indexs. After a lot of stupid questions from me I finally under stood why we did things like &#8216;random.randint (0, len(facts)-1)&#8217;. And it&#8217;s because the highest index in the list is always gonna be one less than the number of items on the list because it uses zero as a number, rather than starting t one. In the end we ended up with the finished random fact generator like the on below.</span></p>
<p><span style="color:#808080;">import random<br />
facts = [<br />
'there are square watermelons in Japan!',<br />
'Philo Farnsworth (the man tht invented the television) had a complete undderstanding of the the theory of relativity when he was 15!',<br />
'crwth is an english word with no vowel!',<br />
'Horses do not yawn!',<br />
'Elephants are the only mammal that can not jump',<br />
'The English alphabet used to have 24 letters.',<br />
'Matt Hummer was unanimously voted to be the coolest person ever!',<br />
'It is more likely tht you are raped in Canada than it is for you to win the lottery',<br />
'California has a bigger population than Canada (2009)',<br />
'You can not hum with your nose pinched shut.'<br />
]<br />
indexnumber = random.randint (0, len(facts)-1)<br />
print facts[indexnumber]<br />
</span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mattalui.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mattalui.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mattalui.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mattalui.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mattalui.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mattalui.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mattalui.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mattalui.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mattalui.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mattalui.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mattalui.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mattalui.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mattalui.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mattalui.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=26&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mattalui.wordpress.com/2010/05/28/random-fact-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e2eedbf0a5bec04b933cc3c69039894?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mattalui</media:title>
		</media:content>
	</item>
		<item>
		<title>monkey game</title>
		<link>http://mattalui.wordpress.com/2010/02/03/monkey-game/</link>
		<comments>http://mattalui.wordpress.com/2010/02/03/monkey-game/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 01:33:25 +0000</pubDate>
		<dc:creator>mattalui</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattalui.wordpress.com/?p=24</guid>
		<description><![CDATA[    Today we started to learn some pygme from a pygame tutorial with a monkey(http://www.pygame.org/docs/tut/chimp/ChimpLineByLine.html).  All we really did was learn about loading images. It was really confusing t first, but once I had my brother explain a lot of stuff to me I could feel myself starting to learn.     Most of the python that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=24&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>    Today we started to learn some pygme from a pygame tutorial with a monkey(<a href="http://www.pygame.org/docs/tut/chimp/ChimpLineByLine.html">http://www.pygame.org/docs/tut/chimp/ChimpLineByLine.html</a>).  All we really did was learn about loading images. It was really confusing t first, but once I had my brother explain a lot of stuff to me I could feel myself starting to learn.</p>
<p>    Most of the python that I actually wrote today came almost straight from the tutorial, but i still think i accomplished a lot.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mattalui.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mattalui.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mattalui.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mattalui.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mattalui.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mattalui.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mattalui.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mattalui.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mattalui.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mattalui.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mattalui.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mattalui.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mattalui.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mattalui.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=24&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mattalui.wordpress.com/2010/02/03/monkey-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e2eedbf0a5bec04b933cc3c69039894?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mattalui</media:title>
		</media:content>
	</item>
		<item>
		<title>Getting back into it.</title>
		<link>http://mattalui.wordpress.com/2010/02/02/getting-back-into-it/</link>
		<comments>http://mattalui.wordpress.com/2010/02/02/getting-back-into-it/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 02:08:56 +0000</pubDate>
		<dc:creator>mattalui</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattalui.wordpress.com/?p=22</guid>
		<description><![CDATA[    My old laptop broke. So I got a new one. Sadly, this one runs windows. I had to download a bunch of new programs so that we could begin writing Python again.     First i downloaded Xchat so my brother and I could communicate as we wrote our games. Then we downloaded Wing IDE pro.     Now [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=22&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>    My old laptop broke. So I got a new one. Sadly, this one runs windows. I had to download a bunch of new programs so that we could begin writing Python again.</p>
<p>    First i downloaded Xchat so my brother and I could communicate as we wrote our games. Then we downloaded Wing IDE pro.</p>
<p>    Now this is where it gets complicated(we all knew it was coming). We couldn&#8217;t use our verification code because it as for Wing IDE personal. So we switched it easy enough. However, now Wing couldn&#8217;t find python. So we downloaded that as well as pygame.</p>
<p>    For some odd reason Wing could still not find python so we had to save it to a weird file. Then it found it. Now it couldn&#8217;t find Pygame though. So we had to move that around a bit. And this whole process involved  a bit of installing, uninstalling, and reinstalling. It made me wish I could just use Synaptic again. </p>
<p>    Then we finally figured out where to put everything, Wing could find it and we would finally work on our games again.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mattalui.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mattalui.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mattalui.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mattalui.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mattalui.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mattalui.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mattalui.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mattalui.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mattalui.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mattalui.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mattalui.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mattalui.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mattalui.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mattalui.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=22&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mattalui.wordpress.com/2010/02/02/getting-back-into-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e2eedbf0a5bec04b933cc3c69039894?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mattalui</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://mattalui.wordpress.com/2009/06/23/15/</link>
		<comments>http://mattalui.wordpress.com/2009/06/23/15/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 23:02:16 +0000</pubDate>
		<dc:creator>mattalui</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattalui.wordpress.com/?p=15</guid>
		<description><![CDATA[So we decided to go from a number guessing game to an animal guessing game. We wanted it to be somewhat like 20 questions. The computer is supposed to guess the animal you are thinking of. We needed to figure out how the computer will know which animal you are thinking by the questions it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=15&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So we decided to go from a number guessing game to an animal guessing game. We wanted it to be somewhat like 20 questions. The computer is supposed to guess the animal you are thinking of. We needed to figure out how the computer will know which animal you are thinking by the questions it asks. So we started working on classes and sub-classes.</p>
<p>We broke animals into two basic groups-vertebrate and invertebrate. Then we broke that into Mammels, fish, etc.</p>
<p> </p>
<table border="0">
<tbody>
<tr>
<td>
<pre> 1
 2
 3
 4
 5
 6
 7
 8
 9
<span>10</span>
11
12
13
14
15
16
17
18
19
<span>20</span>
21
22
23
24
25
26
27
28
29
<span>30</span>
31
32
33
34
35
36
37
38
39
<span>40</span>
41
42
43
44
45
46
47
48
49
<span>50</span>
51</pre>
</td>
<td>
<div>
<pre><span>'''Animal types.'''</span>

<span>class</span> <span>Animal</span><span>:</span>
    <span>'''A Base Animal type.'''</span>

<span>class</span> <span>Vertebrate</span><span>(</span><span>Animal</span><span>):</span>
    <span>'''An Animal with a backbone.'''</span>

    <span>def</span> <span>has_backbone</span><span>(</span><span>self</span><span>):</span>
    	<span>return</span> <span>True</span>

<span>class</span> <span>Invertebrate</span><span>(</span><span>Animal</span><span>):</span>
    <span>'''An Animal without a backbone.'''</span>

    <span>def</span> <span>has_backbone</span><span>(</span><span>self</span><span>):</span>
    	<span>return</span> <span>False</span>

<span>class</span> <span>Fish</span><span>(</span><span>Vertebrate</span><span>):</span>
    <span>'''A Vertebrate with no fur.'''</span>

    <span>def</span> <span>has_fur</span><span>(</span><span>self</span><span>):</span>
    	<span>return</span> <span>False</span>

<span>class</span> <span>Mammal</span><span>(</span><span>Vertebrate</span><span>):</span>
    <span>'''A Vertebrate with fur.'''</span>

    <span>def</span> <span>has_fur</span><span>(</span><span>self</span><span>):</span>
    	<span>return</span> <span>True</span>

<span>class</span> <span>Human</span><span>(</span><span>Mammal</span><span>):</span>
    <span>'''vertebrate with fur.'''</span>

<span>class</span> <span>Lion</span><span>(</span><span>Mammal</span><span>):</span>
    <span>'''vertebrate with fur'''</span>

<span>class</span> <span>monkey</span><span>(</span><span>Mammal</span><span>):</span>
    <span>'''vertebrate with fur'''</span>

<span>class</span> <span>jellyfish</span><span>(</span><span>invertebrate</span><span>):</span>
    <span>'''not sure, but cool'''</span>

<span>class</span> <span>bear</span><span>(</span><span>Mammal</span><span>):</span>
    <span>'''hairy monster!!!'''</span>

<span>class</span> <span>Matt</span><span>(</span><span>vertebrate</span><span>):</span>
    <span>'''We're not sure exactly...'''</span></pre>
</div>
</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mattalui.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mattalui.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mattalui.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mattalui.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mattalui.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mattalui.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mattalui.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mattalui.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mattalui.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mattalui.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mattalui.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mattalui.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mattalui.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mattalui.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=15&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mattalui.wordpress.com/2009/06/23/15/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e2eedbf0a5bec04b933cc3c69039894?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mattalui</media:title>
		</media:content>
	</item>
		<item>
		<title>My First Game!</title>
		<link>http://mattalui.wordpress.com/2009/04/04/my-first-game/</link>
		<comments>http://mattalui.wordpress.com/2009/04/04/my-first-game/#comments</comments>
		<pubDate>Sat, 04 Apr 2009 17:50:42 +0000</pubDate>
		<dc:creator>mattalui</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattalui.wordpress.com/?p=12</guid>
		<description><![CDATA[I have  finally written my first game. It is not the funnest game you will ever play. It is a simple number guessing game. I made it because my brother said &#8220;It&#8217;s just a few easy lines of code&#8221;. It turned out to be a two-and-a-half-day project. We started out with learning the raw_input builtin. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=12&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have  finally written my first game. It is not the funnest game you will ever play. It is a simple number guessing game. I made it because my brother said &#8220;It&#8217;s just a few easy lines of code&#8221;. It turned out to be a two-and-a-half-day project. We started out with learning the raw_input builtin. That made a few things MUCH easier. Then we added a few if statements to tell you whether you should guess higher or lower or  you got it right. When we finally figured all of that out we decided to put in a loop so that you don&#8217;t have to keep running the code until you got it right. We used a while loop and talked about the differences between the while loop and the for loop. When we figured that out then we had to do a lot of editing because my indentions suck so it was causing problems with the code. Then we noticed that it didn&#8217;t tell you when you won, it just stopped. So we fixed that by taking the if statement out of the loop and put it after the loop. Now it works!</p>
<p>import random<br />
compnumber =  random.randint(1,  100)<br />
usrnumber = 0<br />
while usrnumber != compnumber:<br />
usrnumber = raw_input(&#8216;Your number please:&#8217;)<br />
usrnumber = int(usrnumber)</p>
<p>if usrnumber &gt; compnumber:<br />
print &#8220;Too high!&#8221;<br />
if usrnumber &lt; compnumber:<br />
print &#8220;Not quite high enough&#8230;&#8221;</p>
<p>if usrnumber == compnumber &#8211; 1:<br />
print &#8220;So close&#8230;&#8221;<br />
if usrnumber == compnumber + 1:<br />
print &#8220;So close&#8230;&#8221;<br />
print &#8220;Yay! You did it!&#8221;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mattalui.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mattalui.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mattalui.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mattalui.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mattalui.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mattalui.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mattalui.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mattalui.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mattalui.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mattalui.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mattalui.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mattalui.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mattalui.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mattalui.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=12&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mattalui.wordpress.com/2009/04/04/my-first-game/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e2eedbf0a5bec04b933cc3c69039894?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mattalui</media:title>
		</media:content>
	</item>
		<item>
		<title>Technical Difficulties</title>
		<link>http://mattalui.wordpress.com/2009/01/05/technical-difficulties/</link>
		<comments>http://mattalui.wordpress.com/2009/01/05/technical-difficulties/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 06:56:27 +0000</pubDate>
		<dc:creator>mattalui</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Xfce Gnome mouse troubles broken bad internet connection laptop upgrading]]></category>

		<guid isPermaLink="false">http://mattalui.wordpress.com/?p=8</guid>
		<description><![CDATA[So we have recently upgraded my laptop (even though it is still a slow piece of crap) and during that process we ran into some technical difficulties. For some reason the new upgrade changed my mouse pad settings. It had turned it off.(Of course at the time we didn&#8217;t know it was that simple). So [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=8&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So we have recently upgraded my laptop (even though it is still a slow piece of crap) and during that process we ran into some technical difficulties. For some reason the new upgrade changed my mouse pad settings. It had turned it off.(Of course at the time we didn&#8217;t know it was that simple). So we tried to plug in an external mouse and that worked so for a while I just used that. Then for a cure we switched me from Gnome to Xfce. I was on that for a while. One day my computer was being really slow so i rebooted it. When i logged back in i had no task bar. So i was without internet for a while and then i got idea. If I could get an external mouse then i could log back into Gnome and change my settings from there and log out then log back into Xfce then my internet would work again. I couldn&#8217;t find a mouse so I stole the one from off of my dad&#8217;s computer. Curiosity got the best of me and i went into my mouse settings to see if there was anything i could do in there to help my mouse problem. So I disabled the mouse pad then turned it on again and it worked. I was so relieved. I don&#8217;t much like Xfce as much as I like Gnome. Of course I had to hide while my dad tried to figure out what was wrong with his mouse. At least now my computer is back to normal again.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mattalui.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mattalui.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mattalui.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mattalui.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mattalui.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mattalui.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mattalui.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mattalui.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mattalui.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mattalui.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mattalui.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mattalui.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mattalui.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mattalui.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=8&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mattalui.wordpress.com/2009/01/05/technical-difficulties/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e2eedbf0a5bec04b933cc3c69039894?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mattalui</media:title>
		</media:content>
	</item>
		<item>
		<title></title>
		<link>http://mattalui.wordpress.com/2008/06/07/7/</link>
		<comments>http://mattalui.wordpress.com/2008/06/07/7/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 18:08:05 +0000</pubDate>
		<dc:creator>mattalui</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattalui.wordpress.com/?p=7</guid>
		<description><![CDATA[So I recently finished chapter two of my book. This is the chapter where things are starting to get a little more complicated. I have been learning about boolean logic, statements, and operators. It&#8217;s pretty much a lot tougher now. But the cool thing is I&#8217;m actually writing stuff that looks like python now. It&#8217;s [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=7&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So I recently finished chapter two of my book. This is the chapter where things are starting to get a little more complicated.</p>
<p>I have been learning about boolean logic, statements, and operators. It&#8217;s pretty much a lot tougher now. But the cool thing is I&#8217;m actually writing stuff that looks like python now. It&#8217;s a lot more lengthy. It&#8217;s not just the simple stuff I used to do, like making strings and adding them together.</p>
<p>It&#8217;s especially cool cause In the Python in Practice section of the book we actually wrote a program that makes a bunch of tanks fight each other. I changed the numbers around a little so that the tank Bob would win.</p>
<p>I also wrote a little program that would pretty much do the same thing as rolling a die. It would randomly pick a number from one through 6. Yet again I played with the numbers a little so that it would randomly pick a number one through 100.</p>
<p>That&#8217;s pretty much everything I&#8217;ve been doing. I change a lot of the code around so I can learn it better. If I didn&#8217;t I would probably drive my self crazy with the word FUGU!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mattalui.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mattalui.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mattalui.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mattalui.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mattalui.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mattalui.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mattalui.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mattalui.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mattalui.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mattalui.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mattalui.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mattalui.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mattalui.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mattalui.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mattalui.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mattalui.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=7&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mattalui.wordpress.com/2008/06/07/7/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e2eedbf0a5bec04b933cc3c69039894?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mattalui</media:title>
		</media:content>
	</item>
		<item>
		<title>PyGame!</title>
		<link>http://mattalui.wordpress.com/2008/06/05/pygame/</link>
		<comments>http://mattalui.wordpress.com/2008/06/05/pygame/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 20:49:47 +0000</pubDate>
		<dc:creator>mattalui</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://mattalui.wordpress.com/?p=4</guid>
		<description><![CDATA[Okay so today I started working on making a game with my brother. It&#8217;s fairly easy, except for some of the little details. It is going to be a game we make using python. We&#8217;re using a book to help me start learning python. It&#8217;s called Beginning Game Development with Python and Pygame. So today [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=4&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="text-align:left;"><img style="border:10px solid black;" src="http://g.bookpool.com/covers/725/1590598725_500.gif" alt="the book" width="380" height="502" /></p>
<p style="text-align:left;">Okay so today I started working on making a game with my brother. It&#8217;s fairly easy, except for some of the little details. It is going to be a game we make using python. We&#8217;re using a book to help me start learning python. It&#8217;s called Beginning Game Development with Python and Pygame.</p>
<p style="text-align:left;">So today by brother quizzed me on chapter one. It was pretty easy. Then we started chapter two. That&#8217;s when all the problems started. I was having problems with extra spaces at the end of the things that you can&#8217;t even see when the books give you examples of what it looks like. But it&#8217;s okay.</p>
<p style="text-align:left;">I learned about loops. We also talked about the differences between lists and tuples. Tuples load faster, but are immutable. It is  pretty much cool!</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/mattalui.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/mattalui.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/mattalui.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/mattalui.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/mattalui.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/mattalui.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/mattalui.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/mattalui.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/mattalui.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/mattalui.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/mattalui.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/mattalui.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/mattalui.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/mattalui.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/mattalui.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/mattalui.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=mattalui.wordpress.com&amp;blog=3907848&amp;post=4&amp;subd=mattalui&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://mattalui.wordpress.com/2008/06/05/pygame/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e2eedbf0a5bec04b933cc3c69039894?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">mattalui</media:title>
		</media:content>

		<media:content url="http://g.bookpool.com/covers/725/1590598725_500.gif" medium="image">
			<media:title type="html">the book</media:title>
		</media:content>
	</item>
	</channel>
</rss>
