Hello, World
· 1 min read
meta
Welcome to g42f.com. This is where I’ll write about software, systems, and whatever else I’m building or thinking about.
Why a blog?
Writing forces clarity. If I can’t explain something in plain text, I probably don’t understand it well enough. This site is as much for me as it is for anyone reading.
The stack
This site is built with:
- Astro — static site generator, fast and simple
- Tailwind CSS — utility-first styling
- Markdown — content lives in
.mdfiles - nginx on a VPS — no platform lock-in
Here’s what a code block looks like:
const greeting = "hello, world";
console.log(greeting);
And some shell commands:
npm run build
rsync -avz dist/ server:/var/www/g42f.com/
That’s it. More posts coming soon.