Please make flashcards of chapter cell injury from robbins pathology

Reading File
Finding Sources
Finding Sources
Finding Sources
Finding Sources
This is block 1 of Robbins Cotran - it covers cellular basics, not the Cell Injury chapter. Let me find the correct block/chapter for Cell Injury.
Finding Sources
The Cell Injury chapter is in block1.md of Robbins Cotran (9780443264528). Let me read the relevant sections - from around line 1100 to cover Causes, Progression, Reversible Injury, Necrosis, Apoptosis, Mechanisms, etc.
Reading File
Reading File
Reading File
Reading File
I now have rich content from the Robbins Cotran Cell Injury chapter. Let me also grab the mechanisms section (ROS, Ca2+, etc.) and the adaptations section, then the PPTX skill to create flashcard slides.
Reading File
Reading File
Reading File
I have enough content. Now I'll create the flashcard PPTX with all key topics from the Cell Injury chapter.
Running Command

mkdir -p /home/daytona/workspace/cell-injury-flashcards

Writing File

~/cell-injury-flashcards/make_flashcards.js

const pptxgen = require("pptxgenjs");

const pres = new pptxgen();
pres.layout = "LAYOUT_16x9";
pres.title = "Cell Injury - Robbins Pathology Flashcards";

// Color palette
const DARK_BG = "1A2A3A";       // Deep navy - title/cover slides
const MED_BG  = "0F3460";       // Dark blue - question slides
const ANS_BG  = "FFFFFF";       // White - answer slides
const ACCENT  = "E94560";       // Coral-red accent
const GOLD    = "F5A623";       // Gold for highlights
const LIGHT_TEXT = "FFFFFF";
const DARK_TEXT  = "1A2A3A";
const SUBTEXT    = "4A6FA5";

function addCoverSlide(title, subtitle) {
  const slide = pres.addSlide();
  slide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: DARK_BG } });
  // Top accent bar
  slide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 0.08, fill: { color: ACCENT } });
  // Bottom accent bar
  slide.addShape(pres.ShapeType.rect, { x: 0, y: 5.545, w: 10, h: 0.08, fill: { color: ACCENT } });
  // Decorative side strip
  slide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 0.35, h: 5.625, fill: { color: ACCENT } });

  slide.addText("ROBBINS PATHOLOGY", {
    x: 0.6, y: 0.8, w: 9, h: 0.5,
    fontSize: 13, color: GOLD, bold: true, charSpacing: 5, fontFace: "Calibri"
  });
  slide.addText(title, {
    x: 0.6, y: 1.4, w: 9, h: 1.8,
    fontSize: 44, color: LIGHT_TEXT, bold: true, fontFace: "Calibri",
    align: "left", valign: "middle"
  });
  slide.addText(subtitle, {
    x: 0.6, y: 3.4, w: 9, h: 0.7,
    fontSize: 18, color: "A0C4FF", fontFace: "Calibri", italic: true
  });
  slide.addText("Flashcard Study Set", {
    x: 0.6, y: 4.9, w: 9, h: 0.5,
    fontSize: 11, color: "607B96", fontFace: "Calibri"
  });
}

function addSectionDivider(num, title, color) {
  const slide = pres.addSlide();
  slide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: color || MED_BG } });
  slide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 0.07, fill: { color: ACCENT } });
  slide.addShape(pres.ShapeType.rect, { x: 0, y: 5.555, w: 10, h: 0.07, fill: { color: ACCENT } });
  slide.addText(`SECTION ${num}`, {
    x: 1, y: 1.5, w: 8, h: 0.6,
    fontSize: 14, color: GOLD, bold: true, charSpacing: 6, fontFace: "Calibri", align: "center"
  });
  slide.addText(title, {
    x: 1, y: 2.2, w: 8, h: 1.5,
    fontSize: 34, color: LIGHT_TEXT, bold: true, fontFace: "Calibri", align: "center", valign: "middle"
  });
}

