Undergraduate Course Projects
All Semesters c
java
jsp
python
rutgers
sql
webgl
Software Methodology [CS213]
Chess
This command-line program, built in Java, establishes a manual 2-player game of chess. It detects illegal moves, supports special moves like en passant, castling, and pawn promotion, and ends once a checkmate occurs.
JavaFX Photo Library
This photo library, built using Java, JavaFX, and XML, is an application that supports user authentication, image upload, and image organization via albums, search functions, tags, and date-times.
Android Photo Library
This photo library, built using Java in Android Studio, is a phone app that supports user authentication, image upload, and image organization via albums, search functions, tags, and date-times.
Systems Programming [CS214]
Where's the File? - Version Control System
Where's the File? (WTF) is a fully functional client-server version control system written in C. Through sockets, file I/O, and multithreading, it allows up to ten clients to interact with, push projects to, get projects from, and otherwise modify a repository in a remote server. While a local version of the repository exists on the client-side, the server maintains the version most recently pushed while keeping track of the project's history. WTF supports the following commands: configure, checkout, update, upgrade, commit, push, create, destroy, add, remove, currentVersion, history, and rollback. View source here.
Info & Data Management [CS336]
Train Scheduler
Train Scheduler is a full-stack train booking web app that stores train routes and user data via efficient database schema. Users can search train routes stored in an AWS RDS database, create an account to create, modify, and delete reservations, and browse available schedules. The app also supports admin and employee configuration – employees can answer customer questions in a forum, and admins to view sales reports and customer employee information. It is hosted on an AWS EC2 instance through Apache Tomcat and leverages SQL and Java Servlet Pages to provide functionality to the user.
Intro to Artificial Intelligence [CS520]
A* Maze Solver
A Python agent is put into an NxN maze and attempts to reach the goal using a repeated A* algorithm with a Manhattan distance heuristic. View source here.
Partial Sensing Maze Solver
A Python agent is put into an NxN and learns about its environment through logical inference. As it attempts to reach the goal using a repeated A* algorithm, it maintains a knowledge base that updates with new information every move, allowing the agent to make informed decisions. View source here.
Probabilistic Maze Solver
A Python agent is put into an NxN maze where each available location has one of three terrains. The probability of the agent accurately detecting an unknown goal cell depends on the terrain type. The agent learns about its environment and uses probability to identify (1) the cell with the highest chance of containing the target and (2) the cell that gives the agent the highest chance of successfully finding the target. Using a repeated A* algorithm, the agent examines cells and updates probabilities until it finds the goal. View source here.
Maze Neural Network
We built four TensorFlow neural networks in Python to mimic the original agent from the A* Maze Solver and the logical inference agent from the Partial Sensing Maze Solver. For each agent, we developed, trained, and, tested Keras models with full dense layers and convolutional neural networks. View source here.
Computer Graphics [CS523]
Koch Snowflakes
This program generates 2D and 3D Koch Snowflakes (fractals) using Javascript and WebGL. View project here.
Rat Maze Game
This program executes Prim's algorithm to generate a maze and allows the user to navigate and solve the maze with arrow keys. Made with Javascript and WebGL. Play game here.
3D Ferris Wheel
This program displays a simple rotating ferris wheel in 3D.