Coding Projects
Miscellaneous coding projects
Miscellaneous coding projects
This is a web app I made for my school band. It allows users to upload photos and videos which are stored to a shared Google Drive folder. Features include a custom file uploading implementation with file streaming, file saving between sessions, and a unique action queue system to prevent race conditions from delays in API calls and file uploads.
This is an ear training app similar to Wordle, except with notes instead of letters. It also features an option to play C for relative pitch training. I planned to add the ability to customize the number of pitches played and the intervals between them to change the difficulty.
I made this web app to organize our friend group's Friendsgiving. Users can sign up for food to bring in different categories, and the data is stored in a database.
This is a web app I built for my AP Statistics experiment. It measures the reaction time of participants while randomly assigning the color of the visual stimulus. The objective was to determine which color yielded the quickest reaction time. Participants fill out a preliminary form and then move on to the test. After completion, results are automatically sent to the server, where it compiles the data and generates statistics and box plots.
I wrote this python program that uses opencv to detect drones in the mobile game Egg Inc. It first filters out our brown pixels, then runs blob detection to find moving clusters of brown pixels. Then I used motion extrapolation to predict the next position of the drone to click it.