Work Experience

You need it to get the job, but the job's what gives it!

My professional experience spans across software development, where I've engineered scalable systems and optimized real-world platforms. From building appointment booking systems to developing responsive web applications, each opportunity has sharpened my technical skills and problem-solving abilities.

  1. Full Stack Developer Intern · Medzillo

    Engineered a scalable appointment booking system with Next.js, React, Node.js, and MongoDB handling 1000+ bookings/day and 5000+ monthly active users, with brochure/image uploads via Firebase Storage. Architected a Redis queue system for race-free token generation, sustaining 100+ concurrent appointment requests/sec with real-time updates via Socket.IO. Enhanced system security with Google reCAPTCHA, Zod validation, and bcrypt password hashing. Boosted image load speeds by 50% and optimized runtime performance with domain-based code splitting, lazy loading, and Webpack package-level splitting.

  2. Frontend Developer Intern · LawQuest

    Scaled content engagement by 30% through responsive course listings, legal blog sections, and dynamic detail pages built with Next.js. Developed lead capture systems using React Hook Form, Zod validation, and Nodemailer to automate email workflows. Spearheaded a reusable component library featuring modals, carousels, and accordions, contributing to the platform's Aceternity UI library with Framer Motion animations and improving average session time by 20%.

experience.ts

const internships = [
  {
    role: "Full Stack Dev Intern",
    company: "Medzillo",
    duration: "May 2025 – Present",
    highlights: [
      "Built scalable booking system (Next.js, Node, MongoDB)",
      "Setup Redis + Socket.IO for 100+ concurrent requests",
      "Optimized performance via code splitting, lazy loading"
    ]
  },
  {
    role: "Frontend Dev Intern",
    company: "LawQuest",
    duration: "Feb 2025 – Apr 2025",
    highlights: [
      "Made course & blog pages (Next.js)",
      "Integrated forms with Zod, Nodemailer",
      "Built reusable UI with Aceternity & Framer Motion"
    ]
  }
];

internships.forEach((exp) => {
  console.log(`💼 ${exp.role} @ ${exp.company} (${exp.duration})`);
  exp.highlights.forEach(item => console.log("🔹", item));
});