Graphing

Graphing is an iOS app, written in Objective-C with CocoaTouch, for both the iPhone and iPod Touch that allows the user to manipulate simple graphs to find isomorphic graphs. The user uses an adjacency matrix to input adjacencies between six vertices, and then can see the resulting graph with the vertices in a C6 position. Then, the user can move around the vertices to find any isomorphic graph they desire.

Reggie the Regex Parser

Reggie the Regex Parser (RRP) is a regualr expression parser that will have the ability to identify strings that match the regular expression.

Cobbler

Cobbler is an attempt to add objects to the C language in order to better understand the implementations of different kinds of object systems. It is a primitive dynamic object system is being developed using C macros and functions to facilitate type-based static function dispatch, as well as dynamic method dispatch such as that found in Smalltalk and Objective-C. A primitive form of single inheritance is also supported.

Chunktional

This is a collection of C Macros to put together abstract data types and pattern matching similar to that found in functional programming languages like Haskell and SML.

Gravity.app

Gravity.app is a program, written in Objective-C for the Mac, that simulates Newtonian Gravity between any number of circles on a 2D plane. The Gravitational Constant has been changed from 6.11x10^-11 to 6.11x10^-1 to allow for the effects of gravity to show more drastically to the user (otherwise, almost nothing seems to happen). A cool way to use the program is to create two objects, one with a mass of 1000, a position of (0, 0), and a velocity of (0, 0), and another with a mass of 0, a position of (100, 0), and a velocity of (0, 2.

BetterBuses

Bus schedules can be hard and convluted to read. When you want to get from pont A to point B, you are required to inherently know which bus route that applies to, and you’re supposed to inherently know what all the little symols mean, and if you don’t understand, you need to hunt down the key and are forced to figure it out. Computers today can do all the hard work for you, leaving you with the right information needed to get from pont A to point B at any time you wish.