Hello, World!

First post on ivks.me — testing the blog engine

·1 min read
metablog

Hello, World!

This is the first post on ivks.me. The blog is powered by Next.js and Velite with MDX support.

What this blog is about

I write about:

  • Rust, TypeScript, and systems programming
  • Creative coding experiments (Strudel, Processing, WebGL)
  • Developer tooling and workflows
  • Architecture decisions and project retrospectives

Code highlighting test

Here's a simple TypeScript example:

interface Post {
  title: string
  slug: string
  tags: string[]
  published: boolean
}
 
function getPublishedPosts(posts: Post[]): Post[] {
  return posts
    .filter((post) => post.published)
    .sort((a, b) => b.title.localeCompare(a.title))
}

And some Rust:

fn main() {
    let greeting = "Hello from ivks.me!";
    println!("{greeting}");
}

What's next

More posts coming soon. Stay tuned.