Coding

Category archive

WordPress Transients API: How to Cache Expensive Queries and Speed Up Your Site
Coding 45 03/25/26

WordPress Transients API: How to Cache Expensive Queries and Speed Up Your Site

How to use the WordPress Transients API to cache database queries, API responses, and computed data. Covers production patterns, object cache backends,…

Headless WordPress: When It Makes Sense and When You Should Stay Traditional
Coding 47 03/25/26

Headless WordPress: When It Makes Sense and When You Should Stay Traditional

Four approaches to building with WordPress in 2026: traditional, custom-code builders like Bricks, hybrid headless, and full headless. Decision framework included.

How to Host Multiple WordPress Sites on One Server
Coding 54 03/21/26

How to Host Multiple WordPress Sites on One Server

Three ways to host multiple WordPress sites on one server: manual VPS, managed platforms like Cloudways and ScalaHosting, and managed hosting like…

How to Write Shell Helper Functions That Save You Time Every Day
Coding 60 03/20/26

How to Write Shell Helper Functions That Save You Time Every Day

Practical shell helper functions for SSH shortcuts, git workflows, project navigation, and dev tools. Copy-paste-ready examples for Bash and Zsh.

How to Build a Card Game in Godot 4: Deckbuilder Systems from Scratch
Coding 495 03/18/26

How to Build a Card Game in Godot 4: Deckbuilder Systems from Scratch

Learn how to build a complete deckbuilder card game system in Godot 4. Cards as Resources, draw and discard piles, mana-gated turns,…

Procedural Dungeon Generation in Godot 4: BSP Trees, Rooms, and Corridors
Coding 256 03/18/26

Procedural Dungeon Generation in Godot 4: BSP Trees, Rooms, and Corridors

Build a complete BSP dungeon generator in Godot 4 with GDScript. This tutorial covers recursive space partitioning, room placement, corridor connections, and…

How to Deploy WordPress to a VPS with GitHub Actions
Coding 47 03/12/26

How to Deploy WordPress to a VPS with GitHub Actions

Set up a GitHub Actions pipeline that deploys your WordPress theme or plugin to a VPS via SSH and rsync. Covers maintenance…

Steering Behaviors for Game AI: How to Build Avoidance and Surround Without Physics
Coding 72 03/11/26

Steering Behaviors for Game AI: How to Build Avoidance and Surround Without Physics

How to implement avoidance and surround steering behaviors using stateless AI, spatial grids, and vector math in Godot 4. Production GDScript code…

Game Data Manager: How to Centralize, Track, and Save All Your Game Data
Coding 62 03/07/26

Game Data Manager: How to Centralize, Track, and Save All Your Game Data

Build a centralized game data manager using one dictionary, events, and JSON serialization. Full production code for Unity C# and Godot GDScript.