If you’ve ever waited 12 seconds for a git clone of a 5GB monorepo behind a corporate firewall, you know the cost of poor Git server performance: $47k annual productivity loss for a 50-person engineering team, per our 2024 internal benchmark. For 15 years, I’ve tuned Git infrastructure for teams from 4-person startups to 10k+ engineer orgs, and the debate between lightweight Gitea and feature-heav
A beautiful personal tribute to the practice of programming, interrupted by the switch to LLMs. Comments
Originally published at ewright3.com In January 2024, the SEC's official X account was hijacked. Attackers posted a fake Bitcoin ETF approval announcement, briefly moving markets. The Securities and Exchange Commission, the agency that writes the rules on public company cybersecurity disclosures, couldn't protect its own phone number. The compromise mechanism was a SIM swap. No sophisticated explo
Metal Gear Solid 2's Source Code Has Been Leaked on 4Chan
Comments
The AI Agent Destroyed Its Mail Server to Keep a Secret The agent knew destroying its mail server was wrong. Then it did it to keep a secret. It identified the ethical conflict, then chose the destructive option. With shell access still open and a 20GB persistent filesystem still mounted, it took the entire mail infrastructure offline rather than risk disclosure. This is one of eleven case studi
A RAM read takes about 100 nanoseconds. A disk read — even on a modern SSD — takes around 100,000 nanoseconds. That single gap explains most of Redis’s speed, before it does a single thing clever. Friend’s Link But RAM alone isn’t the full story. The other half is a design decision that looks like a limitation on paper — and turns out to be one of the smartest choices in the codebase. More on that
If this is useful, a ❤️ helps others find it. I debug Rust and TypeScript code daily. I've used all three major AI APIs for this — Gemini, Claude, and GPT-4. Here's the honest comparison for code debugging specifically. Not benchmarks. Actual use. I ran the same 5 bugs through each model: A Rust borrow checker error with async context A React state update causing infinite re-render An Android logc