// Q&A flashcard: Question slide + Answer slide
function addCard(qNum, question, answerLines, tags) {
  // --- QUESTION SLIDE ---
  const qSlide = pres.addSlide();
  qSlide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: MED_BG } });
  qSlide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 0.07, fill: { color: ACCENT } });
  // Card number pill
  qSlide.addShape(pres.ShapeType.roundRect, { x: 0.4, y: 0.25, w: 0.85, h: 0.45, fill: { color: ACCENT }, rectRadius: 0.1 });
  qSlide.addText(`Q${qNum}`, { x: 0.4, y: 0.25, w: 0.85, h: 0.45, fontSize: 14, color: LIGHT_TEXT, bold: true, fontFace: "Calibri", align: "center", valign: "middle" });
  // Tag
  if (tags) {
    qSlide.addText(tags, { x: 1.4, y: 0.3, w: 8, h: 0.35, fontSize: 10, color: "A0C4FF", fontFace: "Calibri", italic: true });
  }
  // Question mark icon area
  qSlide.addText("?", { x: 8.5, y: 0.7, w: 1.2, h: 1.2, fontSize: 80, color: "1A3A5A", bold: true, fontFace: "Calibri", align: "center", valign: "middle" });
  // Question text
  qSlide.addText(question, {
    x: 0.5, y: 1.0, w: 8.2, h: 4.2,
    fontSize: 24, color: LIGHT_TEXT, bold: true, fontFace: "Calibri",
    align: "left", valign: "middle", wrap: true
  });
  // Footer
  qSlide.addText("Cell Injury – Robbins Pathology", { x: 0.5, y: 5.25, w: 9, h: 0.3, fontSize: 9, color: "406080", fontFace: "Calibri" });

  // --- ANSWER SLIDE ---
  const aSlide = pres.addSlide();
  aSlide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: ANS_BG } });
  // Top accent line
  aSlide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 0.07, fill: { color: ACCENT } });
  // Left side bar
  aSlide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 0.18, h: 5.625, fill: { color: SUBTEXT } });
  // Answer pill
  aSlide.addShape(pres.ShapeType.roundRect, { x: 0.4, y: 0.25, w: 1.1, h: 0.45, fill: { color: SUBTEXT }, rectRadius: 0.1 });
  aSlide.addText(`A${qNum}`, { x: 0.4, y: 0.25, w: 1.1, h: 0.45, fontSize: 14, color: LIGHT_TEXT, bold: true, fontFace: "Calibri", align: "center", valign: "middle" });
  // Question recap (small)
  aSlide.addText(question.length > 90 ? question.substring(0, 87) + "..." : question, {
    x: 1.65, y: 0.28, w: 8, h: 0.42,
    fontSize: 9.5, color: "888888", italic: true, fontFace: "Calibri"
  });
  // Divider
  aSlide.addShape(pres.ShapeType.line, { x: 0.4, y: 0.82, w: 9.3, h: 0, line: { color: "DDDDDD", width: 1 } });
  // Answer content
  const richLines = answerLines.map((line, i) => ({
    text: line,
    options: {
      bullet: line.startsWith("•") ? false : true,
      breakLine: i < answerLines.length - 1,
      fontSize: 17,
      color: DARK_TEXT,
      fontFace: "Calibri",
      bold: line.startsWith("★") || line.startsWith("KEY"),
    }
  }));
  aSlide.addText(richLines, { x: 0.45, y: 0.9, w: 9.2, h: 4.5, valign: "top", wrap: true });
  // Footer
  aSlide.addText("Cell Injury – Robbins Pathology", { x: 0.5, y: 5.25, w: 9, h: 0.3, fontSize: 9, color: "AAAAAA", fontFace: "Calibri" });
}

// =====================================================================
// COVER SLIDE
// =====================================================================
addCoverSlide("Cell Injury, Cell Death\n& Adaptations", "Chapter 2 – Robbins & Kumar Pathologic Basis of Disease");

// =====================================================================
// SECTION 1: Cellular Adaptations
// =====================================================================
addSectionDivider(1, "Cellular Adaptations", "1A3A5A");

addCard(1,
  "What are the four main cellular adaptations to stress? Give one example of each.",
  [
    "1. Hypertrophy – increase in CELL SIZE (e.g., cardiac muscle in hypertension)",
    "2. Hyperplasia – increase in CELL NUMBER (e.g., endometrial hyperplasia with estrogen)",
    "3. Atrophy – decrease in cell size/number (e.g., muscle disuse)",
    "4. Metaplasia – change in cell phenotype (e.g., Barrett esophagus: squamous → columnar)",
    "★ KEY: All are reversible if the stimulus is removed"
  ],
  "Adaptations"
);

addCard(2,
  "What is hypertrophy? What are its physiologic and pathologic examples?",
  [
    "Increase in CELL SIZE (not number), with increased functional capacity",
    "Physiologic: uterus during pregnancy; skeletal muscle with exercise",
    "Pathologic: left ventricular hypertrophy in hypertension",
    "Mechanism: growth factors (IGF-1, TGF-β), mechanical sensors → gene activation → increased protein synthesis",
    "★ Pure hypertrophy occurs in non-dividing cells (cardiac, skeletal muscle)"
  ],
  "Hypertrophy"
);

addCard(3,
  "What is hyperplasia? When is it pathologic vs physiologic?",
  [
    "Increase in CELL NUMBER due to growth factor-driven proliferation",
    "Physiologic: regenerative (liver after hepatectomy); hormonal (breast/uterus at puberty)",
    "Pathologic: endometrial hyperplasia (excess estrogen) → risk of carcinoma",
    "Viral: HPV causes epithelial hyperplasia (warts) → can precede cancer",
    "★ Hyperplasia occurs only in cells capable of division (NOT cardiac/neurons)"
  ],
  "Hyperplasia"
);

