Archive for the ‘Projects’ Category
Simple Login, Logout & Sessions in PHP
Tuesday, June 8, 2010 1:34 No CommentsI am going to provide an overview of how I got the login system on my website to work. I will start by mentioning this should not be used to protect sensitive information (ie: health records) because it uses a table you add to your database. The table I used is: User table stored in database. [...]
Phone System Database: The Beginnings
Saturday, May 29, 2010 17:05 No CommentsOverview Starting last summer I have been assisting with the VoIP roll-out. I am now back for another summer and have obtained a project that has the potential to be exciting and a learning experience, which enhances the working experience. Learning does not stop when you leave the classroom, but picks up and becomes more [...]
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 [...]
Pathfinder: A path finding game.
Friday, October 30, 2009 17:56 1 CommentPathfinder is all about finding a path between point A and point B. The GUI portion, provided for us, is sectioned off into a grid of ‘tiny’ squares where two are colored turquoise (set by programmer), in my case one on the mid left and the other on the mid right side of the grid. You start [...]
Card Game(s)
Sunday, October 11, 2009 22:41 No CommentsThis idea came to me one day while I was sitting in my math class waiting for it to start. I had arrived quite early so I cracked out my PDA and started playing solitaire. Then I got to thinking, wouldn’t it be neat to create my own card game in which I could make [...]
Text Editor
Sunday, September 13, 2009 21:03 No CommentsUnfortunately this isn’t anything new, but I would like to create my own text editor, that can do the basics with some enhancements. The following is what I am thinking of initially: open and saving files cut copy paste undo word wrap font choices (maybe) syntax highlighting (if I can figure out how to implement) for [...]
Protocol, Chat, & LAN/Internet Play
Wednesday, September 2, 2009 7:49 No CommentsThe following could probably easily be considered three ideas in one, but because the protocol idea seems to ‘bridge’ the other two I decided on an all-inclusive post. I would like to write my own application-layer protocol that would allow me transfer the data, whether it be text (for chat) or something else relevant to my application(s). The [...]