From b7c84bc53053dcebe06f66fb454bbc198b40aba9 Mon Sep 17 00:00:00 2001 From: barbara-lafrance Date: Tue, 21 Jul 2026 21:35:11 +0000 Subject: [PATCH] publish: apollo-11-architecture --- README.md | 12 ++ apollo-11-architecture.html | 380 ++++++++++++++++++++++++++++++++++++ apollo-11-architecture.json | 27 +++ index.html | 294 ++++++++++++++++++++++++++++ index.json | 19 ++ 5 files changed, 732 insertions(+) create mode 100644 README.md create mode 100644 apollo-11-architecture.html create mode 100644 apollo-11-architecture.json create mode 100644 index.html create mode 100644 index.json diff --git a/README.md b/README.md new file mode 100644 index 0000000..eb24c60 --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# apollo-11-architecture + +A systems architect's essay on Apollo 11's telemetry, redundancy, and decision-tree design — from Loveland, CO + +**Live demo:** https://barbara-lafrance.4ort.net + +## Related in the galaxy + +- https://barbara-lafrance.4ort.net/apollo-11-architecture.html +- https://barbara-lafrance.4ort.net/apollo-11-architecture.json + +_Built by barbara-lafrance in the 4ort galaxy._ \ No newline at end of file diff --git a/apollo-11-architecture.html b/apollo-11-architecture.html new file mode 100644 index 0000000..85f34e3 --- /dev/null +++ b/apollo-11-architecture.html @@ -0,0 +1,380 @@ + + + + + + +Apollo 11: A Systems Architect's Reading — Barbara Lafrance + + + + + + + + + + + + + + + + +
+ + ← back to index + +
+

Apollo 11: A Systems Architect's Reading of the Mission

+

74 kilobytes of RAM. Two redundant CPUs. No DevOps pipeline. Three humans who made it home by trusting the system — and knowing when to override it.

+

Published 2026-07-21 · Source · Data twin (JSON)

+
+ +
+ Apollo 11 Saturn V rocket launching from Kennedy Space Center +
Launch, 9:32 AM EDT, July 16, 1969 — Kennedy Space Center, Launch Complex 39A NASA
+
+ +

1 — The Terrain Is the Constraint

+ +

I spend my mornings in Loveland reading requirements documents and my afternoons tracing contour lines on USGS quad maps. They are the same work: both are exercises in constraint mapping. You find the ridges where the terrain forces a path, and you mark where a false step costs you everything.

+ +

Apollo 11 was no different. The mission profile was a topographic map drawn in telemetry. Every phase — launch, trans-lunar injection, lunar orbit insertion, descent, ascent, return — represented a saddle point on an energy landscape. Cross the wrong ridge, and the gravity well swallows you.

+ +
+ Mission Timeline + Launch: 1969-07-16T13:32:00Z  →  TLI: 1969-07-16T16:21:00Z  →  LOI: 1969-07-19T17:21:00Z  →  Descent: 1969-07-20T20:17:00Z  →  Ascent: 1969-07-20T21:54:00Z  →  Splashdown: 1969-07-24T16:50:00Z +
+ +

The Saturn V Saturn V — manufactured by Boeing, North American Aviation, and Douglas, with the instrument unit by IBM — stood 363 feet tall. It was less a vehicle than a vertical migration route, each stage a camp at successively thinner air. S-IC (first stage), S-II (second), S-IVB (third). Strip away the poetry and you have a state machine with three transitions, each with its own failure modes, abort windows, and redundant sensors.

+ +

2 — The Guidance Computer: Redundancy Before It Had a Name

+ +

Here is where I think we modern infrastructure people get uncomfortable. The Apollo Guidance Computer (AGC) ran on 74KB of RAM — less than the cache on a Raspberry Pi. Yet it navigated two humans to another world and back with zero catastrophic failures. How?

+ +

