Experience

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

Throughout my journey as a developer, I have had the opportunity to work with cutting-edge technologies while also mastering the fine art of debugging at 2 AM. From building dynamic web applications to deciphering cryptic error messages, my experience has been a mix of structured learning and spontaneous problem-solving. Each project and internship has sharpened my ability to write clean code, collaborate effectively, and most importantly—fix bugs before they fix me.

  1. Software Development Engineer · OneAssureLatest

    Leading end-to-end development of non-health insurance products, enhancing system reliability and UX. Redesigned insurance workflows (KYC, payments, policy issuance) using Golang (Temporal, gRPC) with activity workers and saga pattern for fault-tolerant distributed systems, improving onboarding speed 5x. Built concurrent pipelines using goroutines and integrated with existing Java Spring Boot microservices, reducing processing time by 40%. Optimized inter-service communication between Golang and Java REST APIs for payment validation, policy issuance, and partner integrations.

  2. Software Development Engineer - Intern · PESU Venture Labs

    Contributed to cloud automation AI SaaS platform, achieving 5x faster AWS deployments. Implemented Terraform for Infrastructure as Code (IaC), achieving 90% deployment consistency. Developed full-stack SaaS applications using React, Node.js, Express, MySQL, Prisma, ShadCN UI; automated workflows with Python and RabbitMQ for microservices communication.

experience.ts

const experience = [
  {
    role: "Senior Coffee Consumer",
    company: "Remote Office (My Desk)",
    duration: "Forever",
    skills: ["Caffeine Management", "Bug Staring", "Keyboard Jamming"],
  },
  {
    role: "Full-Stack Developer",
    company: "Stack Overflow Solutions Inc.",
    duration: "When Google is Available",
    skills: ["Copy-Pasting", "Fixing Bugs with Console.log", "Deploying & Praying"],
  },
  {
    role: "Intern",
    company: "My Own Side Projects",
    duration: "Since Birth",
    skills: ["Breaking Code", "Googling Errors", "Naming Variables Creatively"],
  },
];

experience.forEach((job) => {
  console.log(`👨‍💻 ${job.role} at ${job.company} (${job.duration}) 
🚀 Skills: ${job.skills.join(", ")}`);
});