addCard(4,
  "List 6 causes of pathologic atrophy.",
  [
    "1. Decreased workload (disuse atrophy) – plaster cast immobilization",
    "2. Loss of innervation (denervation atrophy)",
    "3. Diminished blood supply (senile brain atrophy)",
    "4. Inadequate nutrition (marasmus, cachexia)",
    "5. Loss of endocrine stimulation (post-menopause endometrium/breast)",
    "6. Pressure atrophy (benign tumor compressing adjacent tissue)",
    "Mechanism: ↓ protein synthesis + ↑ ubiquitin-proteasome degradation + autophagy"
  ],
  "Atrophy"
);

addCard(5,
  "What is metaplasia? Give 3 clinical examples and explain its significance.",
  [
    "Reversible change in which one differentiated cell type is replaced by another",
    "1. Barrett esophagus: squamous (esophagus) → columnar (gastric-type) due to GERD",
    "2. Respiratory tract: columnar ciliated → squamous epithelium in smokers",
    "3. Bladder: transitional → squamous (chronic stones/infection)",
    "Mechanism: reprogramming of stem cells by growth factors & cytokines",
    "★ Significance: protective but ↑ risk of malignant transformation (e.g., adenocarcinoma in Barrett)"
  ],
  "Metaplasia"
);

// =====================================================================
// SECTION 2: Causes & Overview of Cell Injury
// =====================================================================
addSectionDivider(2, "Causes of Cell Injury", "1A3A5A");

addCard(6,
  "What are the major causes of cell injury? (List at least 7 categories)",
  [
    "1. Hypoxia/Ischemia – most common; O₂ deprivation",
    "2. Physical agents – trauma, burns, radiation, extreme temps",
    "3. Chemical agents & drugs – CCl₄, acetaminophen overdose",
    "4. Infectious agents – viruses, bacteria, fungi, parasites",
    "5. Immunologic reactions – autoimmunity, hypersensitivity",
    "6. Genetic derangements – inborn errors, enzyme defects",
    "7. Nutritional imbalances – protein deficiency, vitamin deficiency",
    "★ Hypoxia ≠ Ischemia: Ischemia also ↓ metabolic substrates + accumulates wastes"
  ],
  "Causes"
);

addCard(7,
  "How does hypoxia differ from ischemia? Why is ischemia more damaging?",
  [
    "Hypoxia: O₂ deficiency only → cells use anaerobic glycolysis for some ATP",
    "Ischemia: ↓ blood flow → O₂ deprivation + loss of metabolic substrates + accumulation of metabolic wastes (lactate, H⁺)",
    "★ Ischemia is more damaging because anaerobic glycolysis is also impaired",
    "Reperfusion injury adds further damage via ROS generation upon restoration of blood flow"
  ],
  "Hypoxia vs Ischemia"
);

// =====================================================================
// SECTION 3: Reversible Cell Injury
// =====================================================================
addSectionDivider(3, "Reversible Cell Injury", "1A3A5A");

addCard(8,
  "What are the two hallmark morphologic features of reversible cell injury?",
  [
    "1. CELLULAR SWELLING (hydropic change): Most common; first manifestation",
    "   • Caused by failure of ATP-dependent Na⁺/K⁺-ATPase pump",
    "   • Na⁺ accumulates → osmotic water influx → cell & ER enlarge",
    "2. FATTY CHANGE (steatosis): Triglyceride-filled lipid vacuoles",
    "   • Seen in organs of lipid metabolism: liver, heart, kidney",
    "   • Caused by toxic injury disrupting lipid metabolism",
    "★ Both are REVERSIBLE if stimulus is removed"
  ],
  "Reversible Injury"
);

addCard(9,
  "What ultrastructural changes are seen in reversible cell injury?",
  [
    "• Plasma membrane: blebbing, blunting of microvilli",
    "• Mitochondria: swelling, rarefaction (clearing) of matrix",
    "• ER: dilatation, detachment of ribosomes (→ ↓ protein synthesis)",
    "• Nucleus: clumping of nuclear chromatin",
    "• Cytoplasm: myelin figures appear (phospholipid whirls)",
    "★ Gross: organ pallor + mild swelling",
    "★ No nuclear changes = still REVERSIBLE"
  ],
  "Morphology"
);

// =====================================================================
// SECTION 4: Irreversible Injury & Necrosis
// =====================================================================
addSectionDivider(4, "Irreversible Injury & Necrosis", "1A3A5A");

addCard(10,
  "What are the two morphologic hallmarks that indicate IRREVERSIBLE cell injury?",
  [
    "1. SEVERE MITOCHONDRIAL DYSFUNCTION with vacuolization of mitochondria",
    "   → 'Flocculent densities' in mitochondrial matrix",
    "2. PLASMA MEMBRANE DISRUPTION with lysosomal swelling and leakage",
    "   → Lysosomal enzymes digest cell contents (autolysis)",
    "★ Nuclear changes (pyknosis, karyorrhexis, karyolysis) confirm irreversible injury",
    "★ Irreversibility = point of no return, leads to necrosis or apoptosis"
  ],
  "Irreversible Injury"
);