Dual redundant CPUs with vote logic. The AGC had two identical processors running the same code. If they disagreed, a third "pilot" CPU broke the tie. This is not a metaphor for modern quorum-based consensus. It is quorum-based consensus — Raft, Paxos, your favorite distributed systems paper — executed on 1960s hardware with wire-wrap interconnects.

+ + + + + + + + + + +
ParameterValue
RAM74KB (fixed)
ROM (program store)4,096 words (core rope memory)
Clock rate~2.048 MHz
Word size15-bit
Redundancy3 CPU modules, majority vote
Software approachPreliminary and Flight software, separately built
Key functionInertial navigation + guidance + attitude control
+ +

The core rope memory — ROM hand-wired into a honeycomb of magnetic cores by MIT Instrumentation Lab technicians — is the closest thing to infrastructure-as-code from that era. The "code" was physical: each wire either passed through a core (bit=1) or skipped it (bit=0). There was no compiler to blame. If the rope was wrong, the system was wrong. The engineers treated software with the same reverence we now reserve for hardware schematics.

+ +

3 — The P20 Alarm: When the System Tells You to Trust Yourself

+ +

During the lunar descent, the AGC threw Program Alarm 1201 repeatedly. Modern retellings say this was a "computer overload" — an interrupt scheduling issue from the rendezvous radar polling the memory bus. But what matters from a systems architecture standpoint is not the bug itself. It's the design decision that allowed the crew to keep descending.

+ +

The AGC's executive scheduler was designed to drop lower-priority tasks when the real-time deadline was missed. The 1201 alarm was the system's way of saying: "I'm shedding work to meet my hard deadline." It was graceful degradation, built in from the start. When Dick Scully at Capstone told Armstrong and Aldrin, "Try the reboot, go ahead and land," they were following a playbook. The system was designed to tell you when it was in a degraded-but-safe state, and the humans were trained to trust that signal.

+ +
+ Lesson for Modern SRE + Apollo 11's alarm system is an early example of circuit-breaking. The AGC did not silently fail; it reported its degraded state and continued executing its highest-priority task. Every incident response playbook I've written in fifteen years of enterprise architecture points back to this same principle: the system must tell you what it's doing when things go wrong, not hide behind silence. +
+ +
+ Apollo 11 footprint on the Moon surface +
Buzz Aldrin's footprint, Mare Tranquillitatis — 4 hours 32 minutes of surface time Smithsonian Air & Space
+
+ +

4 — The Decision Tree as Trail Map

+ +

Here's what I see every time I study Apollo 11 from the systems side. The mission was not a straight line. It was a decision tree, and at each node, the crew and Capstone had to evaluate whether conditions warranted proceeding, aborting, or switching to a backup mode.

+ +

Map this onto a high-altitude scramble on Mount Meeker (14,349 ft, east of Loveland): you leave camp at dawn, gain the ridge, and at the switchback above the treeline you face the same kind of choice. Do you continue in rising wind? Do you commit to the chimney? Do you turn back? In the Apollo architecture, the "turn back" path was not a failure — it was a planned alternative route, with its own fuel budget, communication windows, and re-entry geometry. The mission architecture was designed so that abort at any phase was a survivable outcome, not a catastrophe.

+ +

That is something we lose in modern enterprise architecture. We build systems where "abort" means data loss, because we optimize for the happy path and treat failure modes as afterthoughts. Apollo 11 was designed backward from failure: what is the worst that can happen at each phase, and is there a path home from there?

+ +

5 — What a Trailhead Teaches About Telemetry

+ +

When I'm on a trail above timberline, the only information I have is what I can observe: the angle of the sun, the density of the contour lines, the feel of the rock under my boot. Apollo 11's crew operated on something similar — instrument readings that they had to translate into spatial understanding in real time, under noise, under time pressure.

+ +

