Reading

What I'm Reading

Annotated notes on articles, papers, and essays I find worth thinking about.

JK move Enter open / search

learningdeliberate-practice

The 1st 20 hours — Josh Kaufman's theory (Thoughts on Learning)

Shengyu Chen

An exploration of Josh Kaufman’s idea that focused practice can build useful competence in roughly 20 hours: define the skill, learn enough to self-correct, remove friction, and put in the time. Chen’s useful counterpoint is that figuring out the real goal and decomposing a skill are substantial parts of learning themselves.

aiinferenceinfrastructure

LLM Inference: Past, Now, and Future - Where Does the Value Move?

LightSeek Foundation

An argument that the inference-engine moat is rapidly commoditizing as NVIDIA’s reference stack, open source, and coding agents shrink the time an optimization remains exclusive. Durable advantage is moving to reliable serving operations, GPU capacity, capital, and ultimately data centers and power.

aitokenizationlanguage-models

Integer Tokenization is Insane

Beren

A deep dive into the surprising complexities of how language models tokenize integers and why naive approaches fail.

aiinfrastructuresystems

LMCache: A Journey

Junchen Jiang

A reflective piece on the evolution of LMCache from 2023 to 2026. Chronicles the project’s journey from early research into KV cache systems to an influential open-source project that gained significant industry recognition at NVIDIA’s GTC conference. Thoughtful reflection on timing, community building, and learning through execution.

aioptimizationinference

Making Deep Learning Go Brrrr From First Principles

Horace He

Best intro I’ve found before jumping deep into the LLM inference optimization world. Explains compute, memory bandwidth, and overhead from first principles. Understanding which bottleneck you’re in matters more than blindly tweaking parameters.

writinginternet

The Case for Blogging in the Ruins

JA Westenberg

Westenberg makes the argument I keep wanting to make but don’t: social platforms optimized for engagement have hollowed out the kind of slow, considered thinking that blogs made possible. The case for owning your words and building something that lasts.

aiengineering

Prompt caching: 10x cheaper LLM tokens, but how?

Sam Rose

The best kind of explainer. Starts from how transformers actually work, then reveals that prompt caching is just reusing the KV matrices from the attention mechanism. Makes you appreciate why the savings are so dramatic and why prefix structure matters.