Experience

you need experience to get a job, but you need a job to get experience.

Throughout my journey as a developer, I’ve worked with cutting-edge technologies while mastering the fine art of debugging at 2 AM. From building dynamic web applications to untangling cryptic error logs, my experience has blended structured learning with spontaneous problem-solving. Every project, hackathon, and internship has honed my ability to write clean, scalable code, collaborate effectively, and—most importantly—fix bugs before they fix me.

  1. Web Developer Intern · Gharpan NGOLatest

    Developing a scalable orphanage management system for Gharpan NGO, featuring secure data tracking, workflow automation, and Excel/PDF exports — streamlining operations and reducing manual workload by 50%.

  2. Upcoming Summer Intern · BNY

    Selected in top 1% candidates through on-campus recruitment, excelling in DSA, OOP and SYSTEM DESIGN.

  3. Secretary · GameDevUtopia

    Working as a part-time Secretary at GameDevUtopia, where I manage communications, organize events, and support the development team while honing my attention to detail and time management skills.

experience.ts

const experience = [
  {
    role: "Web Developer Intern",
    company: "Gharpan NGO",
    duration: "July 2025 - Aug 2025",
    details: "Developing an orphanage management system with secure data tracking and exports.",
  },
  {
    role: "Upcoming Summer Intern",
    company: "BNY",
    duration: "July 2026 - Aug 2026",
    details: "Selected via on-campus recruitment; focus on DSA, OOP and system design.",
  },
  {
    role: "Secretary",
    company: "GameDevUtopia",
    duration: "May 2025 - May 2026",
    details: "Managed communications, events and supported dev efforts part-time.",
  },
];

experience.forEach((job) => {
  console.log('- ' + job.role + ' at ' + job.company + ' (' + job.duration + ')');
  console.log('  ' + job.details);
});