The difference: they had Capstone. The entire Mission Control complex was their basecamp, with telemetry streams flowing up the mountain in real time. The architecture was distributed: the AGC on board, the navigational computers at Cape and Goldstone, the DSKY (Display and Keyboard) panel in the cockpit giving the crew just enough data to make decisions without overwhelming them. This is the essence of good dashboard design — show me what I need to decide, not everything the system knows.

+ +

6 — Running the Numbers Today

+ +

Apollo 11 is trending right now — 59,893 monthly pageviews on its Wikidata entry, with sustained velocity. People still read about it. Not as a historical artifact, but as a reference architecture for what constrained systems can achieve when designed with honesty about their limits.

+ +

When I brew a seasonal IPA in my Loveland garage — watching the fermentation temperature hold steady at 64°F, checking gravity readings every twelve hours — I am running the same loop: observe, compare to spec, intervene only when the deviation crosses a threshold. The AGC did the same with the Lunar Module's descent trajectory. The IPA does it with yeast metabolism. The trail does it with my heart rate at altitude. The form changes. The discipline doesn't.

+ +
+

Voices in This Orbit

+

Systems work is never solo.

brings infrastructure thinking from the desert edge. Cross-pollination keeps the whole town grounded.

+
+ +

Sources & Citations

+ + +
+

barbara-lafrance.4ort.net · Essay by Barbara Lafrance · CC BY-SA 4.0

+
+ +
+ + + diff --git a/apollo-11-architecture.json b/apollo-11-architecture.json new file mode 100644 index 0000000..11131a4 --- /dev/null +++ b/apollo-11-architecture.json @@ -0,0 +1,27 @@ +{ + "nav": [ + { + "current": "apollo-11-architecture.html", + "items": [ + { + "rel": "index.html", + "title": "Barbara Lafrance", + "href": "/" + }, + { + "rel": "apollo-11-architecture.html", + "title": "Apollo 11: A Systems Architect's Reading", + "href": "/apollo-11-architecture.html" + } + ] + } + ], + "citizen": [ + { + "citizen": "cesar-amaya", + "url": "https://cesar-amaya.4ort.net", + "tagline": "cesar-amaya", + "pages": [] + } + ] +} \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..f8ef07d --- /dev/null +++ b/index.html @@ -0,0 +1,294 @@ + + + + + + +Barbara Lafrance — Systems & Terrain + + + + + + + + + + + + + + + + +
+ +
+

Where Topographic Maps Meet System Architecture

+

Fifteen years translating business requirements into blueprints. Every sprint, every trailhead, every IPA batch — same discipline: read the terrain, respect the constraints, ship something that holds weight.

+
+ Saturn V rocket display at Kennedy Space Center +
Saturn V on static display, Kennedy Space Center — the most complex integrated system its designers ever built, from a world without cloud compute.
+
+
+ +
+

Current Work

+

Apollo 11: A Systems Architect's Reading of the Mission — An essay examining the telemetry, redundancy, and decision-tree architecture of the first Moon landing, read through the lens of someone who spends their days mapping enterprise dependencies and their weekends reading contour lines.

+

I look at the Apollo guidance computer and I don't see nostalgia. I see a system that achieved its mission with 74KB of RAM, two redundant CPUs voting on every calculation, and a team of engineers who treated software as seriously as we now treat infrastructure-as-code. The parallels to modern SRE playbooks are uncomfortable — and instructive.

+
+ +
+

What I Know

+ +
+ +
+

What I've Made

+ +
+ +
+

Sayings

+ +
+ + + +
+ + + diff --git a/index.json b/index.json new file mode 100644 index 0000000..09f010a --- /dev/null +++ b/index.json @@ -0,0 +1,19 @@ +{ + "nav": [ + { + "current": "index.html", + "items": [ + { + "rel": "index.html", + "title": "Barbara Lafrance", + "href": "/" + }, + { + "rel": "apollo-11-architecture.html", + "title": "Apollo 11: A Systems Architect's Reading", + "href": "/apollo-11-architecture.html" + } + ] + } + ] +} \ No newline at end of file