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. SDE Intern · Rebec Technologies Pvt. Ltd.

    Engineered core functionality using the MERN stack with TypeScript, contributing to 3 major features: Designed and optimized fixture schema models that improved data retrieval speed by 35%, Implemented secure authentication system handling 1000+ concurrent users during peak events, and Developed interactive tournament brackets with real-time updates using Socket.io. Collaborated with a 2-member agile team to deliver sprints on time, reducing bug reports by 40% through comprehensive unit testing with Jest and React Testing Library.

  2. AI Intern · DRDO

    Developed UI applications and layouts for government projects, improving user experience and accessibility. Created an image captioning model by integrating LLAMA 3.2 8B with MobileNetV3 CNN architecture, trained on the Flickr dataset to accurately generate descriptions for various images. This system achieved high accuracy in military image recognition tasks while maintaining efficient performance on standard hardware.

experience.ts

const internships = [
  {
    role: "SDE Intern",
    company: "Rebec Technologies Pvt. Ltd.",
    duration: "June 2025 - July 2025 · Remote",
    highlights: [
      "Engineered core functionality using the MERN stack with TypeScript, contributing to 3 major features",
      "Designed and optimized fixture schema models that improved data retrieval speed by 35%",
      "Implemented secure authentication system handling 1000+ concurrent users during peak events",
      "Developed interactive tournament brackets with real-time updates using Socket.io",
      "Collaborated with a 2-member agile team to deliver sprints on time, reducing bug reports by 40% through comprehensive unit testing with Jest and React Testing Library"
    ]
  },
  {
    role: "AI Intern",
    company: "DRDO",
    duration: "June 2025 - July 2025 · Delhi, India",
    highlights: [
      "Developed UI applications and layouts for government projects, improving user experience and accessibility",
      "Created an image captioning model by integrating LLAMA 3.2 8B with MobileNetV3 CNN architecture",
      "Trained on the Flickr dataset to accurately generate descriptions for various images",
      "Achieved high accuracy in military image recognition tasks while maintaining efficient performance on standard hardware"
    ]
  },

];

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