cat ~/projects.yml
Hack Harvard:
- description: AI-powered number guessing game using OpenAI
- alive: true
- additional info: harvard-info.txt

MyQC Grades:
- description: Grade tracking web app for Queens College students
- alive: true
- additional info: qc-grades.txt

CS381 - SQL Programming:
- description: Designed and implemented SQL queries and data models using Microsoft SQL Server
- alive: false
- additional info: sql-programming.txt

CS363 - Artificial Intelligence:
- description: Explored AI algorithms and decision-making techniques
- alive: false
- additional info: ai-projects.txt

Search Engine:
- description: Real-time, stateless web search engine built from scratch
- alive: true
- additional info: search-engine.txt


cat ~/harvard-info.txt

Hack Harvard is a collegiate hackathon where I built a game that uses AI to challenge the player’s intuition. The computer generates a random number using OpenAI, and the user must guess whether the AI’s number is higher or lower than their own. I developed a secure and efficient backend in JavaScript and MySQL, handling all user data, game logic, and storage. This project gave me hands-on experience building scalable backend systems and integrating AI into real-time games, all under the intense time pressure of a hackathon. The system is lightweight, reliable, and easily extendable for future features.

Hack Harvard Website

GitHub Repository


cat ~/qc-grades.txt

MyQC Grades is a grade tracking web app used by Queens College students. It automates GPA calculation and course progress tracking, backed by a Python Flask backend with SQL data storage. It has been used by over 10,000 students to reduce manual grade calculation errors. The main drive behind building it was to provide a simple, reliable tool for students to easily monitor their academic progress.

Live Website

GitHub Repository


cat ~/sql-programming.txt

CS381 - SQL Programming with Data Modeling is a database systems course offered by Queens College. It covers SQL querying, relational design, data modeling, indexing, and concurrency control. The course provides hands-on experience with T-SQL and Entity Relationship Modeling, using Microsoft SQL Server 2019. The main focus of the course is to develop students’ ability to design efficient databases and write complex SQL queries for professional environments.

GitHub Repository


cat ~/ai-projects.txt

CS363 - Artificial Intelligence is an advanced computer science course offered by Queens College. The course covers core AI concepts including search algorithms, decision-making, and problem-solving techniques. As part of the coursework, I completed multiple Python projects implementing algorithms for pathfinding, decision analysis, and automated agents. These projects provided hands-on experience with foundational AI principles and algorithm design.

GitHub Repository


cat ~/search-engine.txt

Search Engine is a real-time, stateless web search engine built entirely from scratch. It fetches fresh search results live from the web without storing any index, database, or cached data. The project was designed to replicate the core concepts behind professional search engines — from crawling to live query processing — while keeping the system lightweight and fast. The architecture uses Flask for the backend and React for the frontend, demonstrating full-stack integration, API usage, and real-time data delivery.

Live Website

GitHub Repository