tino.build/
All posts

Hello World

Welcome to the tino.build blog — a space for experiments, learnings, and side project updates.

Welcome to the tino.build blog. This is where I'll share thoughts on building things with modern web tools.

What to expect

Posts about the projects in this monorepo — chess analysis, game dev experiments, developer tooling, and whatever else I'm tinkering with.

The stack

This blog itself is built with:

  • TanStack Start for SSR and file-based routing
  • content-collections for build-time markdown processing
  • Tailwind CSS 4 for styling
  • Bun as the runtime and package manager
// content is type-safe and processed at build time
import { allPosts } from "content-collections";
 
const sorted = allPosts.sort(
  (a, b) =>
    new Date(b.publishedAt).getTime() - new Date(a.publishedAt).getTime(),
);

More posts coming soon.