RECENT NOTES

Learning in public, slowly.

This is a record of questions, experiments, and partial understandings. Notes may be corrected or expanded as I learn more.

A three-second timer became a scheduling problem

My pet simulation updates hunger, energy, decisions, animation, and rendering on a regular tick. Each operation is cheap. The problem appeared when every pet performed all of them at the same instant. Average work looked acceptable, but the distribution of work over time was not.

Working model

Lframe = Σ Cpet(t) + Crender(t)

The important variable was not total cost, but temporal concentration.

Staggering independent updates made the game feel smoother without reducing the amount of simulated behavior. This was less like ordinary optimization and more like a small operating-systems problem.

While You Watched: making offscreen time meaningful

A simulated world should not cease to matter when the camera leaves it. I am experimenting with a log that records small household events while the player travels: a pet learned something, two pets argued, food ran low, or someone discovered a new routine.

The log is not only a notification system. It turns elapsed time into evidence that the world has continued without the player and gives autonomous behavior a history that can be remembered.

A map should record knowledge, not merely space

I want an exploration map to show only places the household has actually reached. The map therefore represents the player's knowledge of the world rather than an objective aerial view supplied in advance.

This changes discovery from collecting map icons into constructing a shared geographical memory. Campsites become stable reference points; routes matter because someone has travelled them before.

Notes on quantum money and things that cannot be copied

Ordinary digital objects are perfectly reproducible. Quantum money is interesting because it asks whether a digital object can be verified while remaining physically impossible to duplicate. The central idea comes from the no-cloning theorem: an unknown quantum state cannot be copied perfectly.

It is not currently a practical software-licensing system. It is, however, a useful thought experiment about the relationship between information, ownership, verification, and physical law.