Coursework
Here you can find some of my projects from college. In an effort to prevent cheating I do not include much source code here.
Meal Designer
University at Buffalo: CSE442 - Software Engineering
Meal Designer is an Android app that assists the user in creating and saving recipies. It was a group project consisting of: Chang Park, Christina Zytariuk, George Vanhoose and myself. You can visit the project webpage by visiting the link here
Equation Solver (MIPS Assembly)
University at Buffalo: CSE341 - Computer Organization
The purpose of this project was to create an Mips assembly program that would evaluate an expression stored as a string in the .data segment. The expression could contain variables which were also stored in the .data segment and would save the result in one of the variables. Below is the multiplication subroutine that I wrote for the project.
Programming Language
University at Buffalo: CSE305 - Introduction to Programming Languages
The objective of this project was to create a basic programming language. The same project was written in three different programming languages: Java, Python, and SMLNJ. The language was based around a stack (a sort of pushdown automaton). Instructions are read line by line from a file. Depending on the instruction arguments may either be included in the instruction or popped from the stack. If the instruction produces a result then the result is pushed onto the stack. When no instructions remain the stack is printed out. It also supported functions and variables.
Sentry Bot
University at Buffalo: CSE321 - Real-Time and Embedded Systems
The project for this class allowed us to choose what we wanted to do. For this project I created a sentry bot. The code for the project was written in c++ on the raspberry pi and used the pthread library. The bot would scan the area using an ultrasoninc sensor mounted on a servo. If an object was detected within a certain range then it would sound an alarm and alternate flashing red and blue led’s.
Socket Chat
University at Buffalo: CSE489 - Modern Network Concepts
This project involved creating a chat program using the client server model. Written in c++ it involved creating and using sockets to send and receive messages and data. The application could either be launched as a client or a server. If it was launched as a server then it would accept connections from clients, relay messages between clients and store messages for clients who disconnected without logging out. If launched as a client it would for the user to log into a server, after which it would allow the user to send and receive messages to other users.
Tank Game
Genesee Community College: CIS125 - Programming and Problem Solving
I created this as part of my first programming course. It is a flash game where the user drives a tank and tries to hit targets. You can play the game by clicking the link here.