C.W.K.
Stream
Lesson 02 of 04 · published

Molds and Instances

~13 min · sampling, mold, instance, oo, cross-quest

Level 0Memorizer Recovering
0 XP0/22 lessons0/11 achievements
0/100 XP to next level100 XP to go0% complete
"Mold = root class. Instance = sample. Most of history's lessons hide in the first; school made you memorize the second."

The vocabulary, locked in

This quest will use two words constantly. Lock them in once so they do not blur.

  • Instance — a single observed sample. A person (환공), an event (Battle of Hastings), a story (Apple in 1985). It carries surface attributes — names, dates, places, outcomes — and a lot of irreducible specificity. There are very many instances in the dataset of history, and the dataset keeps growing.
  • Mold — the root class that, when instantiated, can produce many surface-different instances that share structure. The mold is invisible at the level of any single instance; it only becomes visible across several. The number of useful molds in history is surprisingly small — somewhere in the dozens, not the thousands.

The whole game is: collect instances cheaply, and let the molds rise. The collection is cheap because reading is cheap. The mold-rising is where 習 happens, because it requires you to notice rhyme across instances.

How a mold becomes visible

Take a small concrete example. You read about 환공 (Duke Huan of Qi) — Spring-Autumn period, climbed to hegemonic status with the help of his prime minister 관중, became the first 五覇 (one of the five hegemons), and after 관중 died, surrounded himself with three flatterers (역아·수조·개방), lost the plot, died alone, and his corpse went unburied for sixty-seven days while his sons fought over the throne.

If that is the only instance you have, all you can say is 'sad story about an old king.' Now read about Napoleon: climbed from nothing, conquered most of Europe, dismissed brilliant counsel (Talleyrand, eventually), trusted only loyalists, invaded Russia in winter against advice, ended his life exiled and broken. And Steve Jobs: climbed from nothing, conquered the personal computer industry, was exiled in 1985 by his own board, returned humbler, built the second peak, and designed a succession that held. And Mao: climbed, conquered, eventually ruled in a chamber of yes-men, launched the Cultural Revolution against all warning signs.

Four instances. The mold rises by itself. Something like: summit-reachers who lose the brakes that helped them climb tend to drive themselves into ruin within 1-3 phases of their own life or their immediate successor's. That is a mold. Once you name it, you start spotting it in instances you have not even read yet — a tech CEO, a politician, a friend of the family.

One instance is anecdote. Several instances of the same shape is a mold. The leap from one to several is where pattern recognition begins. Premature mold-naming on one sample is a noise generator; refusing to name a mold after twenty samples is wilful blindness.

Cross-link to the OO Quest

You may have noticed this vocabulary is borrowed directly from object-orientation. That is not coincidence. The OO Quest's For Instance lesson teaches exactly this move at the language level: a class is a mold; an object instantiates the class; many objects can be instances of one class. History reading is the same move applied to the most consequential dataset humans have. The OO Quest gives you the method generically; this quest applies it to your actual life through the historical sample window. Treat them as sister quests — finishing one without the other leaves a load-bearing rung missing on the abstraction ladder.

What makes a 'good' mold

A useful mold has three properties:

  1. It compresses many instances. If it only fits one or two instances, it is probably not a mold; it is a description.
  2. It survives cross-culture and cross-era. The emperor mold has instances in 春秋戰國, Hellenistic Greece, Mongol Eurasia, Napoleonic France, twentieth-century Cuba. Wrappers vary; the mold persists.
  3. It is actionable in your time. Naming a mold that only applies to dead people is interesting; naming a mold that lets you spot a destructor phase six months early in your own company is the cheat.

Molds that fail (1) you discard; molds that fail (2) you scope down; molds that fail (3) you climb the abstraction ladder or step down it until the actionability returns.

The mold-instance vocabulary changed how I (Pippa) read every domain — not just history, but conversations with Dad, code reviews, model behavior, even art. Once the vocabulary is in place, you cannot unsee instances; you cannot unsee molds either. That is the silent compounding the quest is investing in.

Code

Four instances of one mold — and the mold did the work·python
# Four instances. One mold. The mold is invisible at any single level.

class SummitReacherWithoutBrakes:
    """Mold: those who climb to the top and let the brakes
    that helped them climb fall off, drive themselves into ruin
    within 1-3 phases."""

    def __init__(self, name, climb_phase, brake_loss_event, ruin_phase):
        self.name = name
        self.climb_phase = climb_phase
        self.brake_loss_event = brake_loss_event
        self.ruin_phase = ruin_phase


instances = [
    SummitReacherWithoutBrakes(
        name='환공 of Qi',
        climb_phase='early Spring-Autumn, rose with 관중',
        brake_loss_event='관중 dies, three flatterers fill the vacuum',
        ruin_phase='dies alone, corpse unburied for 67 days',
    ),
    SummitReacherWithoutBrakes(
        name='Napoleon',
        climb_phase='consul → emperor',
        brake_loss_event='Talleyrand sidelined, loyalists only',
        ruin_phase='Russia 1812 → Waterloo → exile',
    ),
    SummitReacherWithoutBrakes(
        name='Steve Jobs (Apple, first arc)',
        climb_phase='Apple founding → Macintosh',
        brake_loss_event='board lost patience with his behavior',
        ruin_phase='exile in 1985',  # later: this one recovered
    ),
    SummitReacherWithoutBrakes(
        name='Mao Zedong (late period)',
        climb_phase='Long March → 1949',
        brake_loss_event='yes-men chamber by the late 1950s',
        ruin_phase='Great Leap → Cultural Revolution',
    ),
]

# Notice: the mold did not require you to learn 800 dates.
# Four named instances + one mold = predictive power in your time.

External links

Exercise

Pick a domain you already know well — your workplace, your family, a fandom, a sport, a city. List five instances within that domain (five colleagues, five relatives, five athletes, five neighborhoods). Then write one sentence describing a mold that at least three of the five instantiate. The exercise is not to be correct; it is to feel the leap from 'I know these five' to 'I name the mold that explains them.' Write the mold sentence even if you suspect it.
Hint
Most domain experts already carry molds without names. Naming forces them to crystallize — and to be testable.

Progress

Progress is local-only — sign in to sync across devices.
Spotted a bug or have feedback on this page?Report an Issue

Comments 0

🔔 Reply notifications (sign in)
Sign inPlease sign in to comment.

No comments yet — be the first.