projects
Select projects that don’t have a dedicated blog post.
milady-shrinkifier
2026-03-27
A Chrome extension that detects Milady-style avatars on Twitter/X and lets you hide or fade matching posts. A bundled ONNX classifier scans avatars as you scroll, running entirely in the browser. The model was trained iteratively on a corpus of nearly 15,000 manually reviewed avatars, reaching 99.7% precision and 99.9% recall.
reflexive
2026-03-15
Game preservation toolkit for Reflexive Arcade titles. Reflexive Entertainment was a prominent casual-games publisher in the 2000s, but the service is long defunct. The wrapped executables survive in archived collections. This toolkit recovers RSA key material for 1,653 titles, unwraps bare game executables, patches registration shells in-place, and generates valid registration codes.
wc3ui
2026-02-07
A faithful recreation of the Warcraft III user interface as a web component library. Built with SolidJS and extracted game textures, it implements the full set of UI elements: buttons, sliders, checkboxes, edit boxes, stat bars, tooltips, hero portraits with WebGL model rendering, and the top and bottom HUD frames.
agents
2025-12-28
A collection of practical patterns for working with AI coding agents. Covers git worktree isolation, macOS seatbelt sandboxing, devcontainer setups for unattended runs, and Telegram notifications via takopi.
legible-math
2025-04-18
A Solidity library providing readable arithmetic with compile-time constants for the letters you need to spell numbers. Write t*w*o + s*e*v*e*n and call .literally() to get 9. Supports the full [-11, 11] range including negative numbers via n*e*g*a*t*i*v*e, operator overloading with +, -, *, /, and safe reversion on fractions, out-of-range values, and overflow. All 17 letter constants were carefully chosen so that each word multiplies to a unique value. Comes with a whitepaper and a mathematical proof that it cannot go up to 12.
raycast-eips
2024-05-09
A Raycast extension for quickly searching and reading Ethereum Improvement Proposals (EIPs and ERCs). It loads proposals from locally cloned repos, parses their frontmatter, and presents a fuzzy-searchable list with color-coded status, type, and category tags. You can read proposals inline, jump to the GitHub source or Ethereum Magicians discussion, and bookmark favorites. Repos are auto-cloned on first launch and silently updated once a day.
brownie-safe
2021-03-06
Build complex Gnosis Safe multisig transactions interactively in a Python console, bundle multiple contract calls into a single multisend, and preview their effects on a locally forked chain before signing. It forges owner approvals by writing directly to the Safe’s storage slots, giving you a full dry run with decoded events and call traces. Supports signing with private keys, Trezor, and Frame. Previously known as Ape Safe.
multicall.py
2020-01-28
Python library for batching Ethereum smart contract reads into a single RPC call using MakerDAO’s multicall contract. Supports 200+ EVM chains out of the box and uses state overrides to access historical data even where multicall wasn’t yet deployed. Calls are defined with compact seth-style signatures and can include named return handlers for automatic decoding. Async-native with automatic batching and retry when requests hit gas or payload limits.