<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8465991460012121932</id><updated>2012-02-16T19:42:10.145-05:00</updated><category term='tron'/><category term='space'/><category term='fly'/><category term='optimus'/><category term='metroid'/><category term='message'/><category term='python'/><category term='3d'/><category term='programming'/><category term='legacy'/><category term='tutorial'/><category term='ship'/><category term='2d'/><category term='video'/><category term='blender'/><category term='pygame'/><category term='comic'/><category term='sick'/><category term='art'/><category term='image'/><category term='game'/><category term='links'/><category term='zelda'/><title type='text'>Working for the Pipe Cleaner Man</title><subtitle type='html'>Brought to you by &lt;a href="http://www.natewm.com"&gt;Nate&lt;/a&gt;.&lt;br&gt;
&lt;a href="http://pipe-cleaner-man.blogspot.com/2007/09/art-index.html"&gt;Art&lt;/a&gt;
--
&lt;a href="http://pipe-cleaner-man.blogspot.com/2007/09/blender-index.html"&gt;Blender&lt;/a&gt;
--
&lt;a href="http://pipe-cleaner-man.blogspot.com/2007/09/python-index.html"&gt;Python&lt;/a&gt;
--
&lt;a href="http://pipe-cleaner-man.blogspot.com/search/label/links"&gt;Links&lt;/a&gt;</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://pipe-cleaner-man.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://pipe-cleaner-man.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>SlawDog</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>9</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8465991460012121932.post-6709507972291240596</id><published>2010-08-30T16:28:00.003-04:00</published><updated>2010-08-30T16:52:33.314-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='pygame'/><category scheme='http://www.blogger.com/atom/ns#' term='tutorial'/><category scheme='http://www.blogger.com/atom/ns#' term='python'/><category scheme='http://www.blogger.com/atom/ns#' term='programming'/><category scheme='http://www.blogger.com/atom/ns#' term='game'/><title type='text'>PyGame Tutorial 1 - Setting Up PyGame</title><content type='html'>&lt;h1&gt;PyGame Tutorial 1 - Setting up PyGame&lt;/h1&gt;
&lt;p&gt;The first thing you would want to do to get started with PyGame is, of course, initializing it and creating a window.  It’s pretty simple.&lt;/p&gt;
&lt;h2&gt;Create File&lt;/h2&gt;
&lt;p&gt;First create a new text file and name it “tut_01.py".  Next open this file in a text editor (preferably one with source code highlighting.)  Now we are ready to start programming!&lt;/p&gt;
&lt;h2&gt;Shebang&lt;/h2&gt;
&lt;p&gt;I’m going to begin my Python program with a simple little comment.  You don’t have to worry too much about how it works.  Because it is a comment the line is ignored by Windows, but it is used by Linux to know how this file should be run.  The line looks like this:&lt;/p&gt;
&lt;pre&gt;#!/usr/bin/env python&lt;/pre&gt;
&lt;h2&gt;Import&lt;/h2&gt;
&lt;p&gt;Now we will import the modules we need.  For this first tutorial all we need is the PyGame module.  This line will look like this:&lt;/p&gt;
&lt;pre&gt;import pygame&lt;/pre&gt;
&lt;h2&gt;Initialize&lt;/h2&gt;
&lt;p&gt;Before PyGame can be used it should be initialized.  This tells python to prepare to be used.  This is simply done by calling the init method in the pygame module:&lt;/p&gt;
&lt;pre&gt;pygame.init()&lt;/pre&gt;
&lt;h2&gt;Create the Display Window&lt;/h2&gt;
&lt;p&gt;All of the game’s action will take place in a display window.  This is where the graphics will be drawn to.  Creating a display window is easy -- just call the pygame.display.set_mode method with a tuple specifying the width and the height of the display area, like this:&lt;/p&gt;
&lt;pre&gt;pygame.display.set_mode((480, 360))&lt;/pre&gt;
&lt;p&gt;This will create a window that is 480 pixels wide and 360 pixels tall.  You can specify any resolution you want as long as it will fit on the screen.  Higher resolution screens need to draw more pixels so they can be a little slow.  This set_mode method has a few other options, but for now we’ll just be using the defaults.&lt;/p&gt;
&lt;h2&gt;Main Game Loop&lt;/h2&gt;
&lt;p&gt;The game will be updated several times each second.  Each time the game is updated we will be moving things around just a little bit.  This will make it look like objects in the game are moving smoothly around the screen.&lt;/p&gt;
&lt;p&gt;At the end of this tutorial we will simply have a blank window with nothing in it.  This is just the starting point of making our game.&lt;/p&gt;
&lt;p&gt;The main loop will begin by creating a variable that is used to check if we should keep cycling through this loop updating our game:&lt;/p&gt;
&lt;pre&gt;keep_going = True&lt;/pre&gt;
&lt;p&gt;Next we will start the loop.  We will by using Python’s “while” keyword.  What while does is it loops through what’s in the indented block of code as long as a specified condition is true.  For example, in our program the while statement will look like this:&lt;/p&gt;
&lt;pre&gt;while keep_going:&lt;/pre&gt;
&lt;p&gt;As long as the variable keep_going is True this part of the program will keep looping and updating.  When keep_going is set to False the program will stop looping and continue after the indented block of code.&lt;/p&gt;
&lt;h2&gt;Processing Events&lt;/h2&gt;
&lt;p&gt;Events are little messages sent to the program.  We will be looping through these events and responding to them.  We start this loop with Python’s “for” and “in" keywords.  What for does is it steps through each item in a list and uses this current item in the indented block of code.  Then it goes to the next item in the list and uses that.  Remember this will be inside the previous while loop, so it needs to start at the proper indentation level.  We’ll start the for loop like this:&lt;/p&gt;
&lt;pre&gt;    for event in pygame.event.get():&lt;/pre&gt;
&lt;p&gt;This will go through each item from the method pygame.event.get() and put the current item in the variable called “event”.&lt;/p&gt;
&lt;p&gt;Now we will use this event variable.  PyGame events are objects with properties.  The property we are interested in right now is called “type”.  There are different types of events, but for now we are only going to check for the type that is passed to the program when the close button is pressed at the corner of the Window.  We will check the event type with the “if" keyword.  If the conditional statement is True it will do what’s in the indentation block, but if it is False it will skip past it.  Remember we are in both the main loop and this event loop, so we need two indentations.&lt;/p&gt;
&lt;pre&gt;        if event.type == pygame.QUIT:
            keep_going = False&lt;/pre&gt;
