Hi, I'm
CS + Math @ King's College — Building backend systems, APIs, and data-driven applications.
I'm a Junior studying Computer Science and Mathematics at King's College (GPA 3.7), passionate about building things that work at scale. I enjoy the intersection of clean API design, backend systems, and problem-solving with data.
Beyond the keyboard, I compete on the Men's Tennis Team (ITA Scholar-Athlete, MAC Academic Honor Roll) and founded a Coding Club where I organize ICPC competition prep and hackathon teams.
Currently seeking a Software Engineering Internship for Summer 2026 to sharpen my backend, cloud, and system design fundamentals on real production systems.
Education
King's College
B.S. Computer Science
B.A. Mathematics
Expected May 2027
Apex Era — Philadelphia, PA
Project Purple — Virginia Tech (Remote)
Featured Project
A backend infrastructure project demonstrating asynchronous job processing by separating API requests from background execution. Built with production-style architecture using separate API and worker processes.
func processJobs(db *sql.DB) {
for {
job := dequeueJob(db)
go func(j Job) {
updateStatus(db, j.ID, "running")
err := execute(j)
status := "completed"
if err != nil {
status = "failed"
}
updateStatus(db, j.ID, status)
}(job)
}
}
Featured Project
An AI coaching platform that analyzes uploaded tennis points and returns shot-by-shot tactical insights using computer vision and a modular processing pipeline.
Database-driven web app for planning Pokémon battles — explore types, stats, abilities, and moves with relational PostgreSQL queries and type effectiveness lookups.
Rust CLI tool for trading card vendors — imports CSV inventories, calculates profit margins, identifies loss positions, and formats large inventories into readable terminal tables.
24-hour hackathon project — web app that breaks down complex legal documents into clear, accessible language with secure backend services and structured document analysis workflows.
Social music event platform — built the full authentication and backend for Spotify OAuth 2.0 integration, Firebase custom claims, and protected API routes with token verification middleware.