Tech Blog

Thoughts on software engineering, AI, cloud, and emerging technology

All AI Web Dev Cloud DevOps Mobile Security
Web Dev

How a Rubik's Cube Solver Algorithm Works in JavaScript

2026-04-07

Implementing the 7-step beginner method in vanilla JavaScript. Cube state representation, face rotations, layer-by-layer solving, and the hardest bugs in translating a human algorithm to code.

Read More →
Web Dev

Understanding WalletConnect: Bridging dApps and Crypto Wallets

2026-04-07

How WalletConnect works under the hood. The relay protocol, session management, JSON-RPC messaging, and practical lessons from integrating it into a Chia blockchain game.

Read More →
DevOps

Zero-Downtime Deployment Strategies for Small Teams

2026-04-03

Practical zero-downtime deployment strategies for small teams and solo developers. Blue-green deployments, rolling updates, and database migrations without taking your site offline.

Read More →
Web Dev

Why We Build Browser Games Without Frameworks

2026-04-03

Why building browser games with vanilla HTML, CSS, and JavaScript instead of game frameworks leads to smaller file sizes, faster load times, and better learning experiences.

Read More →
Web Dev

The Power of Single-File Web Applications

2026-04-03

How single-file HTML applications with inline CSS and JavaScript can be surprisingly powerful. Benefits for developer tools, games, and utilities.

Read More →
AI

Building a Minesweeper AI Solver

2026-04-03

How to build an AI solver for Minesweeper using constraint satisfaction, probability estimation, and backtracking. From simple safe-cell detection to advanced endgame strategies.

Read More →
Web Dev

CSS Grid vs Flexbox: When to Use Which

2026-04-03

A practical guide to choosing between CSS Grid and Flexbox. When each layout system shines, common patterns, and how to combine them effectively.

Read More →
Web Dev

Making Web Games Accessible: A Practical Guide

2026-04-03

How to make browser-based games accessible to more players. Keyboard controls, screen reader hints, color contrast, reduced motion, and touch alternatives.

Read More →
Web Dev

Base64 Encoding Explained: How It Works and When to Use It

2026-04-03

A deep dive into Base64 encoding — how the algorithm works step by step, common use cases, the 33% size overhead, and when to use or avoid it.

Read More →
Security

How JWT Tokens Work: A Developer's Guide

2026-04-03

Understanding JSON Web Tokens from the inside out. How the three parts work, signing algorithms, common claims, security pitfalls, and when to use or avoid JWTs.

Read More →
Web Dev

Regex Patterns Every Developer Should Know

2026-04-03

Essential regular expression patterns for everyday development. Email validation, URL matching, password strength, data extraction, and search-and-replace techniques.

Read More →
Web Dev

Optimizing Static Sites for Core Web Vitals

2026-04-03

How to achieve excellent Core Web Vitals scores on static websites. Practical techniques for LCP, FID, CLS, and overall page performance without complex tooling.

Read More →
DevOps

Docker for Side Projects: When It Helps and When It's Overkill

2026-03-23

A practical guide to using Docker for personal projects. When containers genuinely help, when they add unnecessary complexity, and a minimal setup that works.

Read More →
Security

HTTPS and Content Security Policy for Static Sites

2026-03-23

Securing static sites with HTTPS, Content Security Policy headers, Subresource Integrity, and other free security measures. A practical checklist for going from grade F to grade A.

Read More →
Mobile

PWA Without a Framework: Service Workers for Vanilla JS Sites

2026-03-23

How to turn a vanilla HTML/CSS/JS site into an installable, offline-capable Progressive Web App with a manifest and a 40-line service worker. No React, no build tools.

Read More →
DevOps

Git Workflow for Solo Developers

2026-03-23

A lightweight Git workflow for one-person projects. Branching strategies, commit hygiene, tagging releases, and useful aliases that keep things simple without sacrificing good habits.

Read More →
Security

Client-Side Crypto Done Right: A Web Crypto API Guide

2026-03-23

Using the Web Crypto API for hashing, encryption, and key generation in the browser. Common pitfalls, the fundamental limitation of client-side crypto, and practical guidelines.

Read More →
AI

Building Browser Games with AI: Lessons from Sudoku and Snake

2026-03-23

Lessons learned using AI coding assistants to build Sudoku, Snake, and other HTML5 games from scratch. What AI does well with game development, where it struggles with performance and edge cases, and a practical workflow for the AI-assisted game dev process.

Read More →
AI

AI Coding Assistants Are Changing How We Write Software

2026-03-22

AI coding assistants have evolved from autocomplete tools into collaborative partners. How they are reshaping development workflows, what they do well, what stays hard, and what it means for the developer skillset going forward.

Read More →
Web Dev

Building Zero-Dependency Web Tools

2026-03-22

Why building web tools with zero dependencies leads to faster load times, easier maintenance, and better longevity. A practical look at the vanilla HTML, CSS, and JavaScript approach.

Read More →
Cloud

Self-Hosting vs Cloud: A Developer's Cost Analysis

2026-03-22

A practical cost and complexity comparison between self-hosting and cloud services for indie developers and small teams. When does each approach actually make sense?

Read More →