addCard(11,
  "What are the three nuclear changes seen in necrosis?",
  [
    "1. PYKNOSIS – nuclear condensation; basophilic, shrunken nucleus",
    "2. KARYORRHEXIS – fragmentation of the condensed nucleus",
    "3. KARYOLYSIS – dissolution/fading of the nucleus (enzymatic DNase digestion)",
    "★ Mnemonic: PCK → Pack (condense, crumble, clear)",
    "These changes occur over 1–2 days after cell death"
  ],
  "Necrosis – Nuclear Changes"
);

addCard(12,
  "Compare the 6 patterns of tissue necrosis with their key associations.",
  [
    "1. COAGULATIVE – preserved architecture; all organs except brain; ischemia → infarct",
    "2. LIQUEFACTIVE – digested, viscous liquid; brain infarct; bacterial/fungal abscess (pus)",
    "3. CASEOUS – cheese-like, friable; TB granuloma; structureless, amorphous debris",
    "4. FAT NECROSIS – chalky-white Ca²⁺ deposits; acute pancreatitis (saponification)",
    "5. FIBRINOID – bright pink, amorphous; immune-mediated vasculitis",
    "6. GANGRENOUS – clinical term; dry (coagulative) vs wet (+ liquefactive, bacterial)",
    "★ Coagulative = all organs EXCEPT brain"
  ],
  "Patterns of Necrosis"
);

addCard(13,
  "What is coagulative necrosis? Why is the brain an exception?",
  [
    "Architecture of dead tissue is preserved for days → firm texture",
    "Injury denatures structural proteins AND enzymes → ↓ proteolysis",
    "Cells are eosinophilic with ghost outlines; nuclei disappear",
    "Caused by ischemia in all organs except brain",
    "★ Brain exception: high phospholipid content + few structural proteins → undergoes LIQUEFACTIVE necrosis",
    "A localized area of coagulative necrosis = INFARCT"
  ],
  "Coagulative Necrosis"
);

addCard(14,
  "What is caseous necrosis? What disease is it most associated with?",
  [
    "Friable, cheese-like (Latin: caseus) white appearance",
    "Microscopy: structureless granular debris of fragmented lysed cells",
    "Surrounded by a GRANULOMA (epithelioid macrophages + lymphocytes)",
    "★ Most associated with: TUBERCULOSIS",
    "Also: histoplasmosis, coccidioidomycosis",
    "Enclosed granuloma = the diagnostic hallmark"
  ],
  "Caseous Necrosis"
);

addCard(15,
  "What is fat necrosis and what enzyme is responsible?",
  [
    "Focal destruction of fat tissue by release of activated PANCREATIC LIPASES",
    "Occurs in: acute pancreatitis (Chapter 19)",
    "Mechanism: pancreatic enzymes leak → liquefy fat cell membranes → release triglycerides",
    "Lipases split triglycerides → fatty acids combine with Ca²⁺ → chalky-white deposits",
    "This is SAPONIFICATION (soap formation)",
    "Histology: shadowy necrotic fat cells + basophilic Ca²⁺ deposits + inflammation",
    "★ Grossly chalky-white lesions in peritoneum = diagnostic clue for pancreatitis"
  ],
  "Fat Necrosis"
);

// =====================================================================
// SECTION 5: Apoptosis
// =====================================================================
addSectionDivider(5, "Apoptosis", "1A3A5A");

addCard(16,
  "What is apoptosis and how does it differ from necrosis?",
  [
    "Apoptosis: programmed cell death; orderly, energy-dependent elimination of cells",
    "DIFFERENCES vs Necrosis:",
    "• Cell size: shrunken (apoptosis) vs swollen (necrosis)",
    "• Membrane: intact (apoptosis) vs disrupted (necrosis)",
    "• Inflammation: ABSENT (apoptosis) vs PRESENT (necrosis)",
    "• DNA: laddering (180 bp) in apoptosis vs random degradation in necrosis",
    "• Process: controlled, ATP-dependent vs passive, accidental",
    "★ Apoptosis = 'suicide'; Necrosis = 'murder'"
  ],
  "Apoptosis vs Necrosis"
);

addCard(17,
  "What are the morphologic features of apoptosis?",
  [
    "1. Cell shrinkage – dense cytoplasm; tightly packed organelles",
    "2. Chromatin condensation – dense crescent-shaped clumps under nuclear membrane",
    "3. Nuclear fragmentation",
    "4. Cytoplasmic blebs → formation of APOPTOTIC BODIES (membrane-bound fragments)",
    "5. Phagocytosis of apoptotic bodies by adjacent cells or macrophages",
    "★ No leakage → NO inflammation",
    "Histologically: single shrunken eosinophilic cell with dark nucleus fragments"
  ],
  "Morphology of Apoptosis"
);

