DEV Community

Cover image for Two Burnouts in Three Years: What the Second One Taught Me
Ivan Danilov
Ivan Danilov

Posted on

Two Burnouts in Three Years: What the Second One Taught Me

I'll keep the context brief because the pattern is familiar.

First burnout: year three at a company where unsustainable was the baseline. Recognized it. Left. Did the recovery. New role, better boundaries, clearer sense of what I needed.

Second burnout: fourteen months later.

Different company. Better environment by almost every measure. Same outcome.

This time I didn't just do the standard recovery playbook. This time I got bloodwork done.

Running the Diagnostic
bash
$ bloodwork --full-micronutrient-panel

[CRITICAL] vitamin-d: 18 ng/mL // target: 40-60
note: dopamine synthesis impaired at this level
duration: estimated 2+ years
previous-tests: never checked

[CRITICAL] rbc-magnesium: low
note: serum showed "normal" — wrong metric
body maintains serum by depleting cells
rbc-magnesium = actual cellular status
duration: unknown — never tested correctly

[HIGH] omega3-index: 3.1% // target: 8%+
note: neuroinflammation elevated
active resolution requires EPA input
rest alone insufficient

[HIGH] hs-crp: 2.9 mg/L // target: <1.0
note: direct inflammation marker
running before burnout #1
running through recovery
running into burnout #2
never measured

bugs-found: 4 critical
bugs-known: 0
recovery-speed: severely impaired
attribution: "burnout just takes time"
actual-cause: missing inputs for every recovery process
Root Cause Analysis

Why burnout #2 happened 14 months after burnout #1:

javascript
// burnout #1 retrospective (what I actually ran)
const rootCauses = {
structural: [
"toxic management",
"unsustainable workload",
"poor culture"
],
// identified correctly
// addressed correctly
// changed jobs

biological: null // never checked
// never considered
// assumed resolved by rest
}

// what was actually true going into job #2
const biologicalStatus = {
vitaminD: 18, // ng/mL — severely deficient
rbcMagnesium: "low", // HPA axis unregulated
omega3Index: 3.1, // % — neuroinflammation elevated
hsCRP: 2.9, // mg/L — systemic inflammation running

threshold: "significantly reduced",
note: "same workload that would be manageable at optimal status"
+ "was not manageable at this status"
+ "14 months later: burnout #2"
}

The structural conditions were better. The biological threshold was identical.

What Each Number Actually Meant

Vitamin D at 18 ng/mL:

javascript
// what I was trying to do during recovery
dopamine.rebuild()
motivation.restore()
meaning.find()

// what the system had to work with
vitaminD.level = 18 // severely deficient
tyrosineHydroxylase.efficiency = ~35% // requires vitamin D
dopamine.production = "significantly impaired"

// result:
// motivation not returning despite months of rest
// attribution: "maybe wrong career"
// actual cause: missing synthesis substrate

Tyrosine hydroxylase — the rate-limiting enzyme in dopamine production — requires vitamin D. I was trying to rebuild a dopamine system without its primary input. The motivation wasn't coming back because it biochemically couldn't at that vitamin D level.

RBC Magnesium low:

javascript
// what I needed during recovery
HPA.axis.restabilize() // central burnout recovery process

// what was missing
magnesium.available = insufficient
HPA.regulation = impaired // magnesium is the regulator

// result:
while (recovery.inProgress()) {
stressor = [email, decision, conversation].random()
cortisol.spike(stressor * amplificationFactor)
// amplificationFactor elevated due to low magnesium
recovery.timeline.extend()
}

Every mild stressor during recovery produced a disproportionate cortisol response. The restabilization process was running without its regulator.

Omega-3 index at 3.1%:

Neuroinflammation from burnout doesn't resolve with rest alone. EPA actively moderates the inflammatory processes maintaining cognitive symptoms. At 3.1%, the anti-inflammatory input was nowhere near sufficient to resolve what had accumulated.

Months of rest. Pro-inflammatory environment throughout. Cognitive fog persisting. Not a mystery in retrospect.

hs-CRP at 2.9 mg/L:

Running before burnout #1. Running through recovery. Running into burnout #2. Three times the optimal threshold. Never measured.

The Patches
javascript
// recovery-stack.js
// install during recovery, maintain permanently

