01// experience.ts — Work history
02
03import { Experience } from "./types"
04
05const experience: Experience[] = [
06 {
07 company: "Vercel",
08 role: "Senior Software Engineer",
09 period: "2022 – Present",
10 location: "San Francisco, CA",
11 highlights: [
12 "Led the rebuild of the deployments dashboard, reducing p95 load time by 68%",
13 "Shipped Edge Config from zero to 10,000+ customers in 3 months",
14 "Mentored 4 engineers and ran weekly architecture reviews across 2 time zones",
15 ],
16 technologies: ["Next.js", "TypeScript", "Edge Runtime", "Go"],
17 },
18 {
19 company: "Stripe",
20 role: "Software Engineer II",
21 period: "2020 – 2022",
22 location: "Remote",
23 highlights: [
24 "Built the Stripe Radar rules engine UI used by 250,000+ merchants globally",
25 "Reduced fraud false-positive rate by 23% through improved ML signal features",
26 "Designed the webhooks configuration system with a zero-downtime migration",
27 ],
28 technologies: ["Ruby", "React", "Kafka", "PostgreSQL"],
29 }
30]
31
32export default experience