Learning Contract¶
Page Maps¶
graph LR
family["Reproducible Research"]
program["Deep Dive Make"]
section["Guides"]
page["Learning Contract"]
capstone["Capstone evidence"]
family --> program --> section --> page
page -.applies in.-> capstone
flowchart LR
orient["Orient on the page map"] --> read["Read the main claim and examples"]
read --> inspect["Inspect the related code, proof, or capstone surface"]
inspect --> verify["Run or review the verification path"]
verify --> apply["Apply the idea back to the module and capstone"]
Use this page when you need to reset how to study the course. Deep Dive Make is not built for passive reading. It asks you to explain what changed, prove it with one fitting command, and stop before a larger surface hides the point.
What the course is asking from you¶
For each module, you should be able to do four things before you call it done:
- explain the rule or boundary in plain language
- name the failure it is supposed to prevent
- choose one command or file that proves the claim
- say why a heavier proof route would be unnecessary right now
If you can only recognize the wording, the module is not done yet.
What the course owes you¶
The material should make every important idea legible in the same order:
- a concept with a clear boundary
- a failure mode that shows why the boundary matters
- a small example or exercise
- a proof route that can confirm the claim
- a capstone surface only after the local idea is clear
When a page skips from slogan to advice, the page is unfinished. You should not have to reconstruct the lesson design by yourself.
How to work a module honestly¶
Use this loop:
- Read the module overview and the lesson that matches the current question.
- Write down one sentence that starts with "This matters because..."
- Run the smallest proof route that can falsify your understanding.
- If the proof surface feels bigger than the claim, step back to the module or guide.
- Move on only when you can explain the idea without copying the page's wording.
The point is not speed. The point is leaving each module with something you can defend.
The proof bar for this course¶
These commands appear often because they answer different classes of question:
| Command | Use it to answer |
|---|---|
make -n <target> |
what Make intends to do |
make --trace <target> |
why a target ran or stayed stale |
make -p |
what variables and rules exist after evaluation |
make -q <target> |
whether the graph has converged |
make -jN <target> |
whether the build stays truthful under concurrency |
Good study means choosing the command that matches the claim instead of jumping straight to the strongest available route.
When the capstone is appropriate¶
Open the capstone when the local idea is already stable and you want to see it survive a realer repository shape.
Do not open the capstone yet when:
- you still need a first explanation of the concept
- you cannot name the defect the module is trying to prevent
- you do not know which command would count as proof
- the repository feels bigger than the lesson itself
Use Capstone Map when you know the concept but need the right repository route.
Signs you are fooling yourself¶
Stop and reset if any of these are true:
- you keep widening the reading surface because one page did not click
- you can quote the rule but cannot give a failure example
- you chose
prooforconfirmbecause it felt safer than thinking - you can follow the capstone mechanically but cannot say which boundary owns the behavior
Those are not small study gaps. They usually mean the previous page needs a slower, more bounded pass.