addCard(18,
  "What are the causes of apoptosis? (Physiologic vs Pathologic)",
  [
    "PHYSIOLOGIC:",
    "• Embryogenesis (organogenesis, removal of webbing)",
    "• Involution of hormone-dependent tissues (post-lactation breast, endometrium)",
    "• Deletion of self-reactive lymphocytes (immune tolerance)",
    "• Normal cell turnover (intestinal epithelium, neutrophil death)",
    "PATHOLOGIC:",
    "• DNA damage (p53 activation → irreparable DNA → apoptosis)",
    "• Viral infections (hepatocyte death → Councilman bodies in viral hepatitis)",
    "• Cytotoxic T-lymphocyte-mediated killing",
    "• Atrophy after duct obstruction (pancreas, parotid)"
  ],
  "Causes of Apoptosis"
);

addCard(19,
  "Describe the two main pathways of apoptosis.",
  [
    "1. INTRINSIC (Mitochondrial) Pathway:",
    "   • Triggered by: DNA damage, oxidative stress, growth factor withdrawal",
    "   • ↑ Bax/Bak (pro-apoptotic) → cytochrome c released from mitochondria",
    "   • Cytochrome c + Apaf-1 → apoptosome → activates caspase-9 → effector caspases",
    "   • BCL-2 inhibits this pathway (anti-apoptotic)",
    "2. EXTRINSIC (Death Receptor) Pathway:",
    "   • FasL binds Fas (CD95) or TNF binds TNFR1",
    "   • FADD adaptor → procaspase-8 → caspase-8 → effector caspases",
    "★ BOTH pathways converge on EXECUTIONER CASPASES (3, 6, 7)"
  ],
  "Apoptosis Pathways"
);

addCard(20,
  "What is the role of BCL-2 in apoptosis?",
  [
    "BCL-2 is an ANTI-APOPTOTIC protein located on mitochondrial membrane",
    "Function: sequesters pro-apoptotic proteins (Bax, Bak) → prevents cytochrome c release",
    "★ BCL-2 overexpression → cells resist apoptosis → promotes cancer survival",
    "Classic example: follicular B-cell lymphoma has t(14;18) → BCL-2 overexpression",
    "BCL-2 family balance (pro vs anti-apoptotic) = 'rheostat' for cell survival",
    "Other anti-apoptotic: BCL-XL, MCL-1",
    "Pro-apoptotic: BAX, BAK, BIM, PUMA, NOXA"
  ],
  "BCL-2 Family"
);

// =====================================================================
// SECTION 6: Mechanisms of Cell Injury
// =====================================================================
addSectionDivider(6, "Mechanisms of Cell Injury", "1A3A5A");

addCard(21,
  "What are the 5 main intracellular mechanisms by which cell injury occurs?",
  [
    "1. ATP DEPLETION – mitochondrial dysfunction; Na⁺/K⁺ pump failure → swelling",
    "2. MITOCHONDRIAL DAMAGE – MPTP opens → ↓ membrane potential → necrosis/apoptosis",
    "3. INTRACELLULAR Ca²⁺ ACCUMULATION – activates enzymes (PLA₂, proteases, endonucleases)",
    "4. REACTIVE OXYGEN SPECIES (ROS) – oxidative stress → lipid peroxidation, DNA damage",
    "5. PLASMA MEMBRANE DAMAGE – direct damage (toxins) or loss of phospholipids",
    "★ These mechanisms are INTERCONNECTED and amplify each other"
  ],
  "Mechanisms"
);

addCard(22,
  "What happens when ATP is depleted in a cell? (Downstream effects)",
  [
    "1. ↓ Na⁺/K⁺-ATPase → Na⁺ influx + K⁺ efflux → cell swelling",
    "2. ↑ Anaerobic glycolysis → lactic acid accumulation → ↓ pH → ↓ enzyme activity",
    "3. ↓ Protein synthesis (ribosomes detach from ER)",
    "4. Lipid deposition (lipoprotein assembly failure)",
    "5. ↑ Cytosolic Ca²⁺ → enzyme activation",
    "6. Mitochondrial permeability transition pore (MPTP) opens at ~5–10% normal ATP → NECROSIS",
    "★ ATP depletion to 5–10% of normal = widespread cellular dysfunction"
  ],
  "ATP Depletion"
);

