Hello World
meta intro
Hello World
Welcome to my blog. This is the first post on my new site.
I built this site with Astro, React Three Fiber, and Tailwind CSS. The terminal aesthetic is a nod to where it all started — a blinking cursor on a dark screen.
What to expect
I’ll be writing about:
- Software engineering — architecture decisions, patterns, and lessons learned
- Web technologies — deep dives into frameworks, tools, and the platform
- Side projects — building things and shipping them
A code sample
Here’s a quick example to test syntax highlighting:
async function fetchData<T>(url: string): Promise<T> {
const response = await fetch(url);
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`);
}
return response.json();
}
Stay tuned for more posts.