- 🔭 Full‑stack engineer who enjoys shipping AI‑powered products end to end.
- 🤖 Currently obsessed with agents — wiring models to tools, data and real workflows.
- 🧠 Treats AI as a teammate: brainstorming, coding, debugging and iterating together.
- 🌱 Curious by default, always learning and experimenting with new stacks and ideas.
- ✨ Likes turning messy, repetitive tasks into small, opinionated tools that feel fun to use.
import random
plans = {
"Python": "spin up a small backend service that talks to everything",
"Go": "build a tiny CLI that does one thing extremely well",
"Dart": "prototype a mobile UI I may or may not ever finish",
"TypeScript": "refactor a React component until it finally feels clean",
"JavaScript": "write a quick browser hack and then forget why it works",
}
language, idea = random.choice(list(plans.items()))
print(f"Today I'm probably using {language} to {idea}.")