addCard(23,
  "What are Reactive Oxygen Species (ROS)? How do they cause cell injury?",
  [
    "ROS = partially reduced forms of oxygen: O₂•⁻ (superoxide), H₂O₂, •OH (hydroxyl radical)",
    "Sources: normal metabolism, ischemia-reperfusion, radiation, toxic drugs, inflammation",
    "Mechanisms of injury:",
    "  • Lipid peroxidation – membrane phospholipid destruction",
    "  • Protein oxidation – enzyme inactivation; structural protein damage",
    "  • DNA damage – single/double strand breaks",
    "Antioxidant defenses: SOD (O₂•⁻ → H₂O₂), catalase (H₂O₂ → H₂O), glutathione peroxidase",
    "★ Ischemia-reperfusion: reperfusion floods cell with O₂ → burst of ROS generation"
  ],
  "ROS & Oxidative Stress"
);

addCard(24,
  "How does increased intracellular Ca²⁺ cause cell injury?",
  [
    "Normally: cytosolic Ca²⁺ is very low (~0.1 µmol); pumped into ER and extracellular space",
    "In injury: ischemia, toxins → membrane damage → Ca²⁺ influx from extracellular space + release from ER",
    "Harmful effects of ↑ Ca²⁺:",
    "  • ATPases – accelerates ATP depletion",
    "  • Phospholipases – membrane damage",
    "  • Proteases – cytoskeletal and membrane degradation",
    "  • Endonucleases – DNA and chromatin fragmentation",
    "  • Mitochondrial damage → permeability transition → cytochrome c release",
    "★ Ca²⁺ is a FINAL COMMON PATHWAY in many types of cell death"
  ],
  "Calcium & Cell Injury"
);

addCard(25,
  "What is ischemia-reperfusion injury and why is it important clinically?",
  [
    "Reperfusion of ischemic tissue can paradoxically WORSEN injury",
    "Mechanisms of reperfusion injury:",
    "  1. ROS burst on O₂ reintroduction (from mitochondria, xanthine oxidase, neutrophils)",
    "  2. Intracellular Ca²⁺ overload (restored membrane function, mitochondrial uptake)",
    "  3. Neutrophil infiltration → more ROS and proteases",
    "  4. Complement activation",
    "Clinical importance:",
    "  • Myocardial infarction reperfusion (thrombolysis/PCI)",
    "  • Stroke reperfusion",
    "  • Organ transplantation",
    "★ Explains why rapid reperfusion must be balanced with protective strategies"
  ],
  "Reperfusion Injury"
);

// =====================================================================
// SECTION 7: Cellular Aging & Special Topics
// =====================================================================
addSectionDivider(7, "Special Topics", "1A3A5A");

addCard(26,
  "What is autophagy? How does it relate to cell injury?",
  [
    "Autophagy: 'self-eating' – cell digests its own organelles and proteins via lysosomes",
    "Types: macroautophagy, microautophagy, chaperone-mediated autophagy",
    "Protective role: removes damaged organelles (mitochondria = mitophagy)",
    "Stimulated by: nutrient deprivation, growth factor loss, ER stress",
    "Relevance to injury:",
    "  • Adaptation: helps cells survive stress by recycling components for energy",
    "  • Excessive autophagy → autophagic cell death (type 2 programmed death)",
    "★ Autophagic vacuoles (membrane-bound organelle fragments) = morphologic marker"
  ],
  "Autophagy"
);

addCard(27,
  "What is the 'point of no return' in cell injury?",
  [
    "The threshold beyond which injury becomes IRREVERSIBLE",
    "Key events that mark the point of no return:",
    "  1. Severe mitochondrial dysfunction (vacuolization + flocculent densities)",
    "  2. Profound membrane damage (plasma + lysosomal membranes)",
    "  3. Lysosomal enzyme release → auto-digestion",
    "★ Before this point: cell swelling, fatty change → REVERSIBLE",
    "★ After this point: nuclear changes (pyknosis, karyorrhexis, karyolysis) → NECROSIS",
    "Not always a sharp line – varies by cell type, type of injury, and ATP levels"
  ],
  "Point of No Return"
);

addCard(28,
  "What are the morphologic features used to distinguish apoptosis from necrosis on H&E?",
  [
    "APOPTOSIS:",
    "  • Single shrunken eosinophilic cell or small clusters",
    "  • Dense nuclear chromatin condensation",
    "  • Apoptotic bodies (membrane-bound cellular fragments)",
    "  • No surrounding inflammation",
    "NECROSIS:",
    "  • Groups/zones of cells; cell swelling → ghost outlines",
    "  • Pyknosis → karyorrhexis → karyolysis",
    "  • Cytoplasmic eosinophilia (denatured proteins)",
    "  • INFLAMMATION present",
    "★ Councilman bodies in viral hepatitis = apoptotic hepatocytes"
  ],
  "Histology Comparison"
);

