Leadership & Achievements
Empowering others to grow and succeed!
My leadership journey has been centered around mentoring students, organizing events, and fostering a collaborative learning environment. From managing competitive programming contests to contributing in tech clubs, I've had the privilege of guiding hundreds of students in their technical journey while building strong communities.
- Certificate
ML Track Hackathon Runner Up
Competed against 50 teams across various colleges in brAInwave 2024, organized by the AIMS society of DTU. Won runner-up in the ML Trading track for developing an innovative qualitative stock analysis application.
- Certificate
Runner Up at Toastmaster Pitch Perfect Event
Competed against 15 teams, to pitch and create a business idea during Toast Talks 9.0 hosted by the Toastmaster Club at Thapar University. Successfully delivered a compelling presentation that earned runner-up recognition in the Pitch Perfect competition.
Core Member at CCS
Selected as one of the top 18 Core Members out of 80 (from 1800+ applicants) in Thapar University's premier tech society. Contributing to major events like Syrinx, Society Fair, and Recruitment Drives through design, pitching, coordination, and interviews. Playing a key role in HackTU 6.0 — Thapar's largest hackathon (5000+ registrations) — by developing the website and supporting tech, logistics, and creative efforts. Also mentoring students in DSA, C++, and leading technical sessions as a Core CCS Coding Community member.
Core Member at Saturnalia
Selected among 500+ applicants to develop the official website for Saturnalia, Thapar's annual business-tech-culture festival. Working in an Agile team environment, implemented key features using Firebase integration, GSAP animations, Framer Motion, and various frontend optimizations. Focused on delivering exceptional UI/UX design while ensuring optimal performance across all devices. Collaborated with cross-functional teams to meet tight deadlines and showcase the fest's diverse events and activities.
leadership.ts
const leadershipRoles = [
{
title: "ML Track Hackathon Runner Up",
organization: "brAInwave 2024 - AIMS Society, DTU",
duration: "Nov 2024",
description: "Competed against 50 teams across various colleges. Won runner-up in the ML Trading track for developing an innovative qualitative stock analysis application."
},
{
title: "Runner Up at Toastmaster Pitch Perfect Event",
organization: "Toast Talks 9.0 - Toastmaster Club, Thapar University",
duration: "May 2024",
description: "Competed against 15 teams to pitch and create a business idea. Successfully delivered a compelling presentation that earned runner-up recognition."
},
{
title: "Core Member at CCS",
organization: "Thapar University's Premier Tech Society",
duration: "Jun 2024 - May 2025",
description: "Selected as one of the top 18 Core Members out of 80 (from 1800+ applicants). Contributing to major events like Syrinx, Society Fair, and Recruitment Drives. Playing a key role in HackTU 6.0 — Thapar's largest hackathon (5000+ registrations) by developing the website and supporting tech efforts. Also mentoring students in DSA, C++, and leading technical sessions."
},
{
title: "Core Member at Saturnalia",
organization: "Thapar's Annual Business-Tech-Culture Festival",
duration: "Sep 2024 - Nov 2025",
description: "Selected among 500+ applicants to develop the official website for Saturnalia. Working in an Agile team environment, implemented key features using Firebase integration, GSAP animations, Framer Motion, and frontend optimizations. Focused on delivering exceptional UI/UX design while ensuring optimal performance across all devices."
}
];
console.log("👑 Leadership Roles & Achievements:");
leadershipRoles.forEach(role => {
console.log(`🏆 ${role.title} @ ${role.organization} (${role.duration})`);
console.log("�", role.description);
});