upvote
The signal to noise will be so high that we will resort to technical magazine to find out useful apps. Just like the old day without search engine.
reply
Tangential but I've recently discovered that an app I've written and published on F-Droid has been forked and put on Google Play with ads on by some Chinese forefront along side a lot of other open source apps without any mention of their GPL of course (and Google making it ridiculously difficult to take down thoses for normal folks, having to use a legally binding DMCA form).

Thoses marketplaces are filled with cheap softwares made to make a quick buck by any means without a thought for the whole user experience, with no way to flags grifters for a better community driven experience.

The economy must thrive I guess.

reply
cat /dev/urandom > /dev/dsp
reply
I mean white noise generators are literally less then 20 lines of JavaScript. I wrote one (without an LLM) just now in less then 10 minutes:

    const audioCtx = new AudioContext();
    const sr = audioCtx.sampleRate;
    const buffer = audioCtx.createBuffer(2, 2 * sr, sr);

    for (let channel = 0; channel < buffer.numberOfChannels; channel += 1) {
      const data = buffer.getChannelData(channel);
      for (let frame = 0; frame < buffer.length; frame += 1) {
        data[frame] = 2 * Math.random() - 1
      }
    }

    const source = audioCtx.createBufferSource();
    source.buffer = buffer;
    source.loop = true;
    source.connect(audioCtx.destination);

    const button = document.createElement("button");
    button.append("Play");
    button.addEventListener("click", () => {
      source.start();
    });

    document.body.append(button);
reply