Software architect. Around ten years on distributed systems and peer-to-peer infrastructure, mostly Rust and TypeScript, remote for nearly all of it.
I spearheaded HoloFuel, a mutual-credit currency written in Rust that reached production with offline-capable transactions, and I contributed to Holochain core. These days I'm the architect on Unyt, a peer-to-peer accounting platform with no central server anywhere in the design.
A gossip protocol, actually running. 96 nodes. One of them learns a value, and the only way the other 95 find out is by telling each other.
Each round, every node that knows the value picks one peer at random and pushes
it over. When the peer already knew, the sender's feedback counter ticks up, and
after two wasted pushes the sender decides this is old news and goes quiet. That
is rumor mongering, from Demers et al. (1987), and it's quick: the value tears
through the network in 12 rounds. It's also lossy. The rumor burns out while 8
nodes have still never heard it, which is roughly what the theory orders you to
expect (solve s = exp(-(K+1)(1-s)) for K=2 and you get about 6% left stale).
Meanwhile one node is offline for the whole broadcast and drops every message
aimed at it. Those are the red pixels.
Hence the second half, anti-entropy: every node that's still stale picks a random peer and pulls from it. It's slower and much duller to watch, and it's the half that actually guarantees convergence. 96/96, including the node that missed the entire broadcast.
gossip.py runs the protocol against a seeded RNG, records every
message and every state change, then serialises the run into SMIL keyframes. None
of the animation is drawn by hand. Change the seed and you get a different run,
and it still converges.
- Unyt. Architecture, plus hands-on Rust and TypeScript.
- Agentic AI engineering. I built my team's practice on Claude Code with a custom skill toolkit and automated review gates. Most of the real work is in the gates.
- Nix and Kubernetes, because I like infrastructure that comes back the same way twice.
- 579 merged pull requests across the public Holochain and Holo-Host repos: Holochain core, the Tryorama test framework, and the HPOS host stack.
- linkedin.com/in/zo-el
- Open to worldwide remote, and to relocating internationally.
make
Python 3 standard library, nothing to install. It rewrites both SVGs and prints the stats for the run: rounds, messages sent, and how many nodes the rumor never reached.





