Why I started a blog
I've been building things for a while now — SaaS apps, side projects, experiments with AI. But I rarely took the time to write about what I learned along the way.
This blog is my attempt to change that. I want to share:
- Technical deep dives into the tools I use daily
- Lessons learned from building products solo
- Thoughts on AI and how it's changing the way we build software
What to expect
I'll be writing about things like:
- Building fullstack apps with Next.js and TypeScript
- Working with AI APIs and agent frameworks
- The journey of shipping products as a solo developer
A quick code example
Here's a simple React component, just to make sure code blocks render nicely:
export function HelloWorld({ name }: { name: string }) {
return (
<div className="flex items-center gap-2">
<span>Hello, {name}!</span>
</div>
);
}What's next
Stay tuned for more posts. If you want to chat, feel free to reach out on X or GitHub.