addCard(29,
  "What are the cellular changes of aging and senescence?",
  [
    "Cellular aging = accumulation of sub-lethal injury over time",
    "Key mechanisms:",
    "  1. TELOMERE SHORTENING – replicative senescence; each division ↓ telomere → growth arrest (p53/p21)",
    "  2. Oxidative damage – ROS from normal metabolism accumulates",
    "  3. Defective protein homeostasis – misfolded proteins accumulate",
    "  4. Epigenetic changes – altered gene expression patterns",
    "Features of senescent cells:",
    "  • Enlarged, flat morphology",
    "  • ↑ β-galactosidase activity (senescence marker)",
    "  • SASP: Senescence-Associated Secretory Phenotype → pro-inflammatory",
    "★ Telomerase reactivation = key mechanism in cancer immortalization"
  ],
  "Cellular Aging"
);

addCard(30,
  "What is the role of p53 in cell injury?",
  [
    "p53 = 'Guardian of the Genome'; tumor suppressor protein",
    "Activated by: DNA damage, hypoxia, oncogene activation, ROS",
    "Normal function:",
    "  • Halts cell cycle (G1/S checkpoint via p21) to allow DNA repair",
    "  • If DNA repair fails → activates pro-apoptotic genes (PUMA, NOXA) → apoptosis",
    "  • Activates antioxidant genes",
    "★ Loss/mutation of p53 (most common mutation in cancer) → damaged cells survive and proliferate",
    "★ p53 connects DNA damage → apoptosis (intrinsic pathway)"
  ],
  "p53 & DNA Damage"
);

// =====================================================================
// CLOSING SLIDE
// =====================================================================
const endSlide = pres.addSlide();
endSlide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 5.625, fill: { color: DARK_BG } });
endSlide.addShape(pres.ShapeType.rect, { x: 0, y: 0, w: 10, h: 0.08, fill: { color: ACCENT } });
endSlide.addShape(pres.ShapeType.rect, { x: 0, y: 5.545, w: 10, h: 0.08, fill: { color: ACCENT } });
endSlide.addText("30 FLASHCARDS COMPLETED", {
  x: 1, y: 1.8, w: 8, h: 0.7,
  fontSize: 14, color: GOLD, bold: true, charSpacing: 4, fontFace: "Calibri", align: "center"
});
endSlide.addText("Cell Injury, Death\n& Adaptations", {
  x: 1, y: 2.5, w: 8, h: 1.5,
  fontSize: 36, color: LIGHT_TEXT, bold: true, fontFace: "Calibri", align: "center", valign: "middle"
});
endSlide.addText("Source: Robbins & Kumar – Pathologic Basis of Disease", {
  x: 1, y: 4.8, w: 8, h: 0.5,
  fontSize: 12, color: "607B96", fontFace: "Calibri", align: "center", italic: true
});

// =====================================================================
pres.writeFile({ fileName: "/home/daytona/workspace/cell-injury-flashcards/Cell_Injury_Flashcards_Robbins.pptx" })
  .then(() => console.log("✅ PPTX created successfully!"))
  .catch(err => console.error("❌ Error:", err));
Running Command

cd /home/daytona/workspace/cell-injury-flashcards && node make_flashcards.js

Running Command

ls -lh /home/daytona/workspace/cell-injury-flashcards/

Your flashcard deck is ready! Download it here:

Cell Injury Flashcards Robbins

Presentation · PPTX


What's inside - 30 Q&A flashcard pairs across 7 sections:
SectionTopics Covered
1. Cellular AdaptationsHypertrophy, Hyperplasia, Atrophy, Metaplasia (Q1-5)
2. Causes of Cell Injury7 major categories, Hypoxia vs Ischemia (Q6-7)
3. Reversible Cell InjuryHallmark features, ultrastructural changes (Q8-9)
4. Irreversible Injury & NecrosisNuclear changes, 6 necrosis patterns, coagulative vs liquefactive vs caseous vs fat vs fibrinoid (Q10-15)
5. Apoptosisvs Necrosis, morphology, causes, intrinsic/extrinsic pathways, BCL-2 (Q16-20)
6. Mechanisms of Cell InjuryATP depletion, ROS, Ca²⁺ accumulation, reperfusion injury (Q21-25)
7. Special TopicsAutophagy, point of no return, histology comparison, cellular aging/telomeres, p53 (Q26-30)
Format: Each card has a blue question slide followed by a white answer slide with bullet-point explanations. Key facts are bolded. Source: Robbins & Kumar - Pathologic Basis of Disease (9th Ed).
attachment
attachment

Teach this to me

This is Table 2.1 from Robbins Pathology - the classic comparison of Necrosis vs Apoptosis. Let me teach it to you properly.

🧠 Necrosis vs Apoptosis — The Big Picture First

Think of it this way:
  • Necrosis = the cell was murdered (external insult, accidental) → it swells, bursts, spills contents → causes a mess → inflammation
  • Apoptosis = the cell commits suicide (programmed, controlled) → it shrinks, packages itself neatly → gets quietly eaten → no inflammation

Feature-by-Feature Breakdown

1. 📏 Cell Size

