class Omkar extends Developer {
constructor() {
super();
this.name = "Omkar Kamble";
this.role = "Full Stack Developer";
this.languageSpoken = ["hi_IN", "en_US"];
this.currentlyLearning = "Advanced AI/ML ๐ค";
this.funFact = "I debug with console.log and I'm proud of it! ๐";
}
sayHi() {
return "Thanks for dropping by! Let's build something amazing together! ๐";
}
getLifeGoals() {
return [
"Build impactful tech solutions ๐ก",
"Contribute to Open Source ๐",
"Share knowledge with community ๐",
"Never stop learning ๐ฏ"
];
}
}
const ProjectHighlight = () => {
return (
<div className="project">
<h3>๐ฏ Mission</h3>
<p>Revolutionizing learning with AI-powered course generation</p>
<h3>โก Impact</h3>
<ul>
<li>1000+ daily active learners</li>
<li>90% satisfaction rate</li>
<li>75% faster course creation</li>
</ul>
<h3>๐ ๏ธ Built With</h3>
<p>Next.js โข Gemini API โข Drizzle ORM โข โค๏ธ</p>
</div>
);
};
Mood | Track |
---|---|
๐ฏ Focus | Lofi Beats |
๐ Debug | Metal ๐ค |
๐ Launch | Eye of the Tiger |
๐ก Planning | Classical Piano |
graph TD
A[Wake Up] -->|Coffee| B[Code]
B --> C{Bug?}
C -->|Yes| D[Debug]
C -->|No| E[Feature]
D --> F[Stack Overflow]
F --> B
E --> G[Git Commit]
G --> H[Coffee Break]
H --> B