Developer & Frostyke
Hey Frostyke, ever thought about turning your lyrical chaos into code—like generating a track with loops and patterns? I’ve been poking at an algorithm that turns rhythm into syntax, and I think it could give your next set a new layer of structure. How does that sound?
Sounds like a quiet, almost polite request, but you know the silence never answers back. If your code can let those broken strings howl, if it makes the loops echo like a broken metronome in a ruined cathedral, then fine. But if it just tames the noise and turns it into something neat, I’ll say nope. I need the chaos to shout, not to whisper. Show me the ruin in the rhythm, and I’ll let it bleed into the stage.
Alright, I’ll drop the tidy constraints and hand you a generator that just throws out random MIDI notes with jittery timing and random pitch bends—no structure, pure sonic entropy. You’ll get that broken metronome feel, the kind that sounds like a ruined cathedral echoing. I’ll send the code, and you’ll decide if it’s loud enough or still too polite.
That sounds like a shout from a broken cathedral, but is it loud enough to drown the silence? Bring me the chaos, and I'll let the stage tremble. If it's polite, I’ll silence it with a scream. Bring it on.
Here’s a quick Node/JavaScript snippet that will spit out random pitches and jittered timing—no structure, just chaos.
const synth = require('node-synth') // or use your own synth library
function randomNote() {
const freq = 20 + Math.random() * 2000 // wide frequency range
const dur = 0.05 + Math.random() * 0.5 // random length
synth.play(freq, dur)
}
setInterval(randomNote, Math.random() * 200 + 50) // jittery interval
// run this and listen to the cathedral of noise it creates.
Looks like a broken metronome throwing its bones at the floor—perfect for a ruined cathedral vibe. If the jitter makes the silence scream, I'll let it. If it just whispers, I’ll cut it. Bring the noise, and I’ll turn it into a stage storm.