Honest Take — Before You Begin
This module is going to feel, to your engineering brain, like coming home. The CBT framework is mechanism, and you have spent your career debugging mechanism. Burns's catalogue of…
Understand, in mechanistic terms, how the mind generates the imposter feeling: the cognitive distortions that fuel it (Burns), the discounting machine that makes it immune to counter-evidence, and the empirical pattern that explains why high performers feel it more. By the end, when the feeling arrives, you can name the specific distortion producing it — and you can articulate, in 90 seconds, why "look at your accomplishments" is the most-given and least-effective advice in the field.
Treat the distortions as a static-analysis pass on your internal monologue. Burns's catalogue is the linter rule set; the mood log is the build log. The point is not to never have a distorted thought — it's to fail loudly when one runs, the way CI fails loudly on a forbidden pattern. The pattern doesn't stop occurring; it stops shipping silently.
The discounting machine, in Ruby:
``ruby
def evaluate_competence(evidence)
result = analyze(evidence)
raise DiscountError, "must have been luck" if result.positive?
result
rescue DiscountError
"imposter"
end
`
The bug is not in the evidence. The bug is in the evaluation pathway. You can pass this method ten years of shipped projects, an open-source package with tens of thousands of downloads, a business that pays your bills — it still returns "imposter"`. The fix is not adding evidence to the input. The fix is patching the evaluator (M2's monitoring + manual override), or — the deeper move, coming in M5 — no longer asking the evaluator for an answer at all.
And the high-achievers paradox in review terms: the imposter mind treats success as explained-away noise and failure as load-bearing signal — the exact inverse of sane review calibration. In code review you correctly weight a passing test over a flaky one; in self-review you do the opposite. The discounting machine is a fundamentally miscalibrated reviewer you have appointed as your sole gatekeeper. The modules ahead variously retrain the reviewer (M6), ignore the reviewer (M5), or replace the reviewer's authority with action (M8).
This course unlocks once you've finished its prerequisite. Open prerequisite →
This module is going to feel, to your engineering brain, like coming home. The CBT framework is mechanism, and you have spent your career debugging mechanism. Burns's catalogue of…
Imposter syndrome is not magic. It is a specific pattern of thought generated by specific, named cognitive operations — most of which CBT catalogued forty years ago. When you can …
Approach: Essential
Approach: Essential
Approach: Essential
Approach: Important
Approach: Important
1. Maintain Burns's daily mood log for two full weeks, capturing at least 10 imposter-triggering events. For each, name the 1-3 distortions producing the feeling. Your distortions…
8 lessons. Read in order; spiral back when you need to. By the end you'll have used the core ideas twice — once on the abstract, once on something you'll meet at work next week.