Conversation
Notices
-
p (p@freespeechextremist.com)'s status on Saturday, 21-Sep-2019 06:32:22 JST p @TerminalState File sizes just got bigger.
The true future is bytebeat, though. A song of arbitrary length in a paltry 256 bytes of C that generates a raw 16-bit PCM stream, stereo, 44.1kHz, right to standard output.
#include <unistd.h>
short nx(long t) {
return
((t<<2)|((~(t>>1)&0x1ff)*(0x1ff&(0xb494afeba585585aL)>>(((t>>14)^(t>>21))%56))))
/**/;
}
int main(int argc, char **argv) {
long t;
short r;
for(t=0;;t++) {
r = nx(t);
write(1, &r, sizeof(r));
}
}- Tamamo repeated this.
-
Tamamo (rawrrawrfox@pl.smuglo.li)'s status on Saturday, 21-Sep-2019 08:42:01 JST Tamamo @p @TerminalState wow i hadn't thought of doing this before, thats pretty cool
image.png