class Developer {
name: string = "Rahul Hanje";
location: string = "India 🇮🇳";
title: string = "Full-Stack & Web3 Developer";
skills: {
languages: string[] = ["C", "JavaScript", "TypeScript", "C++", "Solidity", "SQL", "Python"];
frontend: string[] = ["React.js", "Next.js", "Tailwind CSS", "HTML5", "CSS3"];
backend: string[] = ["Node.js", "Express.js", "Firebase", "Hono"];
databases: string[] = ["MongoDB", "PostgreSQL", "MySQL", "Supabase"];
blockchain: string[] = ["Solidity", "Hardhat", "Ether.js", "Solana (WIP)"];
tools: string[] = ["Docker", "Git", "Postman", "VS Code"];
};
currentlyLearning: string = "Scaling DApps & Websites & DSA";
motto: string = "Building bugs into features since 2022 🐞✨";
funFact: string = "Can debug code at 3 AM but can't debug life decisions 😅";
sideQuest: string = "Silently crushing on a girl who makes Instagram reels 😳📱";
getContact(): string {
return "rahulhanje0.7@gmail.com";
}
getGithub(): string {
return "https://github.com/Rahulhanje";
}
}
const rahul = new Developer();
console.log(rahul.motto); // Productivity: 100%. Sanity: 404 Not Found. 😂
const currentMission = {
status: "Typing semi-colons like they pay rent 😤;",
reality: "Staring at the same bug for 3 hours — it's a feature now 🐞💥",
mood: "Fueled by caffeine, chaos, and compiler errors ☕🔥",
nextGoal: "Achieve immortality by writing code no one can ever understand 😎👨💻"
};
console.log("Error 404: Social life Not Found 💀😂");