Github Projects

Here you will find some of the projects I have created using various computing languages.

Logistic Regression Model For Predicting NFL Games

This project is a logistic regression model for predicting the outcome of National Football League games. Using Python, as well as Python related packages such as SKlearn, Numpy and Pandas, this model obtained an accuracy of 63.55%, thus outperforming many models similar to it. The repository that contains the full document can be found here.

Cars.com Web Scraper

This project uses the python programming language and the beautiful soap library to scrape a cars.com website listing that is entered by the user. Once the URL is entered the website is scraped and the information is exported to an xls file and uploaded to the designated dropbox folder. The repository for this project can be found here.

Binary to Decimal Converter

This project uses C to create a calculator that has all of the same functions as a normal calculator. It also includes functions to calculate the factorial of a number as well as binary to decimal/decimal to binary conversion. You can find the repository for this project here.

Binary Tree Visualizer

This project uses java and a JFrame to create an interactive binary tree. The user can input any set of numbers and the program will correctly display what the tree should look like. The program also displays the size and depth of the tree. You can see how this project was implemented by checking out the repository here.

Custom Website

This project is the implementation of my own personal website. I built off an baseline Netlify framework and then added my own features through the use of HTML5 and Javascript, and then deployed the website through Netlify. You can find the repository here.

Brute Force Algorithm

This program uses the brute force algorithm to scan a piece of given text for a phrase that the user inputs and then returns its position to the user if a match is found. The repository for this project can be found here.

Riemann-Sum Calculator

This program calculates the reimman sum of a given coordinates of a graph. This program will take user input and then calculate the area under the given coordinates of the graph and then will also display the graph that the user entered. The repository for this project can be found here.

Is Prime Calculator

Program that takes a given file of integers and calculates whether each given number is prime or composite then displays the results to the user in the terminal. The repository for this project can be found here.

Black Jack game

Using Java, me and my partners successfully implemented a blackjack game. The program consists of various classes that each execute a certain aspect of the game. You can see how this project was implemented by checking out the repository here.

Python Calculator

Using Python, I created a calculator that can be executed through a user's terminal. It is capable of executing all basic operations as well as calculating the remainder. The repository for this project can be found here.