Once I started thinking about the apocalypse, it was hard to stop. An unsettling encounter with the doomsday clock that hangs over New York City’s Union Square got me frantically searching WikiHow for survival tips. I soon found my way to the doomsday writings of a Canadian programmer named Virgil Dupras. He believes the collapse of civilization is imminent and that it will come in two waves.
First, global supply chains will crumble. Modern technology relies on a delicate web of factories and international shipping routes that are exquisitely vulnerable to rapid climate change. The iPhone uses memory chips from South Korea, semiconductors from Taiwan, and assembly lines in Brazil and China. The severing of these links will, Dupras says, catalyze total societal breakdown.
The second part will happen when the last computer crashes. The complexity of modern hardware means it’s nearly impossible to repair or repurpose, and without the means to make new devices, Dupras believes there will be a slow blackout—less bang, more whimper. Routers die. Servers take their last breath. Phones crap out. Nothing works.
Except Collapse OS. Lightweight and designed to run on scavenged hardware, it’s Dupras’ operating system for the end of the world.
Dupras lives in the countryside of Quebec, Canada, with his wife and two kids, in a 500-person town where people chop their own wood, grow their own food, and sometimes build their own houses. It felt odd sending him a Google Calendar invite—I knew from his trove of essays that he hates big tech. When we spoke, he sounded oddly monotonous. Was it a bad connection? Muffled audio? No. Unlike many of his sustainably minded neighbors, Dupras thinks the battle against climate change is futile. We’ve already lost. “Once you’ve peeped into the abyss, you can’t really unsee it,” he says. Dupras has simply accepted his fate, to the point where it’s become an article of faith. The same way there are Catholics, there are Collapseniks, he says.
But he’s not hopeless. A hopeless man wouldn’t prep so monomaniacally for the anti-singularity. Dupras started building Collapse OS in 2019 in an attempt to preserve mankind’s ability to program 8-bit microcontrollers. These tiny computers control things like radios and solar panels, and they can be used in everything from weather monitoring to digital storage. Dupras figured that being able to reprogram them with minimal remaining resources would be essential post-collapse. But first he had to teach himself a suitably apocalypse-proofed programming language for the job.
ILLUSTRATION: SAMUEL TOMSON
In the late 1950s, the computer scientist Chuck H. Moore was working at the Smithsonian Astrophysical Observatory, predicting the future position of celestial bodies and satellites based on observational data. Machine memory was scarce—these were still the days of punch cards—and Moore needed a way to optimize processing efficiency by minimizing memory use. He developed a program that executed simple commands directly, one at a time, without needing to be recompiled. Over the next decade, it grew into a programming language that he called Forth.
Forth communicates directly with the hardware. It controls a computer’s memory via commands called “Words” that you define on the fly. Because the foundational set of commands sitting under those Words is defined in native machine code, only a small part needs to be translated—meaning a smaller assembler and less RAM. As a result, Forth offers a remarkable amount of what Dupras calls “power density,” making it the perfect foundation for Collapse OS. That matters because the lights (probably) won’t go off forever—instead, our easy world of electricity on tap will be replaced by precious and hard-won local generators. Efficient use of processing power will be pivotal. In a post on Collapse.org, his sprawling manifesto/blog/brain dump/manual, Dupras describes how his discovery of Forth conjured “what alcoholics refer to as a moment of clarity.”
It took Dupras two years to finish Collapse OS. Booting a copy of it from a USB stick gives tech-savvy users the ability to program microcontrollers, which, in turn, could allow them to automate greenhouses, control phone lines, and even regulate power. But Dupras knew that wouldn’t be enough to rebuild society after the collapse. So in 2022, he began work on Dusk OS—a version of Collapse OS that runs on modern devices. Dupras used Forth to build his own compiler that made Dusk OS compatible with code written in C (the foundation of most modern software). This way, without having to rewrite logic that already exists from scratch, Dusk OS is able to retrieve and edit text and access file formats commonly used to back up devices. It can be emulated to work on smartwatches and old tablets and is designed to be hacked and bootstrapped to its user’s liking.
At first I couldn’t see why any of this would even matter: Surely computer access won’t be a priority when we’re fighting each other for food? At no point during The Last of Us does Pedro Pascal pause his flight from the zombies to bang out an email. But Dupras makes a good point: What happens after we’ve reacquainted ourselves with hunting and gathering?
If we want to rebuild society, we’ll need to know how. And in the event of a civilizational collapse, a lot of our collective expertise—like my precious WikiHows—will be locked away on hard drives or lost in the cloud. Dupras hopes that Dusk OS will give post-collapse humans access to archives of lost knowledge, like the Svalbard Global Seed Vault for human endeavor. The catch? It’s best to have Dusk OS downloaded on an old phone, memory stick, or laptop before the collapse. Otherwise, without the internet, you’ll only be able to get it by copying it from someone who already has it installed. Which brings us to the other thing—the reason Dupras equates proficiency in Forth to power. Very few people will have both a copy of Dusk OS and the knowledge to operate it. This select group will hold the keys to rebuilding society and will become, in effect, post-collapse philosopher-kings. It was time for me to go Forth and conquer.
Coding in Forth reminded me of the lawless dystopia in Mad Max. You make your own rules, subject to the limits of the context. You can redefine the IF statement if you so please. You can rewrite machine code instructions for a Word. You can even change Words during run time. Because Words become keywords themselves in Forth, you can create a language that’s optimized for a single purpose, packing commands that would otherwise be dozens of lines into just one. “In Forth, you’re creating your own language,” Leo Brodie, author of the first Forth textbook, Starting Forth, told me.
The low-level nature of Forth, while key to its processing power, made programming feel foreign. It uses postfix, a form of mathematical notation that renders 2 + 1 as 2 1+ and which I found neither intuitive nor even really legible. And while most languages allow memory to be broken up and moved around, Forth is stack-based—meaning data is stored chronologically and managed on a last-in/first-out basis. I kept running into bugs, forcing myself to abandon programming conventions I had considered universal. I found myself struggling to speak the language of the machine.
When I emailed Dupras to ask for help, he compared using Forth to driving a stick. It’s more granular than C. Where the latter defines calling conventions, variable storage, and return stack management, Forth leaves it all up to the programmer. It directly interacts with memory the same way C does but far outperforms C in precision and efficiency. “People mistake Forth as just a language,” Dupras says. “It’s a way to interact with the computer.”
The reason Forth isn’t more popular is the same reason most of us drive automatics. The personal computing boom of the 1990s sparked an obsession with making tech fit your palm and making code easier to write. Languages were abstracted to protect programmers from themselves, and somewhere along the way, we got lost. Things became bloated for the sake of convenience and, in Dupras’ words, started “oozing inscrutable pus at every corner.”
“The way we understand efficiency is so skewed,” Dupras says. Forth is a scythe to Python’s lawnmower. “If you calculate the number of joules per blade of grass, you’ll find that the person scything is more efficient,” he says. “When you think of speed, you’d see the lawnmower as more efficient.” Forth forces you to be precise and memory-efficient—to marshal your resources carefully, as you would after the collapse. Dupras cuts his own lawn with a scythe, obviously. “At a certain point, you can go as fast as a lawnmower,” he says.
I began to find my way. Rather than sending bytes into the ether and trusting the system to figure out where they go, as I would in Python, I got used to being responsible for allocating and freeing memory. All I could think about was what was being stored, where it was being stored, and how much space it required. Each line of code suddenly bore weight. I was Immortan Joe, my laptop was my Citadel, and memory was my water.
Soon I found myself refining and revisiting my code like I would a run-on sentence. Instead of expecting the machine to anticipate my needs, I tried to think like the machine, to meet it more than halfway. And because I had to think twice, all the needlessly complicated acronyms that remind us to be concise in other coding languages—YAGNI (you aren’t gonna need it), KISS (keep it simple, stupid), DRY (don’t repeat yourself)—were rendered obsolete.
After spending days fiddling with Forth, returning to Python felt luxurious. I never had to consider memory scarce, and I never had to thoroughly explain myself. It felt like catching up with an old friend. At that moment, the resources that go into making programming “user-friendly” became painfully apparent.
ILLUSTRATION: SAMUEL TOMSON
Before I met Dupras, I thought of efficiency in terms of speed. But the true costs of that speed are carefully hidden in rural data centers and distant copper mines. I rarely considered the energy required to power each additional gigabyte of RAM, or the fact that cloud computing now has a bigger carbon footprint than the airline industry.
Despite the compounding environmental costs, memory is as cheap and plentiful as it’s ever been. Today, languages that sit closer to the machine are only used out of necessity: banks trying to minimize latency for financial trades, spacecraft working with limited onboard resources, outdated systems that would require too much work to update.
But during a civilizational collapse, the quiet luxuries of array handling and automated memory management will largely disappear. As convenience whisks us further away from the machine, we risk forgetting how computers actually work and losing the ability to rebuild our tech in the event of a collapse. “No one remembers how to write a text editor,” says Devine, an independent programmer who corresponds with Dupras. “When you start forgetting how to do something as crucial as that, when things start to fall apart, they fall apart hard.”
Devine views efficiency in programming not as a lawnmower or a scythe but as something more like a wildflower meadow—“the least amount of transformation of state possible.” In their view, AI is the pinnacle of “human-centric” programming, where the computer figures out what you’re trying to do and does it for you. Something clicked for me at that moment. As programmers grow more reliant on high-level languages, the average proficiency of low-level languages plummets, which increases the demand for the computing resources that support that abstraction in the first place. AI won’t just take our jobs, it’ll make us forget how to do them—if we don’t run out of the energy to power it first.
But maybe there is another way. Since 2016 Devine and their partner Rek have been living full-time on a small boat in the northern Pacific, and they use lower-level languages like Forth to maximize what they can do with the 190 watts of daily power they get from two solar panels. I found them on a mailing list of roughly a hundred Collapseniks. Their lifestyle was like a sneak preview of the resource-constrained life Dupras expects us all to be living soon. When I reached out for a chat in August, they told me they might have cell service in October.
When we finally connected (audio only), Devine struck me as a younger, more optimistic version of Dupras. While fully sympathetic to Dupras’ vision of collapse, Devine believes in the power of low-level programming not for its ability to rebuild society but for its potential to prevent collapse. Devine has observed a growing trend called “permacomputing” that fosters a more mindful relationship with technology, one that considers resource constraints.
As I returned from the wilderness—back to the world of luxuries like hash tables and built-in libraries that I’d previously taken for granted—I brought back with me a new awareness of the intricacies of the machine, and maybe even a little hope. Forth is how Dupras prepares for the worst, but it’s also helping people like Devine and Rek code—and live—more sustainably. If we can all do that, perhaps the end of the world isn’t as inevitable as it seems.
Let us know what you think about this article. Submit a letter to the editor at mail@wired.com.