💾 Archived View for hipstre.flounder.online › cmuse › 20210224W2157.gmi captured on 2023-06-14 at 13:56:22. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2021-12-03)

-=-=-=-=-=-=-

2021/02/24 W 2157

An Example in C

I've found some examples. I thought I wouldn't be able to find them. This is where I left it off in C:

#include <stdio.h>

void main() {

for (int t=0; t<=480000; t++) {

putchar (10*(t|t>>6|t>>(t>>16))+((t>>11)&7));

}

}

It's not a "one-line" but it's obscenely simple. I compiled it with gcc with some flags set to ignore errors (I forget what). Then I ran it and pointed it at a file named raw. Then I imported the raw file in Audacity.

comments: hipstre@protonmail.com