Reading path: I want to learn just the lingo
Status: 🟩 COMPLETE Last updated: 2026-06-19 Plain-English tagline: A speed-run through the glossary. Don’t read deep entries — read short definitions for the ~50 terms that come up most. After this, you can FOLLOW any conversation about modern webapps + AI without being lost in vocabulary.
What this is
The fastest path to conversational fluency. Instead of reading entire textbook chapters, you read one paragraph each for the most important terms. This is “build the vocabulary first; deepen later.”
This works because most “I don’t understand” moments aren’t conceptual gaps — they’re vocabulary gaps. Once you know what “JWT” or “RLS” or “CDN” or “MCP” means in one sentence, the surrounding conversation makes sense.
50 terms across 8 categories. Allow ~15-30 minutes to skim, ~1-2 hours to do thoroughly. By the end, you’ll know roughly what each term means and have a glossary link for any time you want to go deeper.
How to use this path
Don’t read the full glossary entries for each term — read just the first 1-3 sentences of each. That’s enough for vocabulary fluency.
Each category below lists terms with their glossary link. The glossary entries are organized A-Z; this path groups by topic for faster mental indexing.
For terms you want to go DEEPER on, follow the glossary’s “See also” link to the textbook entry.
Category 1: The web at the protocol layer (8 terms)
The bedrock of how the web works. Most modern conversations assume you know these.
- HTTP — the protocol browsers + servers use to talk
- HTTPS — HTTP wrapped in encryption
- URL — the address of a web resource
- IP address — the numeric address of a computer on the internet
- DNS — turns names like “google.com” into IP addresses
- CDN — global caches that serve content fast worldwide
- Port — like an apartment number on an IP address; what
:3000means - Cookie — small piece of data the browser stores per site
After reading these, you can follow conversations about networking + hosting.
Category 2: Frontend — what runs in the browser (8 terms)
What makes web pages display and behave the way they do.
- HTML — the structure of a webpage
- CSS — the styling of a webpage
- JS — the programming language of the web
- TS — JavaScript with type checking
- DOM — the live, in-memory representation of a webpage
- React — the dominant UI library
- Component — a reusable piece of UI in React
- JSX — HTML-flavored syntax inside JavaScript
After reading these, you can read React/Next.js conversations.
Category 3: Backend — what runs on the server (8 terms)
Where data lives, where business logic runs.
- API — a way for two programs to talk
- REST — the most common API style
- Node.js — JavaScript running outside the browser
- npm — the JavaScript package manager
- Serverless — code that runs on demand without managing servers
- Edge — small computers close to users globally
- Webhook — a service POSTs to your URL when something happens
- GraphQL — an alternative API style; clients describe what they want
After reading these, you can read backend conversations.
Category 4: Databases (6 terms)
Where data is stored, retrieved, secured.
- Database — a program that organizes and serves data
- SQL — the language for talking to relational databases
- Postgres — the dominant modern relational database
- Supabase — Postgres + auth + storage + APIs, hosted
- Schema — the shape (tables + columns + types) of a database
- RLS — Row-Level Security — database-enforced “user only sees their own data”
After reading these, you can read database conversations.
Category 5: Tools + workflow (8 terms)
The day-to-day environment around code.
- VS Code — the dominant editor
- Git — version control system
- GitHub — Git hosting + collaboration
- Commit — a saved snapshot of code in Git
- PR — proposing a change for review before merging
- CD — continuous integration / deployment — automated pipelines
- Vercel — the dominant Next.js hosting platform
- Next.js — the dominant React framework
After reading these, you can read deployment + tooling conversations.
Category 6: Security + auth (6 terms)
The defense layer.
- Authentication — proving who you are
- Authorization — what you’re allowed to do
- JWT — a self-contained signed auth token
- OAuth — “sign in with Google/GitHub/etc.” standard
- TLS — the encryption layer underneath HTTPS
- XSS — a common web attack to know by name
After reading these, you can read security conversations.
Category 7: AI + LLMs (6 terms)
The fastest-changing vocabulary. Knowing these is essential in 2026.
- LLM — Large Language Model — the AI behind Claude, ChatGPT, etc.
- Token — the unit LLMs work in (roughly a word-piece)
- Context window — how much text an LLM can “see” at once
- Prompt — what you send to an LLM
- Agent — an LLM that can also DO things (run tools)
- MCP — Model Context Protocol — Anthropic’s standard for connecting AIs to tools
After reading these, you can follow modern AI conversations.
Category 8: Bonus terms worth knowing (8 terms)
Not strictly essential, but they come up enough to warrant a quick definition.
- CORS — browser rule about cross-site requests
- Cache — temporary storage to avoid recomputing
- Endpoint — a specific URL on an API
- Hash — one-way fingerprint of data
- HMAC — signed hash, proves authenticity
- Idempotent — doing it twice = doing it once
- Mobile-first — design for phone first, then scale up
- a11y — accessibility (the 11 letters between “a” and “y”)
When you finish this path
You’ll be able to:
- âś… Read tech articles and follow them
- âś… Watch conference talks without constantly googling words
- âś… Have meaningful conversations with developers without feeling lost
- ✅ Read AI-generated code’s explanations and verify them
- âś… Know which deeper entry to read when you want to go beyond the definition
You won’t be able to BUILD anything — that requires the deeper paths. But “I can talk fluently about these concepts” is a real and useful skill on its own.
How to deepen, when ready
For any term whose 1-sentence definition isn’t enough:
- Open the glossary entry
- Read the FULL definition (still short — a paragraph or two)
- Click the “See also” → primary textbook entry for the full treatment
- Or follow one of the deeper reading paths:
Use this as a reference
This path doubles as an ONGOING reference. When you hit a term you don’t know, search the encyclopedia’s glossary by first letter. The full alphabet is at README.md.
For Bible Quest-scale conversations, the 50 terms above cover well over 95% of vocabulary you’ll encounter day to day.
See also
- Glossary index — full A-Z listing
- Absolute beginner 🟩 — broader landscape path
- Section indexes — when you want depth by topic
- All other reading paths — when you want depth in a specific direction
Sources
- Each glossary entry linked above (each has its own Sources section)
- Encyclopedia conventions — how glossary entries are structured