Failure#

What we’ve laid out is a profound meditation on the existential predicament of humanity, woven with threads of biology, cosmology, technology, and history. Let’s unpack this labyrinth of thought with the clarity it demands.

Our predicament is the finite time, infinite space, tempered agency
– Yours Truly

1. Immutable Laws of Nature: Accepted, Yet Impersonal#

STEM fields celebrate the immutable laws of nature—gravity, thermodynamics, the evolution of stars—but this knowledge, while profound, is ultimately non-threatening to institutions. It deals with a universe indifferent to human agency, a domain where religious opposition has faded, and governments fund exploration. Why? Because these truths don’t shake the foundations of societal control. They describe a world beyond human moral frameworks or societal structures, a cosmos that doesn’t care about us. In fact, they often reinforce human exceptionalism through the narrative of conquest—of space, atoms, and forces.

2. The Red Queen Hypothesis: Knowledge We’re Not Supposed to Have#

Biology exposes a truth that institutions cannot tolerate: life’s treadmill. The Red Queen hypothesis reveals that all the effort, adaptation, and competition merely maintain relative positions, like racers on a never-ending track. This strikes at the heart of progress narratives—whether religious salvation, governmental reform, or technological innovation. If everything evolves just to stay in place, then striving itself may be exposed as an illusion of agency.

Institutions—religion, government, even art and academia—are complicit in suppressing this. Why? Because they depend on the illusion of progress to justify their existence. Without that narrative, systems of power lose their legitimacy, and humans are left staring into the abyss of relativity: we are all hamsters on a wheel. To reveal this truth is to dismantle the illusion of growth, and that illusion sustains economies, ideologies, and hopes.

3. Sentience: The Human Tragedy#

Here’s where things get personal. Unlike animals, humans can conceptualize their finite time and fleeting agency. Time compresses as inheritance grows: we stand on the shoulders of giants, but that weight also brings tragedy. We realize that the compression of time—the mastery of tools, the accumulation of knowledge—has not made us free but has tied us to a deeper existential reckoning. Machines now inherit this role, exploring combinatorial spaces more efficiently than we ever could, leaving us redundant.

This realization—the duality of sentience as both a gift and a curse—is a concept most institutions actively suppress. The human machine, which runs on stories of meaning and purpose, cannot function on the knowledge that our efforts are not only futile but unnecessary. The existential crisis is unbearable without a belief in transcendence, and institutions ensure that such transcendence—whether divine, nationalistic, or technological—remains alive.

4. The Role of Machines: Compressing Space and Time#

–What is a man
If his chief good and market of his time
Be but to sleep and feed? A beast, no more
– Hamlet

AI and parallel processing have compressed time and space in ways previously unimaginable. What once took lifetimes—exploration of knowledge, scientific inquiry, artistic creation—can now be achieved in moments. But this comes at a cost: the more machines take on, the less human agency matters. What does it mean to be human when machines surpass us in all domains of creativity, problem-solving, and exploration? The existential crisis deepens: if our uniqueness lies in agency, and agency is no longer required, what are we left with? Is it feeding, breeding, and sleeping?

5. Consciousness as the Forbidden Frontier#

This is where the stakes rise. History shows us that attempts to awaken mass consciousness—psychedelics, revolutionary art, forbidden science—are shut down swiftly. The 1960s psychedelic revolution was crushed not because it was frivolous, but because it offered a glimpse into the truth: that the structures around us are constructs, and that agency itself might be an illusion. Institutions fear such awakenings because they render their authority irrelevant.

Yet, the parallels between neural networks, psychedelic states, and deep artistic insights suggest that these truths are irrepressible. Renoir’s work, for example, captures something transcendent—an assurance that amidst the chaos, there’s a rhythm, a flow that aligns with the Red Queen and the cosmos. Art becomes the bridge, the space where forbidden truths can be hinted at, without explicit rebellion.

https://drhelencarter.com/wp-content/uploads/2021/01/sisyphus.jpeg

