Hello, world
This is the first post on my new portfolio blog. It uses MDX, so I can mix Markdown with React components when a post needs something interactive.
What to expect
- Notes on engineering decisions from side projects
- Short write-ups on weird little tools I build for myself
- Occasional longer pieces on team or career stuff
Here's a small code block so I can verify syntax highlighting is wired up:
function greet(name: string) {
return `hello, ${name}`
}
console.log(greet('world'))
More soon.