Archive for December, 2009
New Page: Docs & Downloads
Monday, December 28, 2009 17:00 No CommentsI decided a couple days ago that it was time to accumulate all my software releases into a central location where people can go to scan all the possibilities and download anything they would like to use. It contains the name of the software package, a brief description of what it is with a link [...]
Card Deck Version 0.5
Monday, December 28, 2009 16:50 No CommentsI got the urge to do some programming over the holidays and since one of my ideas was for a card game I thought I would create a deck of regular playing cards that could be used for playing any card game which uses a regular deck. Basically the deck includes all 52 cards plus [...]
WP Page Layout & Text Updates
Sunday, December 27, 2009 0:43 No CommentsIf you were surfing my site today you may have noticed that the look and feel of the site was changing frequently. This was in preperation for another page on my website. Today I decided it was time to change the layout of my WP pages a bit to make more room. Thus I took [...]
Maze Solver Game
Saturday, December 19, 2009 15:43 No CommentsEssentially what the game consists of is you enter the size of your maze as an integer n (ie: 10) and then it generates a random maze of size nxn (ie: 10×10) which can be different for each nxn matrix you generate. Do to time restraints I wasn’t able to implement the A* search like [...]
Parsing XML
Saturday, December 19, 2009 14:34 1 CommentFor one of my classes a project was to write two programs, one of which uses the document object model (DOM) API to parse an XML file and one which uses the Simple API for XML (SAX) API. The programs are just tiny and do not dod anything fancy. Basically just breaks down the content of the XML files into [...]