Introduction 03:50 Plasticity: What Is it, & What Is It For? 06:30 Babies and Potato Bugs 08:00 Customizing Your Brain 08:50 Hard-Wired Versus Plastic Brains 10:25 Everything Changes At 25 12:29 Costello and Your Hearing 13:10 The New Neuron Myth 14:10 Anosmia: Losing Smell 15:13 Neuronal Birthdays Near Our Death Day 16:45 Circumstances for Brain Change 17:21 Brain Space 18:30 No Nose, Eyes, Or Ears 19:30 Enhanced Hearing and Touch In The Blind 20:20 Brain Maps of The Body Plan 21:00 The Kennard Principle (Margaret Kennard) 21:36 Maps of Meaning 23:00 Awareness Cues Brain Change 25:20 The Chemistry of Change 26:15 A Giant Lie In The Universe 27:10 Fathers of Neuroplasticity/Critical Periods 29:30 Competition Is The Route to Plasticity 32:30 Correcting The Errors of History 33:29 Adult Brain Change: Bumps and Beeps 36:25 What It Takes to Learn 38:15 Adrenalin and Alertness 40:18 The Acetylcholine Spotlight 42:26 The Chemical Trio For Massive Brain Change 44:10 Ways To Change Your Brain 46:16 Love, Hate, & Shame: all the same chemical 47:30 The Dopamine Trap 49:40 Nicotine for Focus 52:30 Sprinting 53:30 How to Focus 55:22 Adderall: Use & Abuse 56:40 Seeing Your Way To Mental Focus 1:02:59 Blinking 1:05:30 An Ear Toward Learning 1:06:14 The Best Listeners In The World 1:07:20 Agitation is Key 1:07:40 ADHD & ADD: Attention Deficit (Hyperactivity) Disorder 1:12:00 Ultra(dian) Focus 1:13:30 When Real Change Occurs 1:16:20 How Much Learning Is Enough? 1:16:50 Learning In (Optic) Flow/Mind Drift 1:18:16 Synthesis/Summary 1:25:15 Learning With Repetition, Forming Habits
ls /home/daytona/workspace/ && ls /home/daytona/skills/docx/
mkdir -p /home/daytona/workspace/neuroplasticity-notes && ls /home/daytona/skills/docx/scripts/
~/neuroplasticity-notes/create_notes.js
const {
Document, Packer, Paragraph, TextRun,
HeadingLevel, AlignmentType, LevelFormat, BorderStyle
} = require('docx');
const fs = require('fs');
const doc = new Document({
styles: {
default: {
document: { run: { font: "Arial", size: 22 } }
},
paragraphStyles: [
{
id: "Heading1", name: "Heading 1", basedOn: "Normal", next: "Normal", quickFormat: true,
run: { size: 36, bold: true, font: "Arial", color: "1F3864" },
paragraph: { spacing: { before: 320, after: 160 }, outlineLevel: 0 }
},
{
id: "Heading2", name: "Heading 2", basedOn: "Normal", next: "Normal", quickFormat: true,
run: { size: 28, bold: true, font: "Arial", color: "2E75B6" },
paragraph: { spacing: { before: 240, after: 120 }, outlineLevel: 1 }
},
{
id: "Heading3", name: "Heading 3", basedOn: "Normal", next: "Normal", quickFormat: true,
run: { size: 24, bold: true, font: "Arial", color: "404040" },
paragraph: { spacing: { before: 160, after: 80 }, outlineLevel: 2 }
},
]
},
numbering: {
config: [
{
reference: "bullets",
levels: [
{
level: 0, format: LevelFormat.BULLET, text: "\u2022", alignment: AlignmentType.LEFT,
style: { paragraph: { indent: { left: 720, hanging: 360 } } }
},
{
level: 1, format: LevelFormat.BULLET, text: "\u25E6", alignment: AlignmentType.LEFT,
style: { paragraph: { indent: { left: 1080, hanging: 360 } } }
}
]
}
]
},
sections: [{
children: [
// ─── TITLE ───
new Paragraph({
heading: HeadingLevel.HEADING_1,
children: [new TextRun("Neuroplasticity: Study Notes")]
}),
new Paragraph({
children: [new TextRun({ text: "Based on Huberman Lab lecture on brain plasticity, learning, and focus", italics: true, color: "666666" })]
}),
new Paragraph({ children: [new TextRun("")] }),
// ═══════════════════════════════════════════════════════════
// SECTION 1: What Is Neuroplasticity?
// ═══════════════════════════════════════════════════════════
new Paragraph({ heading: HeadingLevel.HEADING_1, children: [new TextRun("1. What Is Neuroplasticity?")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Definition & Purpose (03:50)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Neuroplasticity = the brain's ability to change its structure and function in response to experience")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Serves as the mechanism for all learning, memory, and adaptation")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Not just about growing new neurons - primarily about strengthening or weakening existing connections")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Hard-Wired vs. Plastic Brains (08:50)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Some circuits are hard-wired (e.g., reflexes, basic survival functions)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Other circuits remain plastic throughout life - especially with the right conditions")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Customizing your brain (08:00): deliberate practice can selectively reshape specific circuits")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Everything Changes at 25 (10:25)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("The prefrontal cortex (decision-making, impulse control) is not fully myelinated until ~age 25")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Adolescence and early adulthood represent a high-plasticity window")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Adult brains retain plasticity but require specific triggers (neuromodulators, focus states)")] }),
new Paragraph({ children: [new TextRun("")] }),
// ═══════════════════════════════════════════════════════════
// SECTION 2: Development & Critical Periods
// ═══════════════════════════════════════════════════════════
new Paragraph({ heading: HeadingLevel.HEADING_1, children: [new TextRun("2. Development & Critical Periods")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Babies and Early Brain Development (06:30)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Infant brains are massively plastic - they rapidly map sensory input to circuits")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("'Potato bugs' (isopods) example: simple organisms use fixed circuits; complex organisms use plastic ones")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Evolutionary trade-off: more plasticity = longer dependency period but greater adaptability")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Fathers of Neuroplasticity & Critical Periods (27:10)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Hubel & Wiesel (Nobel Prize): showed that covering one eye in kittens permanently altered visual cortex wiring")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Critical periods = developmental windows of heightened plasticity for specific sensory/motor systems")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("After critical periods close, change is still possible but requires stronger triggers")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("The Kennard Principle - Margaret Kennard (21:00)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Earlier brain injury = better recovery, due to greater plasticity in younger brains")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Named after Margaret Kennard, pioneering neuroscientist who studied motor cortex lesions in primates")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Caveat: not a universal rule - some injuries have worse outcomes when early")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Correcting Errors of History (32:30)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Historical assumption that adult brains cannot change has been disproved")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Competition is the route to plasticity (29:30): neurons compete for cortical real estate - use it or lose it")] }),
new Paragraph({ children: [new TextRun("")] }),
// ═══════════════════════════════════════════════════════════
// SECTION 3: Sensory Remapping & Brain Maps
// ═══════════════════════════════════════════════════════════
new Paragraph({ heading: HeadingLevel.HEADING_1, children: [new TextRun("3. Sensory Remapping & Brain Maps")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Brain Space & Cortical Maps (17:21 - 20:20)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("The cortex has topographic 'maps' - somatosensory cortex maps body parts proportional to use/sensitivity")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Larger cortical area = more processing power for that body region (e.g., hands, lips)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Maps of meaning (21:36): the brain also maps concepts and meanings, not just sensory input")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Sensory Deprivation & Cross-Modal Plasticity (18:30 - 19:30)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("When a sense is lost, the cortical area devoted to it gets taken over by neighboring senses")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Blind individuals show enhanced hearing and touch - auditory/tactile cortex colonizes visual cortex")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("'No Nose, Eyes, or Ears' (18:30): deprivation models illuminate the rules of cortical competition")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Anosmia: Losing the Sense of Smell (14:10)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Olfactory neurons are among the few that regenerate throughout life (near the 'death day')")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Loss of smell (anosmia) can follow infection, head trauma, or aging")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("The New Neuron Myth (13:10): adult neurogenesis exists in olfactory bulb & hippocampus - but is limited and context-dependent")] }),
new Paragraph({ children: [new TextRun("")] }),
// ═══════════════════════════════════════════════════════════
// SECTION 4: Conditions for Brain Change
// ═══════════════════════════════════════════════════════════
new Paragraph({ heading: HeadingLevel.HEADING_1, children: [new TextRun("4. Conditions for Brain Change")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("What Triggers Plasticity (16:45 - 23:00)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Awareness is required: passive exposure to stimuli does NOT reliably rewire the brain")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Attention/awareness cues brain change (23:00) - you must consciously attend to what you want to learn")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Agitation is key (1:07:20): mild stress/alertness primes the neuromodulatory system for change")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Adult brain change: 'Bumps and Beeps' experiment (33:29) - showed adults can remap auditory cortex with training")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("The Chemistry of Change (25:20)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Three key neuromodulators gate plasticity:")] }),
new Paragraph({ numbering: { reference: "bullets", level: 1 }, children: [new TextRun("Epinephrine (adrenaline): generates alertness and arousal")] }),
new Paragraph({ numbering: { reference: "bullets", level: 1 }, children: [new TextRun("Acetylcholine: acts as a spotlight - marks specific synapses for strengthening")] }),
new Paragraph({ numbering: { reference: "bullets", level: 1 }, children: [new TextRun("Dopamine: signals reward/surprise, drives motivation and consolidation")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("A giant lie in the universe (26:15): common belief that learning must feel good in the moment - real change happens during rest/sleep after effort")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Adrenalin and Alertness (38:15)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Epinephrine released from adrenal glands and locus coeruleus in the brain")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Elevates overall arousal - necessary but not sufficient for plasticity")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Too much = panic/distraction; too little = sleep/inattention")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("The Acetylcholine Spotlight (40:18)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Acetylcholine (ACh) is released from nucleus basalis when attention is focused")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Acts like a spotlight: amplifies activity in the attended circuits")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Circuits highlighted by ACh are the ones most likely to be durably changed")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Nicotine (49:40): increases ACh release - explains short-term focus boost, but high addiction risk")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("The Chemical Trio for Massive Brain Change (42:26)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Maximum plasticity = Epinephrine (arousal) + Acetylcholine (spotlight) + Dopamine (reward signal)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Dopamine released on unexpected reward or progress toward a goal")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Love, hate, shame (46:16): all three emotions trigger dopamine/norepinephrine circuits - emotionally charged events are powerfully plastic")] }),
new Paragraph({ children: [new TextRun("")] }),
// ═══════════════════════════════════════════════════════════
// SECTION 5: Dopamine, Focus & Attention
// ═══════════════════════════════════════════════════════════
new Paragraph({ heading: HeadingLevel.HEADING_1, children: [new TextRun("5. Dopamine, Focus & Attention")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("The Dopamine Trap (47:30)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Dopamine is about anticipation and pursuit, not just pleasure")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Attaching dopamine to the effort process (not just the outcome) sustains long-term motivation")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("'Dopamine trap': over-rewarding with external prizes can reduce intrinsic motivation")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("How to Focus (53:30)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Focus is a skill that must be trained, not simply 'turned on'")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Narrowing visual gaze to a point increases alertness (activates sympathetic nervous system)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Seeing your way to mental focus (56:40): sustained visual fixation is a practical tool to induce cognitive focus")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Blinking (1:02:59): blinking resets attention; reducing blink rate sustains focus; panoramic vision relaxes it")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("An Ear Toward Learning (1:05:30)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Auditory attention (leaning in, cupping ear) is linked to the best listeners and fastest learners")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Orienting behaviors (physically turning toward stimulus) amplify ACh release and attention circuits")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Sprinting for Focus (52:30)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Brief intense physical exercise (sprinting) elevates epinephrine rapidly")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Can be used to snap into a heightened state of alertness before a learning session")] }),
new Paragraph({ children: [new TextRun("")] }),
// ═══════════════════════════════════════════════════════════
// SECTION 6: ADHD & Pharmacology
// ═══════════════════════════════════════════════════════════
new Paragraph({ heading: HeadingLevel.HEADING_1, children: [new TextRun("6. ADHD, Pharmacology & Focus Tools")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("ADHD & ADD (1:07:40)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("ADHD = deficit in the ability to modulate attention, not simply 'too much energy'")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Involves dysregulation of dopamine and norepinephrine pathways in prefrontal cortex")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Both hyperactive and inattentive subtypes stem from under-aroused prefrontal circuits")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Non-pharmacological tools: visual focus drills, physical exercise, and structured ultradian cycles can help")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Adderall: Use & Abuse (55:22)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Amphetamine salts (Adderall) increase dopamine and norepinephrine release")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Clinically effective for ADHD; misuse in neurotypical individuals can cause dependence")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("High-dose or chronic use suppresses natural dopamine production")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Ways to Change Your Brain (44:10)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Deliberate focus practice")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Physical exercise (acute and chronic)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Pharmacological tools (stimulants, nicotine) - with caution")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Emotional arousal (leveraging love, hate, shame circuits)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Sleep and rest (where synaptic consolidation actually occurs)")] }),
new Paragraph({ children: [new TextRun("")] }),
// ═══════════════════════════════════════════════════════════
// SECTION 7: Learning Mechanics
// ═══════════════════════════════════════════════════════════
new Paragraph({ heading: HeadingLevel.HEADING_1, children: [new TextRun("7. How Learning Actually Works")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("What It Takes to Learn (36:25)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Learning requires: attention, arousal, and a signal that something matters (error or surprise)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Errors and frustration are the key triggers - they signal 'something needs to change here'")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Passive re-reading or re-watching does not strongly drive plasticity")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Ultradian Focus Cycles (1:12:00)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Brain naturally oscillates in ~90-minute cycles (ultradian rhythms)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Each cycle: first ~5 min = warm-up (distractible), next ~60-70 min = deep focus window, last ~15 min = wind-down")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Schedule demanding learning tasks within these cycles; don't fight the rest phase")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("When Real Change Occurs (1:13:30)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Actual synaptic rewiring happens during sleep and NREM slow-wave sleep in particular")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Short non-sleep deep rest (NSDR / nap) after learning speeds consolidation")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("The learning session generates the blueprint; sleep builds the structure")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("How Much Learning Is Enough? (1:16:20)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Even short focused sessions (~20-30 min) of genuine attention can drive measurable plasticity")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Quality of attention matters more than total time spent")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Learning in Optic Flow / Mind Drift (1:16:50)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Walking (optic flow - forward visual motion) suppresses amygdala activity and reduces anxiety")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Mind wandering during rest consolidates learning (default mode network activity)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Avoid immediately scrolling/stimulating after a learning session - let the mind drift")] }),
new Paragraph({ heading: HeadingLevel.HEADING_2, children: [new TextRun("Learning with Repetition & Habit Formation (1:25:15)")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Repetition gradually shifts behavior from cortical (effortful) to subcortical (automatic) circuits")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Habits form in basal ganglia - once formed, they require less conscious effort")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Early repetitions are most important for establishing the circuit; later repetitions reinforce and automate")] }),
new Paragraph({ children: [new TextRun("")] }),
// ═══════════════════════════════════════════════════════════
// SECTION 8: KEY TAKEAWAYS
// ═══════════════════════════════════════════════════════════
new Paragraph({ heading: HeadingLevel.HEADING_1, children: [new TextRun("8. Key Takeaways")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Neuroplasticity is possible at any age but requires the right neurochemical conditions")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("You cannot passively absorb learning - focused attention + emotional/chemical arousal is required")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("The trio of Epinephrine + Acetylcholine + Dopamine is the most powerful driver of adult brain change")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Sleep is not optional - it is when the actual rewiring occurs")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Frustration, errors, and agitation are signals to lean in - they are the gateway to plasticity")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Physical tools (visual fixation, sprinting, auditory orienting) can directly modulate brain chemistry for learning")] }),
new Paragraph({ numbering: { reference: "bullets", level: 0 }, children: [new TextRun("Work with ultradian cycles (~90 min focus blocks) for optimal learning efficiency")] }),
]
}]
});
Packer.toBuffer(doc).then(buffer => {
fs.writeFileSync('/home/daytona/workspace/neuroplasticity-notes/Neuroplasticity_Study_Notes.docx', buffer);
console.log('Document created successfully.');
});
cd /home/daytona/workspace/neuroplasticity-notes && node create_notes.js
python /home/daytona/skills/docx/scripts/office/validate.py /home/daytona/workspace/neuroplasticity-notes/Neuroplasticity_Study_Notes.docx
ls -lh /home/daytona/workspace/neuroplasticity-notes/Neuroplasticity_Study_Notes.docx && python3 -c " import zipfile, sys path = '/home/daytona/workspace/neuroplasticity-notes/Neuroplasticity_Study_Notes.docx' try: with zipfile.ZipFile(path, 'r') as z: names = z.namelist() print('Valid ZIP/DOCX. Contents:', names[:8]) except Exception as e: print('ERROR:', e) "
Neuroplasticity Study Notes
Word Document · DOCX
| Section | Topics |
|---|---|
| 1. What Is Neuroplasticity? | Definition, hard-wired vs. plastic circuits, the age-25 threshold |
| 2. Development & Critical Periods | Infant brains, Hubel & Wiesel, Kennard Principle, cortical competition |
| 3. Sensory Remapping & Brain Maps | Cortical maps, cross-modal plasticity in the blind, anosmia, neurogenesis myth |
| 4. Conditions for Brain Change | Awareness requirement, the chemistry trio (epinephrine/ACh/dopamine), "bumps & beeps" experiment |
| 5. Dopamine, Focus & Attention | Dopamine trap, visual fixation, blinking, auditory orienting, sprinting |
| 6. ADHD, Pharmacology & Focus Tools | ADHD neurobiology, Adderall use/abuse, nicotine, practical non-drug tools |
| 7. How Learning Actually Works | Errors as learning triggers, ultradian 90-min cycles, sleep consolidation, habit formation |
| 8. Key Takeaways | 7 core principles summarized |