// patch-001: dopamine substrate (CRITICAL)
vitaminD3.install({
form: "D3", // not D2
dose: "4000 IU", // corrective — not maintenance
paired: "K2-MK7-100mcg",
timing: "morning",
requires: "dietary-fat", // fat-soluble — non-negotiable
mechanism: "tyrosine hydroxylase cofactor",
expected: "dopamine normalization over 6-8 weeks"
})

// patch-002: HPA axis regulator (CRITICAL)
magnesium.install({
form: "glycinate", // not oxide (absorption: ~4%)
dose: "400mg",
timing: "pre-sleep",
mechanism: "HPA axis modulation + GABA support",
expected: "sleep improvement within 2 weeks"
"stress response normalization over 4-6 weeks"
})

// patch-003: neuroinflammation resolution (HIGH)
omega3.install({
EPA: "1000mg+",
timing: "largest-meal",
preCheck: (batch) => {
if (oxidized) throw Error("rancid — discard, creates oxidative stress")
},
mechanism: "active neuroinflammation resolution",
expected: "cognitive fog lifting over 4-8 weeks"
})

Sourced from sunday.co.ua — official Ukrainian store for Sunday Natural, German brand, direct from Germany. Correct forms by default. D3+K2 combined. Magnesium glycinate. EPA specified explicitly. No label auditing required.

Deployment and Monitoring
// week 1-2
sleep.latency: reduced ~10min
note: magnesium-GABA effect — first signal
stress.response: slightly less expensive
note: HPA modulation beginning

// week 3-4
morning.dread: reduced
note: not resolved — reduced
code.editor: no longer triggers immediate shutdown
note: this was the metric I was watching

// week 5-6
motivation: returning in patches
note: vitamin D + dopamine normalization — slow, directional
focus: holding longer before degrading
cognitive.fog: lifting

// week 7-8: retest
$ bloodwork --retest

vitamin-d: 39 ng/mL ✅ // approaching optimal (was 18)
rbc-magnesium: normal ✅ // HPA axis has its regulator
omega3-index: 5.8% 🔄 // improving (target: 8%+, was 3.1%)
hs-crp: 0.9 mg/L ✅ // below threshold (was 2.9)

recovery.status: actually completing
timeline: 8 weeks of targeted intervention
vs: 6+ months of rest alone with no progress
The Retrospective I Should Have Run After Burnout #1
markdown

Burnout #1 Post-Mortem

Root Causes Identified

  • Toxic management ✓
  • Unsustainable workload ✓
  • Poor culture ✓

Actions Taken

  • Changed jobs ✓
  • Better boundaries ✓
  • Psychological work ✓

Nutritional Status at Time of Burnout

  • Vitamin D: NOT MEASURED
  • RBC Magnesium: NOT MEASURED
  • Omega-3 Index: NOT MEASURED
  • Systemic Inflammation: NOT MEASURED

Result

Same biological amplifiers in place at job #2
Burnout #2: 14 months later


Burnout #2 Post-Mortem

Root Causes Identified

  • Structural: similar to above
  • Biological: measured this time

Nutritional Status

  • Vitamin D: 18 ng/mL (CRITICAL)
  • RBC Magnesium: low (CRITICAL)
  • Omega-3 Index: 3.1% (HIGH)
  • hs-CRP: 2.9 mg/L (HIGH)

Actions Taken

  • Structural: changed jobs
  • Biological: fixed the stack

Result

No burnout in 2+ years since
What I'd Tell Myself Before Burnout #1

Don't wait for the diagnostic to fail twice.

bash

run this annually — especially during demanding periods

$ bloodwork --check \
25-hydroxyvitamin-d \ # dopamine substrate
rbc-magnesium \ # HPA axis regulator (not serum)
omega3-index \ # neuroinflammation baseline
hs-crp \ # direct inflammation marker
ferritin \ # iron storage — not iron
b12-methylmalonic-acid # functional B12 status

cost: less than two months of random supplements

frequency: annual minimum

timing: before you need it

Fix what's low. Maintain the stack. Raise the threshold before the structural conditions test it.

The Part That Stayed With Me

Two burnouts. Two complete recoveries attempted with the standard playbook. One of them worked. The other stalled for six months until I measured the biology.

The difference wasn't the structural conditions — those were actually better the second time. The difference was that the second time I finally looked at what the brain was working with.

Structural causes of burnout are real. Fix them. Advocate for better conditions. Leave environments that can't be fixed.

And run the bloodwork. Before the first burnout, ideally.

Not after the second one.

Top comments (0)