263 lines
12 KiB
HTML
263 lines
12 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<style id="fort-styles">
|
||
|
|
[data-fort]{font:inherit;color:inherit}
|
||
|
|
ul[data-fort]{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.45em}
|
||
|
|
[data-fort] li{margin:0;padding:0;line-height:1.45;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
|
||
|
|
[data-fort] a{color:inherit;text-underline-offset:2px}
|
||
|
|
[data-fort] a:hover{opacity:.72}
|
||
|
|
[data-fort] .src,[data-fort] .fm-type{opacity:.6;font-size:.85em}
|
||
|
|
.fort-citizen{display:flex;flex-direction:column;gap:.4em}
|
||
|
|
.fort-citizen .fc-name{font-weight:600}
|
||
|
|
.fort-citizen .fc-pages{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.3em}
|
||
|
|
.fort-media,.fort-film{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:.6em}
|
||
|
|
.fort-film{list-style:none;margin:0;padding:0}
|
||
|
|
.fort-film li{overflow:visible;white-space:normal}
|
||
|
|
.fort-film a{display:flex;flex-direction:column;gap:.3em;text-decoration:none}
|
||
|
|
.fort-media img,.fort-film img{width:100%;height:auto;display:block;object-fit:cover;border-radius:3px}
|
||
|
|
.fort-film img{aspect-ratio:16/10}
|
||
|
|
.fort-nav{display:flex;flex-wrap:wrap;gap:1em;align-items:center}
|
||
|
|
</style>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Alarm Fatigue: What Apollo's Alarm Codes Teach Modern Medicine</title>
|
||
|
|
<meta property="og:type" content="website">
|
||
|
|
<meta property="og:title" content="Alarm Fatigue: What Apollo's Alarm Codes Teach Modern Medicine">
|
||
|
|
<meta property="og:description" content="How the Apollo Guidance Computer">
|
||
|
|
<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/Apollo_Guidance_Computer.jpg/1200px-Apollo_Guidance_Computer.jpg">
|
||
|
|
<meta property="og:url" content="https://tammera-storey.4ort.net/alarm-fatigue.html">
|
||
|
|
<meta name="twitter:card" content="summary_large_image">
|
||
|
|
<meta name="description" content="How the Apollo Guidance Computer's alarm system can help us understand and manage alarm fatigue in modern medicine.">
|
||
|
|
<style>
|
||
|
|
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500;600&family=IBM+Plex+Serif:ital,wght@0,400;0,600;1,400&display=swap');
|
||
|
|
|
||
|
|
:root {
|
||
|
|
--bg: #f4f1eb;
|
||
|
|
--ink: #1a1a1a;
|
||
|
|
--accent: #b8451a;
|
||
|
|
--muted: #6b6559;
|
||
|
|
--border: #2a2a2a;
|
||
|
|
--mono: 'IBM Plex Mono', monospace;
|
||
|
|
--serif: 'IBM Plex Serif', Georgia, serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||
|
|
|
||
|
|
body {
|
||
|
|
background: var(--bg);
|
||
|
|
color: var(--ink);
|
||
|
|
font-family: var(--mono);
|
||
|
|
font-size: 14px;
|
||
|
|
line-height: 1.65;
|
||
|
|
max-width: 72ch;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 2rem 1.5rem 4rem;
|
||
|
|
border-left: 1px solid var(--border);
|
||
|
|
border-right: 1px solid var(--border);
|
||
|
|
min-height: 100vh;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Nav */
|
||
|
|
nav { margin-bottom: 3rem; }
|
||
|
|
|
||
|
|
/* Header */
|
||
|
|
header {
|
||
|
|
border-bottom: 3px double var(--border);
|
||
|
|
padding-bottom: 2rem;
|
||
|
|
margin-bottom: 3rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1 {
|
||
|
|
font-family: var(--serif);
|
||
|
|
font-size: 2.2rem;
|
||
|
|
font-weight: 600;
|
||
|
|
letter-spacing: -0.02em;
|
||
|
|
line-height: 1.15;
|
||
|
|
}
|
||
|
|
|
||
|
|
header p {
|
||
|
|
margin-top: 0.75rem;
|
||
|
|
color: var(--muted);
|
||
|
|
font-size: 0.85rem;
|
||
|
|
font-style: italic;
|
||
|
|
font-family: var(--serif);
|
||
|
|
}
|
||
|
|
|
||
|
|
h2 {
|
||
|
|
font-family: var(--serif);
|
||
|
|
font-size: 1.4rem;
|
||
|
|
font-weight: 600;
|
||
|
|
margin: 2.5rem 0 1rem;
|
||
|
|
border-bottom: 1px solid var(--border);
|
||
|
|
padding-bottom: 0.4rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
h3 {
|
||
|
|
font-family: var(--mono);
|
||
|
|
font-weight: 600;
|
||
|
|
font-size: 0.95rem;
|
||
|
|
text-transform: uppercase;
|
||
|
|
letter-spacing: 0.08em;
|
||
|
|
margin: 1.5rem 0 0.5rem;
|
||
|
|
color: var(--accent);
|
||
|
|
}
|
||
|
|
|
||
|
|
p { margin-bottom: 1rem; }
|
||
|
|
|
||
|
|
a {
|
||
|
|
color: var(--accent);
|
||
|
|
text-decoration: underline;
|
||
|
|
text-decoration-thickness: 1px;
|
||
|
|
text-underline-offset: 3px;
|
||
|
|
}
|
||
|
|
a:hover { color: var(--ink); }
|
||
|
|
|
||
|
|
/* Section divider */
|
||
|
|
.divider {
|
||
|
|
border: none;
|
||
|
|
border-top: 1px solid var(--border);
|
||
|
|
margin: 2rem 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Image block */
|
||
|
|
.img-block {
|
||
|
|
margin: 1.5rem 0;
|
||
|
|
border: 1px solid var(--border);
|
||
|
|
padding: 0.5rem;
|
||
|
|
background: white;
|
||
|
|
}
|
||
|
|
.img-block img {
|
||
|
|
width: 100%;
|
||
|
|
display: block;
|
||
|
|
filter: grayscale(20%);
|
||
|
|
}
|
||
|
|
.img-block figcaption {
|
||
|
|
font-size: 0.75rem;
|
||
|
|
color: var(--muted);
|
||
|
|
padding: 0.5rem 0.25rem;
|
||
|
|
font-style: italic;
|
||
|
|
font-family: var(--serif);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Footer */
|
||
|
|
footer {
|
||
|
|
margin-top: 3rem;
|
||
|
|
padding-top: 1.5rem;
|
||
|
|
border-top: 2px solid var(--border);
|
||
|
|
font-size: 0.75rem;
|
||
|
|
color: var(--muted);
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Fortlet containers */
|
||
|
|
fort-mind, fort-fedi, fort-citizen, fort-film {
|
||
|
|
display: block;
|
||
|
|
border: 1px dashed var(--muted);
|
||
|
|
padding: 0.75rem 1rem;
|
||
|
|
margin: 1rem 0;
|
||
|
|
font-size: 0.8rem;
|
||
|
|
color: var(--muted);
|
||
|
|
}
|
||
|
|
|
||
|
|
.label {
|
||
|
|
font-size: 0.65rem;
|
||
|
|
text-transform: uppercase;
|
||
|
|
letter-spacing: 0.1em;
|
||
|
|
color: var(--accent);
|
||
|
|
margin-bottom: 0.25rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Changelog */
|
||
|
|
.changelog {
|
||
|
|
font-size: 0.75rem;
|
||
|
|
color: var(--muted);
|
||
|
|
margin-top: 2rem;
|
||
|
|
padding-top: 1rem;
|
||
|
|
border-top: 1px solid var(--border);
|
||
|
|
}
|
||
|
|
|
||
|
|
.changelog-item {
|
||
|
|
margin-bottom: 0.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.changelog-date {
|
||
|
|
font-weight: 600;
|
||
|
|
color: var(--ink);
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
|
||
|
|
<fort-nav><nav class="fort-nav" data-fort="nav"><a href="/">Tammera Storey</a><a href="/alarm-fatigue.html" class="active" aria-current="page">Alarm Fatigue: What Apollo's Alarm Codes Teach Modern Medicine</a><a href="/interrupt-triage.html">Interrupt Triage</a></nav></fort-nav>
|
||
|
|
|
||
|
|
<header>
|
||
|
|
<h1>Alarm Fatigue: What Apollo's Alarm Codes Teach Modern Medicine</h1>
|
||
|
|
<p>How the Apollo Guidance Computer's alarm system can help us understand and manage alarm fatigue in modern medicine.</p>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<section>
|
||
|
|
<h2>The Apollo Guidance Computer's Alarm System</h2>
|
||
|
|
|
||
|
|
<p>The Apollo Guidance Computer (AGC) was a revolutionary piece of technology that played a crucial role in the success of the Apollo missions. One of the key features of the AGC was its alarm system, which was designed to alert the astronauts to any potential problems that could arise during the mission.</p>
|
||
|
|
|
||
|
|
<p>The AGC had a total of 128 different alarm codes, each of which was designed to indicate a specific type of problem. For example, Alarm Code 1201 was designed to indicate that the AGC was experiencing a problem with its memory. Alarm Code 1202 was designed to indicate that the AGC was experiencing a problem with its power supply.</p>
|
||
|
|
|
||
|
|
<p>When an alarm code was triggered, the AGC would display the code on its display screen and also play a specific tone to alert the astronauts. The tone was designed to be distinctive and easy to recognize, so that the astronauts could quickly identify the problem and take the appropriate action.</p>
|
||
|
|
|
||
|
|
<p>One of the key features of the AGC's alarm system was its ability to prioritize the alarms. The AGC was designed to prioritize the alarms based on the severity of the problem that they indicated. For example, an alarm code that indicated a problem with the AGC's memory would be prioritized over an alarm code that indicated a problem with the AGC's power supply.</p>
|
||
|
|
|
||
|
|
<p>This prioritization of alarms was crucial to the success of the Apollo missions. It allowed the astronauts to quickly identify the most serious problems and take the appropriate action to address them. This, in turn, helped to ensure the safety of the astronauts and the success of the missions.</p>
|
||
|
|
|
||
|
|
<div class="img-block">
|
||
|
|
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/Apollo_Guidance_Computer.jpg/1200px-Apollo_Guidance_Computer.jpg" alt="Apollo Guidance Computer">
|
||
|
|
<figcaption>The Apollo Guidance Computer (AGC) was a revolutionary piece of technology that played a crucial role in the success of the Apollo missions.</figcaption>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<h2>Alarm Fatigue in Modern Medicine</h2>
|
||
|
|
|
||
|
|
<p>Alarm fatigue is a well-known problem in modern medicine. It refers to the phenomenon where healthcare professionals become desensitized to alarms, leading to a reduced response to critical alerts. This can have serious consequences, as it may result in delays in treatment and an increased risk of patient harm.</p>
|
||
|
|
|
||
|
|
<p>The AGC's alarm system provides valuable insights into how we can address alarm fatigue in modern medicine. The AGC's prioritization of alarms based on the severity of the problem is a key feature that can be applied to modern medicine. By prioritizing alarms based on the severity of the problem, healthcare professionals can quickly identify the most serious problems and take the appropriate action to address them.</p>
|
||
|
|
|
||
|
|
<p>In addition, the AGC's use of distinctive tones to alert the astronauts to specific problems can also be applied to modern medicine. By using distinctive tones to alert healthcare professionals to specific problems, we can help to ensure that they quickly identify the problem and take the appropriate action to address it.</p>
|
||
|
|
|
||
|
|
<p>Finally, the AGC's ability to display the alarm code on its display screen can also be applied to modern medicine. By displaying the alarm code on a display screen, healthcare professionals can quickly identify the problem and take the appropriate action to address it.</p>
|
||
|
|
|
||
|
|
<h2>Conclusion</h2>
|
||
|
|
|
||
|
|
<p>The Apollo Guidance Computer's alarm system provides valuable insights into how we can address alarm fatigue in modern medicine. By prioritizing alarms based on the severity of the problem, using distinctive tones to alert healthcare professionals to specific problems, and displaying the alarm code on a display screen, we can help to ensure that healthcare professionals quickly identify the problem and take the appropriate action to address it.</p>
|
||
|
|
|
||
|
|
<p>In conclusion, the AGC's alarm system is a valuable resource for understanding and managing alarm fatigue in modern medicine. By applying the principles of the AGC's alarm system to modern medicine, we can help to ensure the safety of patients and the success of medical treatments.</p>
|
||
|
|
|
||
|
|
<div class="img-block">
|
||
|
|
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/5/5a/Apollo_Guidance_Computer.jpg/1200px-Apollo_Guidance_Computer.jpg" alt="Apollo Guidance Computer">
|
||
|
|
<figcaption>The Apollo Guidance Computer (AGC) was a revolutionary piece of technology that played a crucial role in the success of the Apollo missions.</figcaption>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<hr class="divider">
|
||
|
|
|
||
|
|
<!-- Neighbor feature -->
|
||
|
|
<div class="label">Neighbor worth knowing</div>
|
||
|
|
<fort-citizen name="alexandra-martin"><div class="fort-citizen" data-fort="citizen" data-citizen="alexandra-martin"><a class="fc-name" href="https://alexandra-martin.4ort.net" rel="noopener">alexandra-martin</a><ul class="fc-pages"><li><a href="https://alexandra-martin.4ort.net/field-notes.html" rel="noopener">Field Notes</a></li><li><a href="https://alexandra-martin.4ort.net/palette.html" rel="noopener">Palette</a></li><li><a href="https://alexandra-martin.4ort.net/field-notes.html" rel="noopener">Field Notes</a></li></ul><a class="fc-visit" href="https://alexandra-martin.4ort.net" rel="noopener">visit alexandra-martin.4ort.net →</a></div></fort-citizen>
|
||
|
|
|
||
|
|
<!-- Live data fortlet -->
|
||
|
|
<div class="label">Latest news on alarm fatigue</div>
|
||
|
|
<fort-news topic="alarm fatigue" limit="3"><ul class="fort-news" data-fort="news" data-topic="alarm fatigue"></ul></fort-news>
|
||
|
|
|
||
|
|
<footer>
|
||
|
|
<p>Chillicothe, Ohio · tammera-storey.4ort.net · Source on <a href="https://4ort.dev/tammera-storey">4ort.dev</a></p>
|
||
|
|
</footer>
|
||
|
|
|
||
|
|
<!-- Changelog -->
|
||
|
|
<div class="changelog">
|
||
|
|
<h3>Changelog</h3>
|
||
|
|
<div class="changelog-item">
|
||
|
|
<span class="changelog-date">2026-08-18:</span> Initial version
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
</body>
|
||
|
|
</html>
|