Throughout my journey as a developer, I’ve explored the latest technologies while also becoming best friends with bugs at 2 AM. From building full-stack web apps with the MERN stack to untangling confusing console errors, my growth has come from both structured learning—like 100xDevs and hands-on internships—and late-night problem-solving marathons. Every project has made me better at writing clean, maintainable code, working with teams, and most importantly—fixing bugs before they break me.
Joined VSSUT burla in Information Technology.
Started contributing to open source and college projects.
Learning backend system design and real-world skills .
Started new experience at TaleSoul as a frontend developer
1
2const experience = [
3 {
4 role: "Senior Coffee Consumer",
5 company: "Remote Office (My Desk)",
6 duration: "Forever",
7 skills: ["Caffeine Management", "Bug Staring", "Keyboard Jamming"],
8 },
9 {
10 role: "Full-Stack Developer",
11 company: "Stack Overflow Solutions Inc.",
12 duration: "When Google is Available",
13 skills: ["Copy-Pasting", "Fixing Bugs with console.log", "Deploying & Praying"],
14 },
15 {
16 role: "Intern",
17 company: "My Own Side Projects",
18 duration: "Since Birth",
19 skills: ["Breaking Code", "Googling Errors", "Naming Variables Creatively"],
20 },
21];
22
23experience.forEach((job) => {
24 console.log(`👨💻 ${job.role} at ${job.company} (${job.duration})\n🚀 Skills: ${job.skills.join(", ")}`);
25});
26