StockML

StockML uses Machine Learning and the AlphaVantage Stock API to predict the closing price of any stock. It does this through the use of Linear Regression and Gradient Descent. Visit the Github Page Here

Try it Yourself

Huffman Encryptor

This project uses Python and Flask to allow users to upload a text file which the application then puts through a Huffman Encryption algorithm which returns an encrypted file as well as an encrypted key. When both the key and encrypted file are put back into the app the original text is returned. Read More about it Here

Try it Yourself

Social Stocks

Social Stocks is a web app which allows users to search for stock prices and compare current stock prices to what they paid. This web app was made using Django, sqlite, and the alphavantage stock API. You can visit the github page for the website Here.

Hangman

While taking Data Structures during my Freshman year of college I was tasked with creating hangman with a twist, this game would use a dictionary and your guesses to actively cheat and choose new possible words while you are playing. Through this project I learned to better use Data Structures such as Sets and ArrayLists. Since this was a school project I cannot include any code.