&lt;p&gt;This will set the variable keep_going to False if the quit event was passed to the program.  Remember the main loop will only keep looping if keep_going is True, so if it is False the main loop will end and the program will do what’s after the end of the loop.  The while loop checks this variable each time the program returns to the while statement.  Think of the program as stepping through one instruction at a time.&lt;/p&gt;
&lt;h2&gt;Flipping the Display&lt;/h2&gt;
&lt;p&gt;The action takes place on what is called a back-buffer.  The graphics are drawn there so that you will not see any flickering from graphics being drawn layer on top of each other.  After the graphics are drawn to the back buffer we will want to flip the display so that the back-buffer is now shown on the screen and there is a new back-buffer to draw onto.  This is simply done by calling pygame.display.flip().  Remember, we are now outside of the event loop, but still in the main loop -- we want this to be done once each time the game is updated.  The line will look like this:&lt;/p&gt;
&lt;pre&gt;    pygame.display.flip()&lt;/pre&gt;
&lt;h2&gt;The End of the Program&lt;/h2&gt;
&lt;p&gt;We will now handle what happens when the main loop is done looping.  We will be calling the quit method in the pygame module.  This will tell PyGame that we are done and it will close the window and shutdown PyGame.  We are outside the while loop, so there will be no indentation.&lt;/p&gt;
&lt;pre&gt;pygame.quit()&lt;/pre&gt;
&lt;h2&gt;There We Have It&lt;/h2&gt;
&lt;p&gt;We now have the basic framework for writing a game with PyGame.  The complete code will look like this:&lt;/p&gt;
&lt;pre&gt;#!/usr/bin/env python

import pygame

pygame.init()

display = pygame.display.set_mode((480, 360))

keep_going = True
while keep_going:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            keep_going = False
    
    pygame.display.flip()

