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
.mdfile. - Next.js server-side renders the markdown files with
react-markdownwhen you go to/posts/[slug]. - I use
rehypeto add syntax highlighting to code blocks.
export function hello(name: string) {
return `Hello, ${name}`;
}
Wow, so cool!
That's it, that's the post.