Hello World
Welcome to the blog. This is the first post, serving as a smoke test for the public MDX content pipeline.
What This Is
A small public developer blog built with:
- Next.js for static rendering
- MDX for writing posts in Git
- GitHub Pages for low-cost public hosting
- Docker for local verification without installing Node tooling on the workstation
Code Example
Here's a minimal TypeScript helper:
export function greeting(name: string) {
return `Hello, ${name}.`;
}What's Next
More posts on engineering notes, editor setup, infrastructure choices, and deployment automation coming soon.