Welcome to Many Things, One Mind — a space dedicated to software engineering, design, and technical writing.
This site is built with Astro and MDX, using a clean, content-first architecture.
Why MDX?
MDX allows combining Markdown syntax with embedded components when needed, while maintaining clean plain-text source files:
- Type Safety: Content schemas validate frontmatter at build time.
- Performance: Zero runtime JS required for static content.
- Portability: Content lives in Git alongside the codebase.
// Example code snippetexport function greet(name: string): string { return `Hello, ${name}! Welcome to the blog.`;}Stay tuned for more notes and articles.