This is the first post on this blog, where I’ll be writing about software engineering in English.
How this blog is built
This site is intentionally boring, in the good way:
- Astro with the AstroPaper theme
- Posts are Markdown files in a Git repository — no CMS
- Built and hosted on Cloudflare Pages, deployed on every push
A code block, to make sure syntax highlighting works:
const greet = (name: string): string => `Hello, ${name}!`;
console.log(greet("world"));