July 25, 2026
Welcome to My Blog
A place to work through ideas about software, developer tools, AI, and everything I am learning.
- meta
- software
I have always learned best by building something, taking it apart, and then trying to explain what happened. This blog gives those explanations a home.
What I will write about
- Practical software engineering
- Developer tools and terminal workflows
- AI-assisted development
- Experiments that work—and the ones that do not
Here is the smallest possible example:
export function Idea({ children }: { children: React.ReactNode }) {
return <aside>{children}</aside>
}
There is more to come.