Rewards & Recognition
Recognitions and awards earned during my academic and hackathon journey.
I’ve been fortunate to receive several awards and recognitions for projects and academic performance. These honors reflect focused effort, teamwork, and an appetite for building useful solutions.
Second Runner Up · Abhivyakti
Secured Second Runner-Up at the National-Level Paper Presentation Competition for research on Neural Image Synthesis.
Top 20 · Odoo hackathon
Ranked in the Top 20 teams among 19,000+ participants. Developed a real-time court booking system.
Finalist · Dream 11 Gameathon
Built an ML model to predict the best playing 11 for every match and get the maximum fantasy points.
rewards.ts
const rewards = [
{
title: "Top 20 · Odoo hackathon",
issuer: "Odoo",
date: "2025",
details: "Ranked in the Top 20 teams among 19,000+ participants.",
},
{
title: "Second Runner Up · Abhivyakti",
issuer: "Abhivyakti",
date: "2025",
details: "Secured Second Runner-Up at the National-Level Paper Presentation Competition.",
},
{
title: "Finalist · Dream 11 Gameathon",
issuer: "Dream 11",
date: "2025",
details: "Built an ML model to predict the best playing 11 for every match.",
},
];
console.log('Rewards & Recognition:');
rewards.forEach(function (r) { console.log('- ' + r.title + ' — ' + r.issuer + ' (' + r.date + '): ' + r.details); });