Ctrl + Alt + Del would never delete my passion for coding. Git happens! But so do amazing projects.
- 🌍 I'm from Bangalore,India
- ✉️ You can contact me at navi29012004@gmail.com
- 🤝 I'm open to collaborating on Web development Projects as well as ML
- 🖥️ My Portfolio
🧑🚒LogoForge
Leetcode
class WhoAmI {
constructor() {
this.user = 'Naveen';
this.currentWork = 'Writing elegant, occasionally chaotic code';
this.hobbies = [
'Railfanning 🚂 (yes, I can identify locomotives by sound)',
'Watching mind-bending series',
'Reading Sci-Fi novels (Asimov is a legend)',
'Staying up all night hunting down that *one* elusive bug 🐛'
];
}
getCity() {
return 'Bangalore, India';
}
getAmbitions() {
return [
'Become fluent in Japanese (日本語を話せるようになる)',
'Build a *responsible* version of SkyNet 🤖',
'Finish and publish my own Sci-Fi novel',
'Contribute meaningfully to AI & automation in rail systems'
];
}
introduce() {
return `Hi, I'm ${this.user} from ${this.getCity()}. I'm currently ${this.currentWork.toLowerCase()} and living the dream of code, trains, and creativity.`;
}
}