I’ve Almost Completely Forgotten the Code I Wrote a Week Ago…

Not only can I no longer find the directory where I stored it, but I’ve even forgotten the command I used to run it (Not only can I no longer find the directory where I stored it, but I’ve even forgotten the command I used to run it. I eventually found the solution in my ChatGPT history, but the experience made me reflect on the nature and fragility of memory. I remember doing it. I even wrote a blog post…
Continue reading

Turning a Theme-Bound Generative Art System into a Maintainable WordPress Plugin

I began this migration for a practical reason: a background feature that had started as a theme customization had grown into a modular browser-based geometry engine. It still worked, but the theme now owned administration, persistence, mosaics, twelve generators, rendering, and a public badge. I wanted a cleaner boundary without losing the behaviour already proven on the live site.

The result was a site-specific standalone WordPress plugin, a deliberately minimal theme fallback, and a workflow in which the current VPS…
Continue reading

Deploying a Modular Generative Geometry Generator (Browser-Based)

After completing the mosaic and scattered-collage stages of my WordPress Background Studio, I began asking a different question: could the system choose a mathematical composition method as well as choosing media? That question changed the project’s category. What began as background randomization became a modular browser-based generative-art engine with twelve algorithms, deterministic seeds, record-aware identity and a deployment process designed for a live, resource-constrained server.

I described the earlier evolution from a repeating background to mosaics and random collage in…
Continue reading

From Patch-and-Verify to Managed Agents, and What I Would Automate Now

After building a multi-site WordPress backup system through a long patch-and-verify conversation, I wanted to revisit the entire process without assuming that its present form deserved to survive. Managed agents can now maintain state, operate tools inside sandboxes, enforce hooks, delegate evaluation and continue for hours. What would happen if that infrastructure were applied to the same project? Which manual loops would disappear, which controls would move into code, and where would human judgment change?

This is a comparison, not…
Continue reading

An Inspectable Human–AI Workflow: Agency, Evidence, and Judgment in an AI-Assisted Project

Over several days, I built a centralized WordPress backup system by working with AI one verified change at a time. The AI wrote a great deal of Bash, Python, PHP and JavaScript, but it never independently controlled the production server. I inspected the evidence, ran each bounded operation, questioned incorrect diagnoses and decided when a procedure was finally reliable enough to automate.

This was neither ordinary manual coding nor fully agentic development

When people discuss AI-assisted programming, they often imagine…
Continue reading

Designing a Central WordPress-to-GitHub Backup Plugin

New function updated: the centralized backup dashboard can now schedule all four WordPress backups automatically. The system runs them sequentially during an off-peak UTC window, while the existing global lock remains the final authority. In other words, four websites may queue politely, but they are not allowed to charge through the VPS door together.

Automatic Sequential Backups

The original dashboard supported manual background backups for four isolated WordPress installations. That worked well, but it still required an administrator to open…
Continue reading

Incremental Development of a WordPress GIF-WebP Mosaic Background Engine

Yin’s Background Studio (as shown in the background of this website) began as a small WordPress theme enhancement for selecting one repeating background and evolved into a validated composition engine supporting static, random, weighted, persistent, reduced-motion, mosaic and scattered-collage modes. The project demonstrates how to extend a mature theme safely while preserving existing media, limiting animation costs, avoiding layout shift and making every production change recoverable.

The original problem

The website originally displayed one selected background at a time. An…
Continue reading

Engineering Dynamic Image/Video Backgrounds in a WordPress Theme

Yin’s Background Studio began as a refactoring task: replace a fragile, hard-coded random background selector with a native WordPress administration surface. The finished system stores multiple media-backed backgrounds in one option, supports static and random selection modes, handles reduced-motion fallbacks, previews images and videos, and validates manual sizing on both the client and server while preserving rollback at every deployment.

Technical environment

The implementation was developed on a small, resource-constrained WordPress server. At the time of the work, the confirmed…
Continue reading

A Hybrid Playwright and Google Analytics 4 API Pipeline for Weekly Analytics Reporting

Weekly reporting often begins as a small manual task:

  1. Open several analytics reports.
  2. Change each report to the same weekly date range.
  3. Wait for charts to load.
  4. download each report as PDF.
  5. Rename the files.
  6. export supporting CSV data.
  7. place everything in the correct folders.
  8. verify that no report is missing or incomplete.

None of these steps is particularly difficult. The problem is repetition, inconsistency, and silent failure. This article describes the architecture and engineering decisions behind a macOS automation…
Continue reading