Welcome to my personal corner of the web

This is where I'll be sharing my thoughts, tutorials, and creative work. Inspired by the clean aesthetics of early web design, this site aims to be simple, fast, and focused on content. No distractions, just words and ideas.

Read More →

Building a static site in 2025

Sometimes the best solutions are the simplest ones. Here's why I chose to build a static website with vanilla HTML and CSS instead of using a framework or static site generator.

Read More →

How to set up your development environment

A quick guide to getting started with web development. We'll cover text editors, version control, and essential tools you'll need to build your first website.

// Example: Simple Node.js server
const http = require('http');
const server = http.createServer((req, res) => {
  res.writeHead(200, { 'Content-Type': 'text/plain' });
  res.end('Hello World!');
});
server.listen(3000);
Read More →