blog.tnez.dev

Yet Another Hello World

Welcome to my new blog! This is the first post in what I hope will be a long series of interesting articles and thoughts.

Why a new blog?

I wanted a simple, clean platform to share thoughts, code snippets, and technical explorations. This blog is built with Lume, a static site generator for Deno.

Code Highlighting

One of the key features I wanted was good syntax highlighting. Here's a sample TypeScript snippet:

interface User {
  id: string;
  name: string;
  email?: string;
}

function greetUser(user: User): string {
  return `Hello, ${user.name}!`;
}

const user: User = {
  id: "123",
  name: "John Doe",
};

console.log(greetUser(user));

Raw Content Access

This blog is designed to be easily consumed by both humans and machines. You can view any post in raw markdown format by appending .md to the URL, like this.

What's Next?

I plan to write about:

Stay tuned for more content coming soon!

← Back to Home