--- import { getAllExperience } from "@/data/experience"; import PageLayout from "@/layouts/Base.astro"; import { breadcrumbList, collectionPageSchema } from "@/utils/seo"; const experiences = await getAllExperience(); const meta = { description: "Roles and organizations I've worked with", schema: [ breadcrumbList([ { name: "Home", path: "/" }, { name: "Experience", path: "/experience/" }, ]), collectionPageSchema({ name: "Experience", description: "Roles and organizations I've worked with", path: "/experience/", items: experiences.map((e) => ({ name: e.data.role ? `${e.data.role}, ${e.data.organization}` : e.data.organization, path: `/experience/${e.id}/`, })), }), ], title: "Experience", }; const range = (start: Date, end?: Date) => `${start.getFullYear()} – ${end ? end.getFullYear() : "Present"}`; ---

Experience

Education

Virginia Commonwealth University
B.S. in Applied Mathematics

Attended 5 MLH hackathons, published 3 apps in 3 years with over 1M downloads, and wrote 3 articles with over 120k reads. Coursework spanned linear algebra, number theory, topological data analysis, and vector calculus.