pygame.quit()&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8465991460012121932-6709507972291240596?l=pipe-cleaner-man.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pipe-cleaner-man.blogspot.com/feeds/6709507972291240596/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8465991460012121932&amp;postID=6709507972291240596' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/6709507972291240596'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/6709507972291240596'/><link rel='alternate' type='text/html' href='http://pipe-cleaner-man.blogspot.com/2010/08/pygame-tutorial-1-setting-up-pygame.html' title='PyGame Tutorial 1 - Setting Up PyGame'/><author><name>SlawDog</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8465991460012121932.post-2111341745886975172</id><published>2008-10-16T10:36:00.003-04:00</published><updated>2008-10-16T10:43:14.636-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='comic'/><category scheme='http://www.blogger.com/atom/ns#' term='2d'/><category scheme='http://www.blogger.com/atom/ns#' term='sick'/><category scheme='http://www.blogger.com/atom/ns#' term='links'/><category scheme='http://www.blogger.com/atom/ns#' term='zelda'/><title type='text'>Get Well Link</title><content type='html'>&lt;p&gt;
A couple of months ago the Pipe-Cleaner Man was sick and went to the hospital.  I had drawn this for him to make him feel a little better.
&lt;/p&gt;
&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_sz1631xhabE/SPdSE1GrvXI/AAAAAAAAACU/tIDgnQYqKa0/s1600-h/get_well_link.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://4.bp.blogspot.com/_sz1631xhabE/SPdSE1GrvXI/AAAAAAAAACU/tIDgnQYqKa0/s320/get_well_link.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5257761332906409330" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8465991460012121932-2111341745886975172?l=pipe-cleaner-man.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pipe-cleaner-man.blogspot.com/feeds/2111341745886975172/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8465991460012121932&amp;postID=2111341745886975172' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/2111341745886975172'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/2111341745886975172'/><link rel='alternate' type='text/html' href='http://pipe-cleaner-man.blogspot.com/2008/10/get-well-link.html' title='Get Well Link'/><author><name>SlawDog</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_sz1631xhabE/SPdSE1GrvXI/AAAAAAAAACU/tIDgnQYqKa0/s72-c/get_well_link.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8465991460012121932.post-3626282622709187614</id><published>2007-10-02T15:52:00.000-04:00</published><updated>2007-10-02T15:56:09.566-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='comic'/><category scheme='http://www.blogger.com/atom/ns#' term='metroid'/><title type='text'>Metroid Comic!</title><content type='html'>&lt;p&gt;The other day the Pipe Cleaner Man made a Metroid comic.&lt;/p&gt;
&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_sz1631xhabE/RwKh655f3fI/AAAAAAAAABk/Gv0nK_KRtiU/s1600-h/ty_metroid_comic_07_10_02.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp2.blogger.com/_sz1631xhabE/RwKh655f3fI/AAAAAAAAABk/Gv0nK_KRtiU/s400/ty_metroid_comic_07_10_02.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5116830159992774130" /&gt;&lt;/a&gt;
&lt;p&gt;I decided to take his idea and expand upon it.&lt;/p&gt;
&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_sz1631xhabE/RwKiKp5f3gI/AAAAAAAAABs/RvJPtne6EbM/s1600-h/metroid_comic_07_10_02.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_sz1631xhabE/RwKiKp5f3gI/AAAAAAAAABs/RvJPtne6EbM/s400/metroid_comic_07_10_02.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5116830430575713794" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8465991460012121932-3626282622709187614?l=pipe-cleaner-man.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pipe-cleaner-man.blogspot.com/feeds/3626282622709187614/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8465991460012121932&amp;postID=3626282622709187614' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/3626282622709187614'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/3626282622709187614'/><link rel='alternate' type='text/html' href='http://pipe-cleaner-man.blogspot.com/2007/10/metroid-comic.html' title='Metroid Comic!'/><author><name>SlawDog</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_sz1631xhabE/RwKh655f3fI/AAAAAAAAABk/Gv0nK_KRtiU/s72-c/ty_metroid_comic_07_10_02.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8465991460012121932.post-3355632089142719953</id><published>2007-09-25T19:33:00.001-04:00</published><updated>2008-10-15T15:40:57.621-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='optimus'/><category scheme='http://www.blogger.com/atom/ns#' term='image'/><category scheme='http://www.blogger.com/atom/ns#' term='3d'/><category scheme='http://www.blogger.com/atom/ns#' term='tron'/><category scheme='http://www.blogger.com/atom/ns#' term='blender'/><title type='text'>Optimus Tron</title><content type='html'>&lt;div style="text-align:center"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_sz1631xhabE/Rvmgh55f3eI/AAAAAAAAABc/R20K6gMcWw4/s1600-h/optimustron.jpg"&gt;&lt;img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_sz1631xhabE/Rvmgh55f3eI/AAAAAAAAABc/R20K6gMcWw4/s400/optimustron.jpg" border="0" alt=""id="BLOGGER_PHOTO_ID_5114295356194020834" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8465991460012121932-3355632089142719953?l=pipe-cleaner-man.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pipe-cleaner-man.blogspot.com/feeds/3355632089142719953/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8465991460012121932&amp;postID=3355632089142719953' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/3355632089142719953'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/3355632089142719953'/><link rel='alternate' type='text/html' href='http://pipe-cleaner-man.blogspot.com/2007/09/optimus-tron.html' title='Optimus Tron'/><author><name>SlawDog</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp1.blogger.com/_sz1631xhabE/Rvmgh55f3eI/AAAAAAAAABc/R20K6gMcWw4/s72-c/optimustron.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8465991460012121932.post-5085927048643689252</id><published>2007-09-25T17:53:00.002-04:00</published><updated>2008-10-15T15:41:41.599-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='video'/><category scheme='http://www.blogger.com/atom/ns#' term='ship'/><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='3d'/><category scheme='http://www.blogger.com/atom/ns#' term='space'/><category scheme='http://www.blogger.com/atom/ns#' term='fly'/><category scheme='http://www.blogger.com/atom/ns#' term='legacy'/><category scheme='http://www.blogger.com/atom/ns#' term='blender'/><title type='text'>Legacy Fly By</title><content type='html'>&lt;div style="text-align:center"&gt;&lt;object width="520" height="400"&gt;&lt;param name="movie" value="http://www.dailymotion.com/swf/6hFTl0HtKwtn2lBuM"&gt;&lt;/param&gt;&lt;param name="allowfullscreen" value="true"&gt;&lt;/param&gt;&lt;embed src="http://www.dailymotion.com/swf/6hFTl0HtKwtn2lBuM" type="application/x-shockwave-flash" width="520" height="400" allowfullscreen="true"&gt;&lt;/embed&gt;&lt;/object&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8465991460012121932-5085927048643689252?l=pipe-cleaner-man.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pipe-cleaner-man.blogspot.com/feeds/5085927048643689252/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8465991460012121932&amp;postID=5085927048643689252' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/5085927048643689252'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/5085927048643689252'/><link rel='alternate' type='text/html' href='http://pipe-cleaner-man.blogspot.com/2007/09/legacy-fly-by.html' title='Legacy Fly By'/><author><name>SlawDog</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8465991460012121932.post-2264753092707242859</id><published>2007-09-21T13:18:00.003-04:00</published><updated>2008-10-16T10:46:30.861-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='art'/><category scheme='http://www.blogger.com/atom/ns#' term='links'/><title type='text'>Art Index</title><content type='html'>&lt;h2&gt;Pages in this Blog&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://pipe-cleaner-man.blogspot.com/search/label/art"&gt;Find all posts labeled "Art"&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;h2&gt;Artwork by Pipe Cleaner Man&lt;/h2&gt;
&lt;h3&gt;Comics&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://pipe-cleaner-man.blogspot.com/2007/10/metroid-comic.html"&gt;Metroid Comic!&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;Artwork by SlawDog&lt;/h2&gt;
&lt;h3&gt;Stills&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://pipe-cleaner-man.blogspot.com/2007/09/optimus-tron.html"&gt;Optimus Tron&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Comics&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://pipe-cleaner-man.blogspot.com/2007/10/metroid-comic.html"&gt;Metroid Comic!&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://pipe-cleaner-man.blogspot.com/2008/10/get-well-link.html"&gt;Get Well Link&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Animation&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://pipe-cleaner-man.blogspot.com/2007/09/legacy-fly-by.html"&gt;Legacy Fly By&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;!--
&lt;h3&gt;Tutorials&lt;/h3&gt;

