Nathan Harmon

nharmon.multics.org >> Computer Science


Projects

Here are some writeups on some computer-related projects I am working on:


Computer Programming

A collection of programs I've written.

Vatsim Pilots (PHP)
(source code)
Displays a list of pilots on the vatsim network matching specific callsigns prefixes.
Vector Calc (Perl)
(source code)
This program will take a set of beginning lat/long coordinates, along with a bearing and a distance (a vector), and return the lat/long coordinates you would arrive at.
SAR Plotter (Javascript)
A program for plotting Search and Rescue patterns. The formulas needed for calculating points are similar to the ones seen above. I took advantage of the Google maps API to make this.
Binary Math Quiz (PHP)
(source code)
A simple program that quizes you to convert binary numbers to decimal, or vise versa.
Calendar (PHP)
(source code)
A simple calendar program that displays a month calendar for the month and year selected. This can be expanded for scheduling systems, etc.
IP Manager (PHP)
(source code)
Program for managing IP addresses using a MySQL database. If you care to use this program, you will need to modify the database connection variables at the beginning of the program. You will also need to create a table for storing the data:
CREATE TABLE internetaddresses (addressid BIGINT primary key, name text, domain text, description text)

License for all programs above: GNU General Public License.