updatesmeta
Hello World: My First Post
January 2, 20251 min read
This is my first blog post! I'm testing out the MDX blog system I just built with Claude Code.
Why I'm Writing
I believe in learning in public. When you write about what you're learning:
- It forces you to understand concepts deeply
- Others can learn from your journey
- You build a record of your progress
What's Coming
I'll be writing about:
- Building with Claude Code
- My journey from M&A to tech
- Project build logs
- Lessons learned along the way
This blog is built with Next.js 14 and MDX. Every post you're reading was written in Markdown with the ability to embed React components.
A Code Example
Here's a simple TypeScript function:
function greet(name: string): string {
return `Hello, ${name}!`;
}
console.log(greet("World"));
Thanks for reading! More posts coming soon.