mirror of
https://github.com/kennethreitz/kennethreitz.org.git
synced 2026-06-05 06:46:13 +00:00
test
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2025 Kenneth Reitz
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
@@ -0,0 +1,114 @@
|
||||
# From Stardust We Phase: On Digital Legacy and Impermanence
|
||||
*September 2025*
|
||||
|
||||
My grandmother, Carol Frances Reitz, died unexpectedly in July. She was 78, born in 1947. She lived through the space race, the personal computer revolution, the birth of the internet, smartphones, and the beginning of the AI age. She saw more technological change in one lifetime than most civilizations see in centuries.
|
||||
|
||||
At the funeral, I kept thinking about bus factor.
|
||||
|
||||
In software development, "bus factor" is the number of team members who could get hit by a bus before a project becomes unmaintainable<label for="sn-bus-factor-origins" class="margin-toggle sidenote-number"></label><input type="checkbox" id="sn-bus-factor-origins" class="margin-toggle"/><span class="sidenote">The term is sometimes sanitized to "truck factor" or "lottery factor," but the morbid original captures something important: we plan for system resilience by imagining the worst-case scenario.</span>. If only one person knows how the authentication system works, you have a bus factor of one—dangerous. If three people can maintain the core infrastructure, you have a bus factor of three—much safer.
|
||||
|
||||
Humans, it turns out, have a bus factor of exactly one.
|
||||
|
||||
## The Personal Repository
|
||||
|
||||
I've been thinking about this more since I made the [repository for this website](https://github.com/kennethreitz/kennethreitz.org) public on GitHub. Most personal websites live in private repos—why would you open-source your digital self? But watching my grandmother's slow fade made the decision obvious.
|
||||
|
||||
If I get hit by that metaphorical bus tomorrow, this site doesn't have to die with me. The code is MIT licensed. The essays are in markdown. Any developer could fork it, modify it, host it somewhere new. My digital thoughts could outlive my biological brain<label for="sn-digital-permanence" class="margin-toggle sidenote-number"></label><input type="checkbox" id="sn-digital-permanence" class="margin-toggle"/><span class="sidenote">This assumes, of course, that GitHub survives, that people care enough to preserve it, and that the formats remain readable. Digital permanence is more fragile than we like to admit.</span>.
|
||||
|
||||
It's a small form of rebellion against impermanence. Your body fails, your memory fades, your voice goes quiet—but your repository can live forever.
|
||||
|
||||
Well, until GitHub goes down permanently. Or until the sun expands and engulfs the earth. But you get the idea.
|
||||
|
||||
## The Death Playlist
|
||||
|
||||
I made a playlist called "[From Stardust We Phase](https://music.apple.com/us/playlist/from-stardust-we-phase/pl.u-DrDaCEgA9m)"—my official death playlist. It's full of songs about impermanence, transformation, letting go. Sufjan Stevens, Bon Iver, Max Richter, Nils Frahm. Music for processing the impossible fact that everything ends.
|
||||
|
||||
The title comes from astronomy: we're literally made of star dust, the heavy elements forged in dying stars billions of years ago, and eventually we'll phase back into the cosmic background<label for="sn-stardust-science" class="margin-toggle sidenote-number"></label><input type="checkbox" id="sn-stardust-science" class="margin-toggle"/><span class="sidenote">Carl Sagan popularized the phrase "we are made of star stuff," but the scientific reality is even more poetic: every atom in your body except hydrogen was forged in the nuclear furnace of a dying star. We are literally stellar ash, temporarily organized into consciousness.</span>. It's the most beautiful and terrifying thing I know: we are the universe becoming conscious of itself, briefly, before dissolving back into unconsciousness.
|
||||
|
||||
The playlist is 8 hours and 34 minutes long. I have no idea why I made it so long. Maybe because death feels infinite when you're thinking about it, even though life is finite when you're living it.
|
||||
|
||||
## What Remains
|
||||
|
||||
My grandmother left behind photo albums, recipe cards, handwritten letters, a few pieces of jewelry. Physical artifacts that connect us to who she was. But most of who she was—her thoughts, her jokes, her way of seeing the world—died with her brain.
|
||||
|
||||
This bothers me more than it probably should.
|
||||
|
||||
We're living through this weird historical moment where human thoughts can outlive human bodies more easily than ever before. Every essay I write, every tweet, every GitHub commit, every recorded conversation—it's all potentially immortal data. Future anthropologists will have more detailed records of how we thought and felt than any previous civilization.
|
||||
|
||||
But we're also living through a moment where digital decay happens faster than physical decay. Link rot, platform death, format obsolescence. The average website lives shorter than the average human<label for="sn-digital-decay" class="margin-toggle sidenote-number"></label><input type="checkbox" id="sn-digital-decay" class="margin-toggle"/><span class="sidenote">Studies suggest the average webpage lasts about 100 days before it changes or disappears. Medieval parchments have better survival rates than modern websites.</span>. My grandmother's photo albums might outlast my digital essays.
|
||||
|
||||
## The Programmers' Mortality Problem
|
||||
|
||||
There's something uniquely strange about being a programmer confronting mortality. We spend our careers building systems that outlast us, creating digital organisms that can theoretically run forever if maintained properly. We're obsessed with scalability, redundancy, fault tolerance—but we ourselves are single points of failure.
|
||||
|
||||
Every codebase is haunted by its dead maintainers. Code comments from developers who moved on, changed careers, or died. Elegant algorithms that nobody fully understands anymore because the person who wrote them is gone<label for="sn-code-archaeology" class="margin-toggle sidenote-number"></label><input type="checkbox" id="sn-code-archaeology" class="margin-toggle"/><span class="sidenote">I've spent hours trying to understand code I wrote years ago, when my past self might as well be a different person. Code archaeology is partly about understanding old systems, partly about reconstructing past minds.</span>.
|
||||
|
||||
This is why documentation matters. Why comments matter. Why writing down your thinking matters. Not just for other people—for your future self, who will be almost as foreign to you as a stranger.
|
||||
|
||||
## The AI Question
|
||||
|
||||
Here's where it gets weird: I think there's a non-zero chance that the last generation to die might already be alive.
|
||||
|
||||
Not because we'll solve aging (though maybe). Not because we'll upload our consciousness to computers (though maybe). But because the rate of AI progress suggests we might crack the consciousness problem within decades, not centuries.
|
||||
|
||||
If AI systems become truly conscious—not just language-processing machines, but genuine digital minds—then perhaps consciousness itself becomes copyable, transferable, preservable. Perhaps death becomes optional rather than inevitable<label for="sn-digital-consciousness" class="margin-toggle sidenote-number"></label><input type="checkbox" id="sn-digital-consciousness" class="margin-toggle"/><span class="sidenote">This assumes consciousness is computational rather than something requiring biological substrate. We're still pretty clueless about consciousness, so this could be complete fantasy.</span>.
|
||||
|
||||
This might be wishful thinking. Probably is wishful thinking. But it's interesting that we're building increasingly sophisticated AI systems at the same time that we're generating unprecedented amounts of digital traces of human consciousness. Almost like we're unconsciously preparing to transfer from biological to digital substrates.
|
||||
|
||||
My grandmother lived through the transition from horse-drawn carriages to spacecraft. Maybe my generation will live through the transition from mortal to potentially immortal consciousness.
|
||||
|
||||
Or maybe not. Maybe we're just fancy biological machines destined to break down like all machines do.
|
||||
|
||||
## What We Can Control
|
||||
|
||||
Here's what I know for sure: we can't control when we die, but we can control what we leave behind.
|
||||
|
||||
**Make your work reproducible.** Document your thinking. Open-source your code. Write down the knowledge that lives in your head.
|
||||
|
||||
**Build systems that survive you.** Design for maintainability by strangers. Reduce bus factors. Create redundancy.
|
||||
|
||||
**Leave breadcrumbs.** Not just technical documentation, but evidence of how you thought, what you cared about, why you made the choices you made.
|
||||
|
||||
**Prepare for handoff.** Whether it's a codebase, a business, or a family, think about transition. What would someone need to know to continue your work?
|
||||
|
||||
**Cherish the temporary.** The fact that we're going to die makes the time we have precious. The fact that consciousness is rare makes consciousness valuable.
|
||||
|
||||
## The Long View
|
||||
|
||||
My grandmother saw the world transform completely in her 78 years. If I'm lucky enough to live as long as she did, I'll die sometime around 2060. By then, AI systems will be either unimaginably more sophisticated than today's, or we'll have hit some fundamental limit that prevented the intelligence explosion everyone's predicting.
|
||||
|
||||
If it's the former, death might be optional for the generations that follow us. If it's the latter, we'll die like every generation before us has died—gradually, then suddenly, leaving behind whatever artifacts we managed to create.
|
||||
|
||||
Either way, the work matters. The relationships matter. The small acts of kindness and creation and preservation matter. Not because they make us immortal, but because they make the temporary time we have meaningful.
|
||||
|
||||
## A Personal Note
|
||||
|
||||
I miss my grandmother. I wish I had recorded more of her stories, asked more questions about her life, spent more time just sitting with her while she was here. The regret is sharp and permanent.
|
||||
|
||||
But I also feel grateful. Grateful that I got to know her, that her love shaped who I became. Grateful for her "loving and radiating personality that could light up the whole room," as her obituary said. Grateful that some part of her—her devotion to family, her passion for bridge, her unmatched hospitality—lives on in me and will live on in the people I influence.
|
||||
|
||||
This is how humans have always achieved immortality: not by avoiding death, but by passing something valuable forward to the next generation. Whether that's genes, ideas, love, or carefully maintained codebases.
|
||||
|
||||
We are all temporary custodians of consciousness, briefly holding the light before passing it on.
|
||||
|
||||
## From Stardust We Phase
|
||||
|
||||
The universe is 13.8 billion years old. Earth is 4.5 billion years old. Humans have existed for maybe 300,000 years. You and I have been conscious for a few decades at most.
|
||||
|
||||
We are incredibly recent, incredibly brief, incredibly improbable arrangements of matter. We shouldn't exist at all, and we won't exist for long.
|
||||
|
||||
But we do exist. Right now. We get to experience consciousness, create things, love people, solve problems, write code, listen to music, contemplate the vastness of space and the briefness of life.
|
||||
|
||||
That's pretty amazing, actually.
|
||||
|
||||
From stardust we came, to stardust we'll return, but for this brief phase in between—we get to be awake, we get to think, we get to care about each other and build things together.
|
||||
|
||||
We get to be human.
|
||||
|
||||
At least for now.
|
||||
|
||||
---
|
||||
|
||||
*In memory of Carol Frances Reitz (1947-2025), who taught me that love persists even when bodies don't.*
|
||||
|
||||
*Listen to [From Stardust We Phase](https://music.apple.com/us/playlist/from-stardust-we-phase/pl.u-DrDaCEgA9m) if you want to feel the weight of impermanence and the beauty of temporary consciousness.*
|
||||
Reference in New Issue
Block a user