
Online Resume Portfolio
- Created a Web application from scratch for my online portfolio and resume
- Showcases my skills and knowledge along with newly learned skills while developing the web app.
- Web App uses only html, css, js, jquery, and a jquery animation plugin called smoothstate.js
- Created own javascript functions that allow animations throughout the webapp for intractability

Bookstore Simulation WebApp
- Partnered with a friend to create a web application to a simulated bookstore website with the ability to check out items
- Designed a simple RESTful web API along with ajax calls for communication between the front end and mongoDB for the backend database
- Used css, html, javascript, and jquery to create a presentable and responsive end user GUI
- Called AJAX calls and handlers to checkout and fetch products from back end

Secure Private Chat Messenger
- Worked in a group of 4 to create a VPN messenger chat client that connects over a secure channel with mutual authentication
- Used Java’s crypto library and byte private keys to establish the public keys using Diffie-Hellman
- Followed current standards and modern practices such as AES and SHA256
- Used AES-GCM,IV, and nonce to create forward and backward secrecy and prevent replay attacks

.exe Decompiling and Patching
- Using John the Ripper and IDA, I was successfully able to retrieve the password from a given application
- Used IDA and read x86 assembly instructions to find the SHA1 password inside the program.
- Ran John the Ripper to do a brute force search of the hashed password to find the original password.
- Then created a small python script that patches the binary file to access any predefined password that the user indicates

Undoable Pacman and Test Suites
- Extended the original Framework Pacman to override original functions to implement and undo feature to the game
- Utilized Apache Maven to compile our java program along with EclEmma to test code coverage
- Programmed using closed principle where we extended an original source code to create new overridden functions
- After implementing our undo feature we had to refractor and get rid of smells in our code and also tested for mutants