
Court Vision (April 28th, 2025)
A real-time sports analytics tool that identifies profitable bets and market inefficiencies using custom statistical models on live odds data. Built with Python and Streamlit, featuring algorithms for win probability and parlay outcome simulation.

Blendify (April 23rd, 2025)
A full-stack Spotify playlist generator that recommends tracks based on a seed song's genre and audio profile. Features OAuth login, real-time search, personalized recommendations, and direct playlist creation in users’ Spotify accounts.

Unveil AI (April 13th, 2025)
Built at Google DevFest WashU 2025, UnveilAI is a full-stack platform that helps developers understand unfamiliar codebases using Google Gemini and Bland AI. Finalist among 42 teams, the app lets users upload GitHub repos, receive line-by-line explanations, ask questions about specific files, and even get a phone call from an AI 'senior engineer' that walks them through their code.

Socket.io Multi-Room Chat App (March 31st, 2025)
A real-time multi-room chat application with support for private messaging, admin controls (kick, ban, unban), password-protected rooms, and profanity filtering. Built using vanilla JavaScript, Node.js, and Socket.io with a custom room management system and command-based chat bot for the global lobby.

Collaborative Calendar App (March 19th, 2025)
A secure, full-stack calendar web app that supports user signup, login, event management, and event sharing. Built using vanilla JavaScript (AJAX) and PHP, with robust session handling, CSRF protection, and SQL injection prevention via prepared statements. Users can add, edit, delete, and share events across accounts, all without page reloads.

JavaScript Calculator (March 5th, 2025)
A fully client-side calculator built with vanilla JavaScript, HTML, and CSS. Handles real-time arithmetic operations based on user input, with dynamic result rendering and form state updates. Implements radio-button based operator selection and input event listeners for seamless, responsive interaction—demonstrating frontend reactivity without the need for external libraries or frameworks.

Javascript Weather Widget (March 5th, 2025)
A responsive JavaScript weather widget that fetches real-time data from a public API and displays local conditions, humidity, and multi-day forecasts. Implements dynamic DOM manipulation, image rendering based on weather codes, and modular CSS for a clean, accessible interface. Includes a manual refresh button and asynchronous data handling via `fetch` for a seamless user experience.

Batting Average Analyzer (February 24th, 2025)
A command-line Python tool that parses historical baseball box scores and computes batting averages across an entire season. Uses regex to extract structured player stats from unstructured text logs, and applies object-oriented principles to aggregate performance data and output a sorted leaderboard. Built to demonstrate precision in text parsing, CLI design, and statistical computation.

Secure News Website (February 17th, 2025)
A full-stack PHP web app that enables users to register, post stories, comment, and engage with trending content. Built with session-based authentication, CSRF protection, and SQL prepared statements to guard against common web exploits. Features include story/comment editing and deletion, a dynamic likes system, and a trending posts module ranked by user engagement. Backed by a MySQL database with relational integrity and foreign key constraints.

Secure File Sharing System (February 3th, 2025)
A multi-user PHP web application for secure file upload, viewing, and deletion. Implements session-based login, per-user storage isolation, and regex validation for file/user safety. Designed with FIEO and basic access control in mind, ensuring users can only interact with their own files. Includes custom account creation, a persistent username registry, and MIME-type enforcement to safely render uploaded content.

PHP Calculator (January 27th, 2025)
A lightweight PHP web app that performs basic arithmetic operations using GET requests. Implements form-based user input and radio button controls for real-time addition, subtraction, multiplication, and division—complete with error handling for edge cases like divide-by-zero. Built as an early exploration of server-side scripting, input validation, and user-driven computation.

MockOS: C++ File System Simulation (Fall 2024)
Collaborative C++ static library simulating a basic file system with command-line operations. Implemented design patterns like Visitor, Factory, and Proxy to manage files, enforce access control, and handle commands such as ls, touch, cat, and macro operations.

Ginemenasaurus (Summer 2024)
A full-stack gym workout generator built with React and Tailwind CSS, offering dynamic, science-based workout routines tailored to user-selected goals and muscle groups. Uses a custom-built exercise engine that draws from a structured dataset of compound and accessory movements, with support for rep/tempo/rest schemes. Features a clean, mobile-responsive UI with interactive animations and personalized progression tracking.


Housing Price Predictor (Spring 2024)
End-to-end data science project to predict housing prices in Melbourne using 13,000+ real listings. Cleaned and explored the data, engineered new features, and tested multiple models (Linear Regression, KNN, Decision Tree, Random Forest). Tuned hyperparameters with GridSearchCV and evaluated performance using RMSE and R². The best model—Random Forest—achieved strong results (RMSE: $289K, R²: 0.83).