&lt;h2&gt;External Links&lt;/h2&gt;
&lt;h3&gt;Artists&lt;/h3&gt;
&lt;h3&gt;Tutorials&lt;/h3&gt;
--&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8465991460012121932-2264753092707242859?l=pipe-cleaner-man.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pipe-cleaner-man.blogspot.com/feeds/2264753092707242859/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8465991460012121932&amp;postID=2264753092707242859' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/2264753092707242859'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/2264753092707242859'/><link rel='alternate' type='text/html' href='http://pipe-cleaner-man.blogspot.com/2007/09/art-index.html' title='Art Index'/><author><name>SlawDog</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8465991460012121932.post-618337354104637307</id><published>2007-09-21T12:32:00.000-04:00</published><updated>2007-09-21T13:50:35.931-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='python'/><category scheme='http://www.blogger.com/atom/ns#' term='links'/><title type='text'>Python Index</title><content type='html'>&lt;h2&gt;Pages in this Blog&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://pipe-cleaner-man.blogspot.com/search/label/python"&gt;Find all posts tagged "Python"&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;External Links&lt;/h2&gt;
&lt;h3&gt;Sites&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.python.org"&gt;Python.org&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pygame.org"&gt;Pygame.org&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Tutorials&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.greenteapress.com/thinkpython/"&gt;How to Think Like a (Python) Programmer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.pygame.org/wiki/tutorials"&gt;Tutorials on Pygame.org&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8465991460012121932-618337354104637307?l=pipe-cleaner-man.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pipe-cleaner-man.blogspot.com/feeds/618337354104637307/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8465991460012121932&amp;postID=618337354104637307' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/618337354104637307'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/618337354104637307'/><link rel='alternate' type='text/html' href='http://pipe-cleaner-man.blogspot.com/2007/09/python-index.html' title='Python Index'/><author><name>SlawDog</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8465991460012121932.post-1197575243581335228</id><published>2007-09-20T23:47:00.000-04:00</published><updated>2007-09-21T12:31:52.581-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='links'/><category scheme='http://www.blogger.com/atom/ns#' term='blender'/><title type='text'>Blender Index</title><content type='html'>&lt;h2&gt;Pages in this Blog&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://pipe-cleaner-man.blogspot.com/search/label/blender"&gt;Find all posts tagged "Blender"&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;External Links&lt;/h2&gt;
&lt;h3&gt;Sites&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.blender.org"&gt;Blender.org&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Tutorials&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.blender.org/tutorials-help/tutorials/"&gt;Tutorials at Blender.org&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://en.wikibooks.org/wiki/Blender_3D:_Noob_to_Pro"&gt;Blender 3D: Noob to Pro Wikibook&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8465991460012121932-1197575243581335228?l=pipe-cleaner-man.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pipe-cleaner-man.blogspot.com/feeds/1197575243581335228/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8465991460012121932&amp;postID=1197575243581335228' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/1197575243581335228'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/1197575243581335228'/><link rel='alternate' type='text/html' href='http://pipe-cleaner-man.blogspot.com/2007/09/blender-index.html' title='Blender Index'/><author><name>SlawDog</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8465991460012121932.post-7751816575775716615</id><published>2007-09-20T15:06:00.000-04:00</published><updated>2007-09-21T14:21:26.643-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='message'/><title type='text'>About this Blog</title><content type='html'>&lt;p&gt;
This blog was set up to share information, progress updates, and files with the Pipe Cleaner Man.  If the Pipe Cleaner Man doesn't like that nickname ... well, tough!   &lt;img style="border: medium none ; margin: 0pt; padding: 0pt;" src="http://smilies.vidahost.com/otn/tongue/tongue3.gif" alt=":P" /&gt;   It's hard trying to find a Blogger sub domain that hasn't already been taken by somebody else!
&lt;/p&gt;
&lt;p&gt;
Some specific sort of things I plan on adding to this site would be:
&lt;ul&gt;&lt;li&gt;Pictures (Blender renders, drawings, etc.)
&lt;/li&gt;&lt;li&gt;Videos (some made by me, some I might have simply found interesting)
&lt;/li&gt;&lt;li&gt;Links to Blender tutorials&lt;/li&gt;&lt;li&gt;Blender files for download&lt;/li&gt;&lt;li&gt;And more!
&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8465991460012121932-7751816575775716615?l=pipe-cleaner-man.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://pipe-cleaner-man.blogspot.com/feeds/7751816575775716615/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8465991460012121932&amp;postID=7751816575775716615' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/7751816575775716615'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8465991460012121932/posts/default/7751816575775716615'/><link rel='alternate' type='text/html' href='http://pipe-cleaner-man.blogspot.com/2007/09/this-blog-was-set-up-to-share.html' title='About this Blog'/><author><name>SlawDog</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
