interface Project {
name: string;
description: string;
techStack: string[];
status: "active" | "completed" | "in-development";
}
const projects: Project[] = [
{
name: "AGM SDS Platform",
description: "Seafarer assignment platform used by 1K+ crew/month, cutting vetting time from 58m to 7m (88%) with Gale-Shapley matching",
techStack: ["React", "Node.js", "SQLite", "Gale-Shapley Algorithm"],
status: "active"
},
{
name: "TutorSwap Platform",
description: "Full-stack peer tutoring platform with AI-powered matching",
techStack: ["React", "Flask", "PostgreSQL", "Socket.IO"],
status: "in-development"
},
{
name: "Forget-Me-Not IoT System",
description: "Automated plant watering system with sensors and LED controls. Patent pending from USPTO",
techStack: ["Arduino", "CAD", "IoT Sensors", "Hardware Engineering"],
status: "patent-pending"
},
{
name: "Satellite Maneuver Optimization",
description: "Optimized plane change maneuvers for Geosynchronous satellites using MIT, ASU, and Cornell research data",
techStack: ["R", "Orbital Mechanics", "Mathematical Modeling", "IB Math EE"],
status: "completed"
},
{
name: "Coastal Wall Design Analysis",
description: "Numerical analysis of coastal wall design for Jakarta's sinking city problem using wave overtopping models",
techStack: ["Python", "Parabolic Shape Model", "Wave Analysis", "IB Science Fair"],
status: "completed"
},
{
name: "Digital Information Disorder Impact",
description: "Explored impact of disinformation on brand equity at local, national, and global scales",
techStack: ["Marketing Analytics", "Data Analysis", "Brand Equity Research"],
status: "completed"
},
{
name: "AI Grant Matcher",
description: "AI chatbot matching nonprofits with grants",
techStack: ["React", "Redux", "Flask", "OpenAI API"],
status: "active"
},
{
name: "ML Forecasting Engine",
description: "Time-series forecasting for infrastructure predictions",
techStack: ["Python", "TensorFlow", "Apache Spark"],
status: "completed"
},
{
name: "Enterprise Automation Tools",
description: "SAP integration and process automation suite",
techStack: ["Java", "SAP", "z/OS", "COBOL"],
status: "active"
}
];
export { projects };