← Back to home

50 Anchor Questions: Knowledge Map

This is the index of the 50 core questions from How Internet Grandmasters Are Forged. Each question is a doorway into a piece of the mental map.

πŸ—ΊοΈ Switch to visual view

πŸ—ΊοΈ Quick navigation

🎯The User's View: the internet as a world that responds to you

1 Why does a page appear on your screen the moment you type a URL?
Good link targets: browser, domain, DNS, HTTP, a walkthrough of the page-load flow
2 Why does a message you send arrive on someone else's phone almost instantly?
Good link targets: instant messaging, long-lived connections, push notifications, network transport
3 Why do platforms seem to know you better and better over time?
Good link targets: recommendation systems, user profiles, behavior data, content distribution
4 Why does the map app always know where you are?
Good link targets: GPS, cell-tower positioning, Wi-Fi positioning, map services
5 Why do things you "deleted" sometimes feel like they never really went away?
Good link targets: data storage, caching, trash / recycle bin, backups, data retention, platform data policy
6 Why can AI answer you as if you were talking to a person?
Good link targets: large language model basics, generative AI, intro to natural language processing

πŸ”¨The Beginner Coder's View: the internet as something people build

7 How is a web page actually made?
Good link targets: HTML / CSS / JavaScript basics, intro to web development
8 What do frontend and backend actually each do?
Good link targets: front/back split of concerns, intro to web architecture
9 How does the browser turn the page you wrote into pixels?
Good link targets: browser rendering, DOM, CSSOM, the rendering pipeline
10 When you click a button, where does the data actually go?
Good link targets: request/response model, form submission, AJAX, API calls
11 Sign up, log in, comment, like, place an order β€” how are these features actually built?
Good link targets: overview of web feature implementation, authentication, sessions, CRUD, business-system fundamentals
12 What is a database actually storing?
Good link targets: database basics, tables, records, intro to relational databases

🌊The Engineer's View: the internet as a system in motion

13 When you type a URL into a browser, what actually happens behind the scenes?
Good link targets: one full request path, browser-to-server end to end
14 Why do some sites load in a blink while others are always slow?
Good link targets: performance optimization, frontend loading, CDN, caching, network latency
15 Why does a system that ran fine yesterday start timing out, erroring, and crashing under traffic?
Good link targets: high concurrency, capacity planning, performance bottlenecks, system stability
16 Why does a "simple" like, comment, or checkout button need so many moving parts behind it?
Good link targets: business request path, layered architecture, transactions, async processing
17 Why do big systems keep talking about caches, queues, load balancing, rate limiting, graceful degradation, and circuit breaking?
Good link targets: large-system design overview, middleware and service-governance topics
18 Why is the database so often the bottleneck?
Good link targets: database bottlenecks, indexes, locks, IO, read/write pressure, sharding
19 Why can one slow API drag the entire business path down with it?
Good link targets: dependency calls, timeout propagation, cascading failure, path-level stability
20 Why does caching make systems dramatically faster?
Good link targets: caching fundamentals, Redis, cache design, cache consistency
21 Why do message queues help with shaving peaks and filling troughs?
Good link targets: message queues, async processing, decoupling, load smoothing
22 Why can load balancing let one service absorb huge amounts of traffic?
Good link targets: load balancing, reverse proxy, traffic distribution
23 Why are distributed systems so much harder than single-machine ones?
Good link targets: intro to distributed systems, network partitions, consistency, coordination problems
24 Why is the hardest part of a high-concurrency system not the features but keeping it stable?
Good link targets: high-concurrency design, building for stability
25 Why do large sites keep investing in monitoring, logging, tracing, and failure drills?
Good link targets: observability, monitoring, logging, tracing, chaos drills

βš–οΈThe Senior Engineer's View: the internet as a system of trade-offs

26 Why is there no silver bullet in system design?
Good link targets: architecture-design thinking, engineering trade-offs, no universally best answer
27 Why doesn't the most "advanced" architecture always fit the business you're actually in?
Good link targets: technology selection, matching architecture to business stage
29 Why do consistency, performance, availability, cost, and complexity always end up trading off against each other?
Good link targets: CAP, BASE, engineering trade-offs, performance vs. consistency
30 Why do plans that look great on the whiteboard often stop being worth it in production?
Good link targets: shipping the architecture, engineering reality, maintenance cost, org cost
31 Why does stability tend to matter more than "clever" design?
Good link targets: stability practice, SRE mindset, real-world engineering
32 Why is tech debt never just a code problem β€” it's time, organization, and business piling on top of each other?
Good link targets: technical debt, cross-team dynamics, business pressure and architectural drift

πŸ‘‘The Grandmaster's View: the internet as a system that shapes reality

33 Why isn't a recommendation system just delivering content β€” why is it also shaping your attention?
Good link targets: recommendation systems, attention economy, how platforms exert influence
34 Why aren't platforms just offering services β€” why are they also writing the rules?
Good link targets: platform governance, content moderation, traffic allocation, platform rules
35 Why does a button's position, a recommendation strategy, or an interaction mechanic change how people behave?
Good link targets: product design, behavior design, user psychology, interaction mechanics
36 Why does internet product design end up shaping people's emotions, expression, and judgment?
Good link targets: product psychology, the information environment, social diffusion
37 Why does an org chart end up shaping the system's architecture?
Good link targets: Conway's law, organizations and architecture, team collaboration
38 Why do business goals so often decide the tech direction, and not the other way around?
Good link targets: how tech relates to business, business-driven architecture

πŸ’¬The AI-Era View: the internet as a system you can talk to

40 Why does AI seem to understand you when it doesn't actually understand you?
Good link targets: LLM basics, the gap between language generation and real "understanding"
41 Why can AI sound fluent and still be wrong?
Good link targets: hallucination, probabilistic generation, factuality
42 Why is generative AI fundamentally different from traditional software systems?
Good link targets: traditional systems vs. AI systems, determinism vs. probability
43 Why are AI outputs probabilistic instead of deterministic like traditional systems?
Good link targets: token prediction, sampling, probability-model basics
44 Why does AI feeling more human make it easier for people to misjudge what it can actually do?
Good link targets: anthropomorphism, human-AI interaction, cognitive biases about AI
45 Why hasn't AI made the internet simpler β€” why has it just buried the complexity deeper?
Good link targets: AI-system engineering, RAG, model-application architecture, product boundaries for AI

🌟Wrap-up questions: doorways into the whole map

These are the questions that work best as "table of contents" pages or topical entry points.

50 Why does it work this way?
This one question could be the title of the entire knowledge-map home page.