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.
Web Development Intern · Skilign
Collaborated on the initial setup by evaluating and recommending the tech stack, shaping the platform architecture. Supported the team in building frontend and backend components using React, MongoDB, and RESTful APIs.
Freelance Web Developer · Metal Casting Industry Website
Developed and deployed a fully responsive website for a metal casting company using React and Netlify, improving digital presence with smooth navigation and strong lead generation.
Contributor · Code Daily With Me
Integrated frontend components for a DSA progress tracker platform, aligning them with a dynamic DSA sheet-based structure. Focused on responsive UI and real-time data updates.
Lead Developer · Official Club Website
Developed and deployed the official responsive website for a college department club to showcase events, teams, and projects. Boosted student engagement and visibility.
Lead Developer · College Department LMS
Built a custom Learning Management System for internal departmental use, streamlining assignment tracking, submissions, and communication between faculty and students.
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(", ")}`);
});