February 2009
11 posts
Cool Stuff
Thanks David and Alfonso. I’ve been doing a little searching around as well and think the pygame way will be best. I’ve also heard good things of pyglet but I haven’t seen nearly as much online support for it as pygame.
Those sprites look great David. I will definitely use them as reference for the ones that I’m going to make in 3D. Yeah, I know, your probably...
Am I just Perfect?
Well… I’m not getting too many hits here even though I’m practically begging people to look at my code and give some constructive criticism. I guess it just goes to show I’m doing an awsome job with the code that I’m posting here and will now take on the next phase of my learning of Python. Which is:
Make a game in Python.
Yep. That’s right. I’m going...
Convert TGAs to PNGs
So I gave myself a little project over the weekend. I needed to convert a bunch of Targa files over to PNG to help save space on my server. I decided to do it with Python.
Why convert the Targa image files to PNGs? Well, file size was the first reason. The PNG format stores 8 bit per pixel files in a nice small package. Smaller, even, than Tiff or OpenEXR. They do take a bit longer to create...
Sort Sequences of Files
I’m not really sure how to post code on here without it looking completely crazy, so I figured that I should probably just post a link to the .py file. Here it it:
TestForSequence.py
This script will search out the folder that it’s in as well as any child folders contained in that folder, for files and then sort them if they are a sequence and return a list of grouped sorted files
...
Python 2.5 Refrence Card in Color →
And here is the link to the PDF of the python 2.5 Refrence card in color. Enjoy!
Comments are Now Working
Got comments working on the site… Now to see if i can get some other things working that I use in my TiddlyWiki.
Slashdot | FBML Essentials →
A great book review on Face Book markup language
Still figuring it out
I haven’t had much time to see what tumblr can do but I’ve got a little time to see what I can figure out
Sequence Finder
I thought I would do a little learning of Python. I thought I should maybe build something that I could use all the time. Something, say, that could organize multiple image sequences and sort them based on sequence into groups. So each group would have a sequence of images in it that i could then organize into folders.
The problem with this, as i found out, is that the image sequences are...