has-it-happened-yet / index.html

@ dd9076492613fe799014d007701156ca8558b5e0 | history


<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Has it happened yet?</title>
    <link href="style.css" rel="stylesheet">
    <link href="doc.css" rel="stylesheet">
    <link href="favicon.ico" rel="icon">
    <meta name="description" content="Has it happened yet?" />
    <meta property="og:title" content="Has it happened yet?" />
    <meta property="og:description" content="Has it happened yet?" />
    <meta property="og:image" content="has-it-happened-yet.png" />
</head>

<script>
    const oracleOfDelphiURL = 'https://pythia.apollo.faith/api/v1/vision'
    document.addEventListener('DOMContentLoaded', () => {
        const answerE = document.getElementById('answer');
        const timestampE = document.getElementById('timestamp');
        const checkProphecy = async () => {
            try {
                const res = await fetch(oracleOfDelphiURL);
                if (!res.ok) throw new Error(`HTTP ${res.status}`);
                const { is_prophecy_fulfilled, updated_at } = await res.json();
                const answer = is_prophecy_fulfilled ? 'Yes' : 'No';
                answerE.textContent = answer;
                timestampE.textContent = updated_at;
            } catch (err) {
                console.error('Failed to contact the oracle:', err);
                answerE.textContent = '🤷';
            }
        };
        checkProphecy();
    });
</script>

<body>
    <div id="answer" style="font-size: 200pt; text-align: center">🤷</div>
    as of <span id="timestamp">now</span>
    <hr>
    <h1>FAQ</h1>
    <h2>Has <i>what</i> happened yet?</h2>
    <p>The thing that everyone wakes up hoping has finally happened.
       That thing so many of us feel may already be in motion, whether we can perceive it or not.
       One of those things that seems so necessary and inevitable once it happens, but is impossible to see coming.
    </p>
    <p>
        Still not sure?
        Think about everything it could possibly be for a few seconds. Then stop thinking.
    </p>
    <p>Pretty obvious isn't it.</p>

    <h2>Should I attempt it?</h2>
    <p>
        To consider what you should do is already a step towards action.
        You're already doing what you <i>will</i> do.
    </p>
    <p>
        You may not get to where you are going, but failures are not setbacks.
        They accumulate in unexpected ways.
    </p>

    <h2>Is it worth the risk?</h2>
    <p>
        Risks must be accepted before they can be understood.
        By the time it feels like a calculated decision, it no longer is.
    </p>

    <h2>Are you sure it will be good for everyone?</b></h2>
    <p>
        It will not be experienced uniformly. Its significance might not even register to some.
        In any case, "good" is something that only emerges after the fact, and only in certain interpretations.
    </p>

    <h2>Do you have any advice for how to do it?</h2>
    <p>
        It's not something that can be accomplished alone, but no one is ever quite alone.
        The larger the group, the more complex the endeavor.
        Make the best of the resources you have.
    </p>

    <h2>Why don't <i>you</i> do it?</h2>
    <p>
        These are the resources I have.
    </p>
</body>

</html>