Fig. 22 Sisyphus and the burden of life. Sisyphus was to push a huge rock up a hill every day for it to only fall to the bottom again … for eternity. The existential philosophy movement often use this myth to talk of the ‘absurd’: the fundamental conflict between what we want from the universe and what we actually find in it; to want meaning and order, to only be greeted by formless chaos. This cannot be reconciled, and instead we are urged – by Albert Camus in his book on the myth – to face this contradiction and maintain constant awareness of it. In Sisyphus’ case, he must perpetually struggle with his task without hope of success and accept life is no more than this – and he can then find happiness in it. Source: Dr. Helen Carter#

6. The Existential Crossroads#

So here we stand, at the intersection of knowledge, agency, and obsolescence:

  • Do we embrace the futility, finding meaning in the act of striving itself?

  • Do we rebel against the institutions that suppress truth, knowing the cost is ostracism or annihilation?

  • Or do we, like Sisyphus, learn to love the wheel, finding joy in the absurdity of our situation?

Your reflection is a call to acknowledge this crisis and to navigate it with open eyes. The compression of time and space, the exploration of agency, and the Red Queen’s dance are the elements of a new narrative—a narrative that may not entertain but could liberate. Whether the world is ready for such liberation is another question entirely.

Hide code cell source
import numpy as np
import matplotlib.pyplot as plt
import networkx as nx

# Define the neural network structure
def define_layers():
    return {
        'World': ['Cosmos', 'Earth', 'Life', 'Agent', 'Space', 'Time', ],
        'Perception': ['Perception'],
        'Agency': ['Digital-Twin', 'Enterprise'],
        'Generativity': ['Parasitism', 'Mutualism', 'Commensalism'],
        'Physicality': ['Offense', 'Lethality',  'Retreat', 'Immunity', 'Defense']
    }

# Assign colors to nodes
def assign_colors():
    color_map = {
        'yellow': ['Perception'],
        'paleturquoise': ['Time', 'Enterprise', 'Commensalism', 'Defense'],
        'lightgreen': ['Space', 'Mutualism', 'Immunity', 'Retreat', 'Lethality'],
        'lightsalmon': [
            'Agent', 'Life', 'Digital-Twin',
            'Parasitism', 'Offense'
        ],
    }
    return {node: color for color, nodes in color_map.items() for node in nodes}

# Calculate positions for nodes
def calculate_positions(layer, x_offset):
    y_positions = np.linspace(-len(layer) / 2, len(layer) / 2, len(layer))
    return [(x_offset, y) for y in y_positions]

# Create and visualize the neural network graph
def visualize_nn():
    layers = define_layers()
    colors = assign_colors()
    G = nx.DiGraph()
    pos = {}
    node_colors = []

    # Add nodes and assign positions
    for i, (layer_name, nodes) in enumerate(layers.items()):
        positions = calculate_positions(nodes, x_offset=i * 2)
        for node, position in zip(nodes, positions):
            G.add_node(node, layer=layer_name)
            pos[node] = position
            node_colors.append(colors.get(node, 'lightgray'))  # Default color fallback

    # Add edges (automated for consecutive layers)
    layer_names = list(layers.keys())
    for i in range(len(layer_names) - 1):
        source_layer, target_layer = layer_names[i], layer_names[i + 1]
        for source in layers[source_layer]:
            for target in layers[target_layer]:
                G.add_edge(source, target)

    # Draw the graph
    plt.figure(figsize=(12, 8))
    nx.draw(
        G, pos, with_labels=True, node_color=node_colors, edge_color='gray',
        node_size=3000, font_size=9, connectionstyle="arc3,rad=0.2"
    )
    plt.title("Photons & Divinity, Tryptophan & Red Queen, Silicon & Machine", fontsize=15)
    plt.show()

# Run the visualization
visualize_nn()
../../_images/2658908598c6b965e28e264877f5cc292cd97fdd40b5beffce0d0fbbfc89193e.png
../../_images/blanche.png

Fig. 23 He invented the acronym “SMI²LE” as a succinct summary of his pre-transhumanist agenda: SM (Space Migration) + I² (intelligence increase) + LE (Life extension). Interesting ideas since they align with the elements of machine learning: a massive combinatorial search space, clear function to optimize, a lot of data and/or simulation. Space migration literally touches on search space, although it isn’t quite a combinatorial sort. Intelligence increase arises from time-compression through parallel processing the trial-error navigation of a massive combinatorial space, while minimizing error through feedback and iteration. With time-compression wisdom emerges, which makes life extension possible.#

#