beginnerAI
AI and LLMs, Without the Hand-Waving
The working vocabulary and mental models nobody can bluff you on.
17 lessons2h 43m4 sections
Need to Know HQPractical engineering courses, written by people who ship$19.99$29.99
- Lifetime access to all lessons
- 17 lessons across 4 sections
- Progress tracking across devices
What you'll learn
- Explain what a language model actually does, in one sentence, correctly
- Read a pricing page and predict what a feature will cost
- Tell a real capability claim from a sales one
- Know which problems a model solves and which ones it quietly cannot
Course content
4 sections · 17 lessons · 2h 43m
What a language model isBefore the vocabulary, the machine. Four lessons that make everything afterwards obvious.4 lessons
- Next-token prediction, and why that is not a dismissalFree preview9m
Read this lesson
A language model is a function that takes a sequence of text and produces a probability distribution over what comes next. It samples one token from that distribution, appends it, and runs again. That is the whole loop. People deploy this fact in two opposite directions, and both are lazy. "It's just autocomplete" ignores that predicting the next token in a proof, a contract, or a bug report well enough to be useful requires modelling the thing being described. "It understands" ignores that the mechanism has no goals, no memory between calls, and no access to truth — only to the statistical shape of an enormous amount of text. The honest version: it is a very good simulator of the kind of text a knowledgeable person would write. That is genuinely useful and genuinely limited, and almost every surprise you will have with these tools comes from forgetting one half of that sentence. - Tokens are the unit of everythingFree preview11m
Read this lesson
Models do not see characters or words. They see tokens — subword chunks produced by a tokenizer. In English, one token averages roughly four characters, so 750 words is about 1,000 tokens. Code, JSON, and non-English text tokenize less efficiently, sometimes much less. This matters because tokens are the unit of billing, the unit of the context limit, and the unit of speed. "Make the prompt shorter" and "make it cheaper" are the same instruction. Two consequences people miss. First, the model cannot reliably count letters in a word, because it never saw the letters — this is why the strawberry-has-three-Rs question was ever hard, and why it is a terrible test of intelligence. Second, token counts differ between models: the same paragraph can cost meaningfully more tokens on one model than another, so a cost estimate copied from last year's model is not an estimate. - Context windows, and what "remembering" means12m
- Training data, cutoffs, and the confident wrong answer10m
Reading the billNobody explains this part, and it is where budgets die.3 lessons
- Input and output are priced differently10m
- Caching is the discount nobody claims11m
- Latency, streaming, and why speed is a product decision9m
Getting good output4 lessons
- Prompting is specification, not magic words12m
- Hallucination, and the only reliable defence11m
- Structure, tools, and getting a machine-readable answer10m
- What these models are genuinely bad at10m
The bluff detectorThe reason this course exists. Claims you will hear, and what is actually true.6 lessons
- "We fine-tuned it on our data"11m
- "It's agentic"10m
- "RAG" and the vector-database detour9m
- Benchmarks, parameters, and other numbers that don't mean what you think10m
- Questions that end the conversation8m
- Where to go next
Requirements
- No maths, no programming — curiosity is enough
Description
Most explanations of AI are either a maths lecture or a press release. This course is
neither. It is the working knowledge you need to sit in a meeting, hear a confident claim
about what "the AI" can do, and know whether it is true.
We cover how these models work at the level that changes decisions — tokens, context,
cost, training data, hallucination, agents — and skip the parts that only matter if you
are building one from scratch. Every section ends where a real argument usually starts,
and settles it.