NecrosisEnlarged (swelling)
ApoptosisReduced (shrinkage)
Why?
  • In necrosis: ATP fails → Na⁺/K⁺ pump stops → Na⁺ floods in → water follows osmotically → cell swells like a balloon and pops
  • In apoptosis: the cell actively condenses its contents before packaging itself up
Memory trick: Necrosis = N for eNlarged. Apoptosis = A for Atrophied/shrunken.

2. 🔵 Nucleus

NecrosisPyknosis → Karyorrhexis → Karyolysis
ApoptosisFragmentation into nucleosome-size fragments
Necrosis nuclear sequence (sequential stages):
  • Pyknosis = nucleus condenses → dark, shrunken blob (pykno = dense)
  • Karyorrhexis = nucleus fragments/breaks apart (rhexis = rupture)
  • Karyolysis = nuclear material dissolves/fades (lysis = dissolution)
Think: "Condense → Crumble → Clear"
Apoptosis nucleus:
  • DNA is cut at specific internucleosomal sites by caspase-activated DNase (CAD)
  • Produces the classic "DNA ladder" pattern on gel electrophoresis (180 bp fragments)
  • This is ORDERLY cleavage, not random destruction

3. 🫧 Plasma Membrane

NecrosisDisrupted
ApoptosisIntact; altered lipid orientation
Why this matters:
  • Necrosis: membrane ruptures → intracellular enzymes (LDH, troponin, AST/ALT) leak into blood → this is why we measure these as clinical markers of tissue damage (e.g., troponin in MI)
  • Apoptosis: membrane stays intact but phosphatidylserine flips to the outer leaflet — this is an "eat me" signal for macrophages → enables silent, clean removal

4. 📦 Cellular Contents

NecrosisEnzymatic digestion; may leak out
ApoptosisIntact; released in apoptotic bodies
Necrosis: Lysosomal enzymes are released → autodigestion of the cell → contents spill into surrounding tissue
Apoptosis: The cell neatly packages its contents into apoptotic bodies (membrane-bound blebs) → these are phagocytosed whole by neighboring cells or macrophages → nothing spills

5. 🔥 Adjacent Inflammation

NecrosisFrequent
ApoptosisNo
This follows directly from the above:
  • Necrosis spills contents (DAMPs - Damage-Associated Molecular Patterns) → triggers innate immune response → neutrophil infiltration, inflammation, scarring
  • Apoptosis: everything is packaged and eaten silently → immune system never "sees" the cell dying → no inflammation
Clinical pearl: This is why physiologic cell turnover (e.g., millions of intestinal epithelial cells dying daily) doesn't cause chronic inflammation — they all undergo apoptosis.

6. 🏥 Physiologic or Pathologic Role

NecrosisUsually pathologic (end result of irreversible injury)
ApoptosisOften physiologic; can be pathologic
Necrosis examples (pathologic):
  • Myocardial infarction, stroke, liver necrosis from acetaminophen
Apoptosis — Physiologic uses:
  • Embryogenesis (removal of webbing between fingers)
  • Deletion of self-reactive T-lymphocytes (immune tolerance)
  • Hormone-dependent tissue involution (endometrium after menstruation)
  • Normal cell turnover (intestinal crypt cells, neutrophils)
Apoptosis — Pathologic:
  • Viral hepatitis → Councilman bodies (apoptotic hepatocytes)
  • DNA damage → p53 activates apoptosis
  • Neurodegenerative diseases (Alzheimer's, Parkinson's)
  • Too little apoptosis → cancer (BCL-2 overexpression in follicular lymphoma)

🧩 Master Summary Table

FeatureNecrosisApoptosis
Cell size↑ Enlarged↓ Shrunken
NucleusPyknosis→Karyorrhexis→KaryolysisNucleosomal fragmentation (DNA ladder)
MembraneDisrupted (leaks enzymes)Intact (PS flips out → "eat me")
ContentsLeak out, enzymatic digestionPackaged in apoptotic bodies
InflammationYES - frequentNO
RolePathologic (usually)Physiologic + pathologic
Energy neededNo (passive)Yes (ATP-dependent)
CaspasesNot typicallyYES - central executioners

⚡ Quick High-Yield Points for Exams

  1. DNA ladder = apoptosis on gel electrophoresis (nucleosomal fragments)
  2. Troponin/LDH leak = necrosis (membrane disruption)
  3. Councilman bodies = apoptotic hepatocytes in viral hepatitis
  4. BCL-2 overexpression = blocks apoptosis = cancer survival = t(14;18) follicular lymphoma
  5. p53 activates apoptosis after DNA damage → "guardian of the genome"
  6. No inflammation with apoptosis = used for safe physiologic cell disposal
  7. The two pathways of apoptosis: Intrinsic (mitochondria/BCL-2/cytochrome c) and Extrinsic (Fas/FasL death receptors) — both activate executioner caspases 3, 6, 7
This is a shared conversation. Sign in to Orris to start your own chat.