demos

see it run, live.

Two demos, two halves of the same engine — one keeps a query correct under a firehose of reads, the other syncs optimistic writes across everyone in the room. Both run on the real engine. Pick one.

reads · at scale

Live Wikipedia edits

The real Wikimedia firehose streams into one query that stays correct edit-by-edit — no refetch, no diffing. Two recency boards mirror the same stream, grouped by page and by editor.

  • a query kept prepared, maintained incrementally
  • thousands of edits a minute — one materialization shared by every viewer
  • the whole board runs on one small machine
open the live board →

writes · collaboration

Collaborative issue tracker

The other half of the engine: optimistic mutations that apply instantly and rebase on confirmation, multi-user sync, and a rejection path you can watch snap back. Open it in two windows and edit.

  • optimistic writes through the client queue
  • serverless API tier (a Cloudflare Worker) + an always-up daemon
  • a 5,000-issue table, browsed as live paginated windows
open the issue tracker →