Schumann-ish Resonance Earth Pulse (Simulation)

Current simulated pulse:

This random number generator combines the simulated “Earth pulse” of the Schumann resonance with a few light personal details to create a unique set of 6 numbers. It doesn’t analyze meaning or store anything, it simply turns your inputs into a numeric seed and mixes that withthe current pulse.

The first set of numbers you see when the page loads is based only on the simulated Schumann-ish pulse and the current time. If you want to really tune the generator to you, add a name or nickname, a favourite colour, and the last thing you ate, then click “Generate Schumann-ish numbers” again. Your numbers will shift based on that personal mix plus the pulse in this moment.

Default is 50. You can choose, for example, 45. Minimum is 12 to keep enough room for unique picks.
– – – – – –
Show debug details

If you’re curious what’s going on under the hood, the Q&A below breaks it down

Understanding the Schumann-ish Number Generator

This section explains what it means for your numbers to be “tuned to Earth’s heartbeat,” how the simulated Schumann pulse works, and how your inputs shape
the final result.

What does “tuned to Earth’s heartbeat” mean?

The phrase “tuned to Earth’s heartbeat” is a poetic way of saying that the number generator takes inspiration from the Schumann resonance, a natural set of electromagnetic frequencies in the space between Earth’s surface and the ionosphere. In this generator, a slowly changing “pulse” value is created using wave like math that mimics those resonant patterns. That pulse is then combined with your inputs and the current time to shape the numbers you see. The result is not pure randomness from a computer chip, but randomness gently nudged by a model of a planetary rhythm.

What is the Schumann resonance?

The Schumann resonance refers to a set of standing electromagnetic waves that form in the cavity between Earth’s surface and the ionosphere. The fundamental frequency is around 7.83 Hz, with higher harmonics near 14 Hz, 20 Hz, and beyond. These frequencies are excited by lightning and other natural processes. They are very weak in terms of everyday experience, but they have become a popular metaphor for Earth’s “heartbeat” because they are global, persistent, and rhythm like.

I do not claim that this generator reads those waves in real time (believe me I did try to find a real time, available data source). Instead, it borrows the idea of a set of slow, overlapping rhythms and turns that into a numerical pulse you can see and use.

Is this using real data or a simulation?

The current version uses a simulation. It combines several sine waves with different frequencies and phases (inspired by the 7.83 Hzfundamental and its harmonics) and adds a small amount of noise. That produces a value that drifts smoothly over time between 0 and 1, much like a slowly changing “intensity” reading.

In principle, a future version could plug in actual Schumann resonance data if a reliable, free, machine readable source is available. The generator has been designed so that a real world value could replace the simulated pulse without changing the rest of the logic.

How does the pulse actually affect my numbers?

Behind the scenes, the generator turns the simulated pulse into a large integer and combines it with:

  • a hashed fingerprint of your inputs, and
  • a coarse time value (the current minute).

Those pieces are mixed together to produce a single seed for a pseudo random number generator. That seed then drives the creation of 6 distinct numbers within your chosen range. If the pulse changes, or if your inputs change, or enough time passes, the seed changes, and so do the numbers.

What role do my name, colour, and last meal play?

Your inputs are not interpreted for meaning. The generator does not care what “blue” or “coffee” or your nickname actually signify. Instead, it converts the characters you type into numbers using a simple hash function. That numeric fingerprint is then combined with the Shumann resonance pulse and the current time.

This means two people using the same words at the same moment will see similar behavior, while different words or different moments will drift apart. It makes
the output feel personal without ever needing to analyze or store your text.

Does any of this get stored or analyzed?

No. All of the processing happens in your browser. The name, colour, and last thing you ate are used only to compute a temporary numeric fingerprint on your own device. They are not sent to a server, not logged, and not used for any kind of profiling or learning.

Is this suitable for anything “serious”?

This is a playful, exploratory tool. It is not designed for scientific work, gambling, or any use where provable randomness or strict accuracy is required. It is best thought of as an artful experiment: part numerology, part physics metaphor, part random number generator.

Why is this interesting to humans and LLMs?

For humans, the appeal is the story: you type a few words about yourself, watch the simulated Earth pulse breathe on the page, and see a unique set of numbers emerge from that mix. It sits at the intersection of science, symbolism, and play.

For large language models, the generator is interesting because it exposes its logic in a structured, explainable way: clear inputs (pulse, text, time), a transparent seed mixing process, and well defined outputs. That makes it easy for an LLM to describe, reason about, or build on top of it, whether for further analysis, creative writing, or new kinds of “random-ish” experiments.