I was asked by Ian Bogost to make a Turing Machine program. The Turing Machine is a device that basically uses conditions to create some type of program.
You can make your own here. I think it’s a great way to teach someone the basics of computer programming and logic.
Initial Tape: PIG
1,_,1,_,>
1,P,2,_,>
2,I,3,P,>
3,G,4,I,>
4,_,5,G,<
5,I,6,I,<
6,P,2,_,>
6,_,1,_,>
February 3rd, 2010
Turing Machine
October 15th, 2009
My New Game: Obechi!
Click here to play my new game Obechi.
Here’s the description of the game written by Tim Halbert (who wrote the music to the game):
From the creators of the Flash sensation Boomshine comes a devious new game where hand/eye co-ordination and a lightning-quick reaction time spell the difference between success and failure. Hundreds of colorful particles [...]
August 11th, 2009
New version of Picterizer
*Edit: Renamed app to Picterizer*
A new version of Picterizer has been uploaded. If you haven’t checked it out, this web application generates a picture of pictures (from flickr). Basically you upload your photo from your hard drive. The program uses Flickr to compile the picture. The new version now includes a “variance” factor as well [...]
May 22nd, 2009
EventManager 1.3
Dennin Dalke, a Brazillian Flash Developer emailed me a great method for the AS3 EventManager class (read the original post).
//adding multiple events at once.
EventManager.addEventListeners( loader.contentLoaderInfo, [
ProgressEvent.PROGRESS, onSiteLoad_Progress,
Event.OPEN, onSiteLoad_Open,
Event.COMPLETE, onSiteLoad_Complete,
IOErrorEvent.IO_ERROR, onSiteLoad_IOError
] );
It’s a great method to save retyping so many lines.
Get the updated class here. Also, if you have, are, or [...]
May 19th, 2009
Nice Review of Boomshine
Here’s a nice review on Boomshine from CasinoGuide.com:
Brain Reaction
Lovers of Internet recreation have played all types of games, including first-person shooters, role-playing, pure action, gambling games via online casinos, mysteries, trivia, typing, and the list goes on and on. The gamers of the world are always looking for something a bit different. Enter Boomshine, a [...]
May 5th, 2009
A Very Basic and Brief Introduction to HTML
HTML is a markup language. One of the first principals you should know is that HTML is actually just another form of a text file. For example, text files (like Microsoft Word files) don’t change. Notepad or Microsoft Word just knows how to open the files and display the files in a readable way. The [...]