How to Deploy a Hugo Blog with Cloudflare Pages

This is the exact stack behind this blog. If you want a super fast, self-deploying tech blog with zero servers, zero monthly bills, and VS Code as your entire CMS — here is how to build it. By the end you will have: A Hugo blog with the PaperMod theme VS Code as your editor, file manager, git client, and terminal — all in one Automatic deploys to Cloudflare Pages on every git push Why this stack Hugo is a static site generator. It turns markdown files into a complete website in milliseconds. No database, no runtime, nothing to keep running. ...

March 20, 2026 · 6 min · 1142 words · root

The Solo Developer Workflow

FTP isn’t a workflow. It doesn’t know who changed what. It has no memory of previous versions. It’s blind, manual, and prone to breaking mid-upload. If you’re still dragging files into a folder to “deploy”—or worse, manually creating site-backup-v2-final-actual-FINAL.zip before every change—you’re working harder than you need to. Enter The Solo Developer Workflow. In this guide, we’re building a professional pipeline: Local → Git → Server. No more “ghost files,” no more zip-file hoarding, and no more deployment anxiety. Just a clean, versioned, and automated path to production. ...

January 3, 2026 · 4 min · 776 words · root

Converting an Aruba AP-325 AP from Campus Mode to Controller-Free Instant Mode

The Aruba AP-325 (Model: APIN0325) is an enterprise-grade 802.11ac Wave 2 access point that routinely appears on the secondary market after corporate Wi-Fi refreshes. The hardware is excellent — fast radios, strong range, rock-solid stability — but there’s a catch. Most surplus AP-325 units are “Campus APs”, meaning they require an Aruba Mobility Controller to function. Without one, they’re effectively useless. The good news: the AP-325 (and other similar Aruba models) can be converted to Instant (IAP) mode, allowing it to run standalone or form a controller-less cluster with other Instant APs. Once converted, it behaves exactly like a native Instant AP — no licenses, no subscriptions, no controller. ...

December 25, 2025 · 5 min · 926 words · root

Understanding Data Transfer Speeds: Drives and Networks

Ever wondered why copying a file to an external hard drive feels slow while your SSD-based machine flies? The answer comes down to data transfer speeds – and understanding the numbers across storage and networking technology helps you make better hardware decisions. Bits vs. Bytes Before looking at the numbers, there’s one conversion to keep in mind: 1 byte = 8 bits Network speeds are almost always quoted in megabits per second (Mbps) or gigabits per second (Gbps) Storage speeds are typically quoted in megabytes per second (MB/s) or gigabytes per second (GB/s) So a 1 Gbps network connection has a maximum throughput of 125 MB/s (1,000 / 8 = 125). This distinction matters when comparing specs across different product categories. ...

September 25, 2025 · 4 min · 680 words · root

How to Shrink Your Massive WSL Virtual Disk

If you use Windows Subsystem for Linux (WSL2), you may have noticed a large file on your system drive: C:\Users\<YourUser>\AppData\Local\Packages\<YourDistroFolder>\LocalState\ext4.vhdx This is a virtual hard disk that stores the entire Linux filesystem. It expands automatically as you install packages and create files, but it does not shrink automatically when files are deleted. Over time, this can leave you with a multi-gigabyte file containing mostly unused space. Here’s how to safely compact it and reclaim that space. ...

September 15, 2025 · 2 min · 353 words · root

Broadcom BCM4332 Wi-Fi on Linux: The Definitive Guide

Search for BCM4332 and Linux and you’ll find years of forum threads with the same discouraging pattern: someone asks for help, someone replies “that chip doesn’t work on Linux anymore,” and the thread dies. That conclusion is wrong, and it’s been wrong every time someone wrote it. The BCM4332 chip works on modern Linux. Ubuntu 22.04, Ubuntu 24.04, Linux Mint, Debian 12 — all of them. But it requires steps that the default package manager doesn’t take automatically, and if you skip any of them, you’ll end up with a chip that either doesn’t appear at all, or worse — works right now but vanishes silently after the next reboot. ...

July 15, 2025 · 12 min · 2421 words · root

How to Install OpenVPN Access Server on a VPS

Note: This guide was written in 2015 for OpenVPN Access Server 2.0.24 on Ubuntu 14. The general process remains similar on newer versions, but package names, download URLs, and some commands will differ — check the OpenVPN Access Server docs for current instructions. In this guide we’ll install OpenVPN Access Server onto a VPS and connect to it using the built-in client web portal. Step 1: Get a VPS You’ll need a VPS with full root access. For this guide we’re using a 512MB VPS running Ubuntu 14 64-bit. If you use a different OS, the installation commands in Step 3 will differ. ...

November 14, 2015 · 2 min · 291 words · root

How to Set Up a Seedbox on a Linux VPS

In this guide we’ll set up a seedbox (a BitTorrent client running on a remote server) on a Linux VPS in four steps. Once it’s running, you can queue downloads from any browser and pull completed files down to your local machine when ready. Step 1: Get a VPS You’ll need a VPS to host the seedbox. For this guide we’re targeting a 1GB VPS with at least 25GB of storage and a gigabit network connection — that’s plenty for even large 1080p/4K downloads, and you can typically find one for around $5/month. ...

May 13, 2014 · 2 min · 359 words · root