Back to all posts

March 18, 2026

Welcome to the blog

šŸ‘‹

Welcome to my blog! If you're into tech, AI, and like to nerd out about stuff, you might be in the right place.

If you're an engineer[-turned-vibe-coder] you are definitely in the right place.

Why I'm blogging

I'm building a business with my wife and co-founder, Mika Reyes, and we're going to learn a lot of things along the way.

This is here to jot down my thoughts, celebrate wins, and learn about our losses. We're building in public and want a place to share things.

Here's the first micro-post:

Website stack

This is a Next.js app deployed on Vercel and almost entirely vibe-coded. Except for the blog posts.

  • Every blog post is a .md file.
  • Next.js server-side renders the markdown files with react-markdown when you go to /posts/[slug].
  • I use rehype to add syntax highlighting to code blocks.
export function hello(name: string) {
  return `Hello, ${name}`;
}

Wow, so cool!

That's it, that's the post.