Deep dives into the hidden CS around you.

Long-form breakdowns of the algorithms and systems everyone uses and nobody looks at. Real systems, real numbers, no hand-waving.

The State of AI: A Field Report From Someone Who Actually Ships This Stuff

10 min read

Halfway through 2026, the models are genuinely remarkable and the production reality is genuinely messy. A working engineer's account of what changed, what plateaued, and where the real work moved.

  • ai
  • llms
  • machine-learning

Local Models vs Frontier APIs: An Honest Accounting

11 min read

What it actually takes to run LLMs on your own hardware, why memory bandwidth is the real bottleneck, and when the economics flip in favor of the API.

  • llms
  • local-models
  • inference

The Old Guard Refuses to Die: Classical Optimization vs the Learned Upstarts

10 min read

Neural networks have been promising to replace exact optimization solvers for a decade. The solvers keep winning where it counts. Here is an honest scoreboard of classical methods versus learning-to-optimize, and the hybrid pattern that is actually emerging.

  • optimization
  • operations-research
  • machine-learning

How Machines Learned to See

11 min read

For forty years, computer vision meant hand-crafting features by hand and hoping. Then in 2012 a neural network cut the ImageNet error rate nearly in half, and everything we thought we knew about seeing turned out to be learnable. Here is the whole arc, from SIFT to vision transformers.

  • computer-vision
  • deep-learning
  • transformers

The 1947 Algorithm That Routes Every Package You've Ever Received

10 min read

George Dantzig invented the simplex method as a tool for U.S. Air Force planning in 1947, and almost eighty years later it is still the workhorse that schedules airlines, blends gasoline, dispatches power, and routes the package on your doorstep. Here is how it actually works, with a Python implementation.

  • algorithms
  • linear-programming
  • simplex-method

How YouTube Decides What You Watch

11 min read

YouTube picks your next video by funneling billions of candidates through a two-stage neural pipeline: fast approximate retrieval, then a multi-task ranking model that predicts watch time, clicks, and satisfaction. Here is how the machine actually works, according to the published research.

  • recommendation-systems
  • machine-learning
  • ranking

The Math Problem That Protects The Entire Internet Is Dying

6 min read

RSA and elliptic-curve cryptography secure almost every encrypted message on Earth, and a sufficiently large quantum computer running Shor's algorithm will break both. Here is how the math works, why it is fragile, and what post-quantum cryptography is replacing it with.

  • cryptography
  • rsa
  • quantum-computing

The Rejected Algorithm That Helped Land Us on the Moon

8 min read

Rudolf Kalman's filter was rejected by an academic referee as "impossible." Nine years later, it guided Apollo 11 to the lunar surface, and today it runs inside every GPS, phone, drone, and self-driving car. Here is how it works, with a Python implementation.

  • algorithms
  • kalman-filter
  • signal-processing

The Scary Truth About Your Phone's SIM Card

7 min read

Your SIM card is a full computer with a CPU, OS, filesystem, and network stack, running applets you did not install and cannot audit. Here is what is actually inside a SIM, how carrier applets like S@T have been exploited, and why the user has almost no defense against it.

  • security
  • mobile
  • sim

The Bug That Killed the Lights for 55 Million People

6 min read

How a race condition in power grid software caused the 2003 Northeast blackout, leaving 55 million people without electricity.

  • software-bugs
  • systems
  • race-conditions

A* Pathfinding Explained: Why It Beats Dijkstra

6 min read

Learn how the A* pathfinding algorithm works, why it outperforms Dijkstra, and see a Python implementation with heuristic functions.

  • algorithms
  • pathfinding
  • a-star

Bellman-Ford Algorithm: How Traders Find Free Money with Graph Theory

6 min read

How the Bellman-Ford algorithm detects negative cycles in graphs and enables currency arbitrage for finding risk-free profit.

  • algorithms
  • bellman-ford
  • arbitrage

Quantum Computers Have a Dirty Secret

7 min read

Five fundamental limitations of quantum computing that explain why your laptop still beats quantum computers for most real-world tasks.

  • quantum-computing
  • ai
  • hardware

4 Data Structures Every Developer Should Master

6 min read

Learn the four essential data structures every developer needs: arrays, hash tables, stacks and queues, and trees, with Python examples and time complexity analysis.

  • data-structures
  • algorithms
  • software-engineering

Why Cache Misses Are the Real Performance Killer

7 min read

Understand how CPU cache misses destroy performance and learn cache-friendly coding patterns that can deliver up to 100x speed improvements.

  • performance
  • systems
  • cpu-cache

The Hidden Magic of Hash Tables: How Your Computer Finds Anything in an Instant

7 min read

Dive deep into how hash tables achieve O(1) lookups, including hashing functions, collision resolution strategies, and a Python implementation from scratch.

  • data-structures
  • hash-tables
  • algorithms

The Hidden Algorithm That Runs Your Life: Dijkstra's Algorithm Explained

7 min read

Learn how Dijkstra's shortest-path algorithm works, powers Google Maps and internet routing, and where it breaks down, with a Python implementation.

  • algorithms
  • dijkstra
  • graph-theory