Experience & Leadership

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

My experience spans across software development and leadership, where I’ve engineered scalable systems and empowered peers in the developer community. From optimizing real-world platforms to mentoring dozens of students in competitive programming, each opportunity has sharpened both my technical and teamwork skills.

  1. Certificate

    Frontend Developer Intern · LawQuest

    Developed landing and course detail pages using Next.js, implemented UI components with Radix UI and Motion, and enhanced the UI with tailwindcss-animate. Integrated Nodemailer to handle email communication from frontend.

  2. Certificate

    CP/DSA Lead · GFG IIIT-BH Student’s Chapter

    Initiated a mentorship program for 100+ students, curated 20+ problem sets with detailed editorials, boosting engagement and reducing support queries by 25%.

  3. Certificate

    Project Manager · OPCODE (Open-Source Spring Fest)

    Spearheaded the open-source CodeCrack project by delivering daily C++ challenges to 200+ participants. Managed 60+ issues and merged 170+ pull requests, ensuring smooth collaboration and continuous contribution throughout the fest.

  4. Certificate

    Club Lead · PyC Coding Club IIIT Bhagalpur

    Mentored 40+ students in DSA and CP, led 5+ competitive contests with 200+ participants, and fostered a healthy peer-learning culture through hands-on guidance.

experience.ts

const internships = [
  {
    role: "Software Developer Intern",
    company: "Jorte Career Counsel",
    duration: "May 2024 – Aug 2024",
    highlights: [
      "Built a scalable NEET test platform backend",
      "Integrated ImageKit for optimized media delivery",
      "Streamlined payments with Razorpay & automated test flows"
    ]
  }
];

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