Skip to content

Instantly share code, notes, and snippets.

@keksipurkki
Last active March 19, 2019 13:35
Show Gist options
  • Save keksipurkki/cd8050d2ee420282e0a304eac34f4f50 to your computer and use it in GitHub Desktop.
Save keksipurkki/cd8050d2ee420282e0a304eac34f4f50 to your computer and use it in GitHub Desktop.
Music for your day
#include <stdio.h>

// cc rockit.c -o rock
// ./rock | tee rock.wav | mplayer -rawaudio rate=8000:channels=1:samplesize=2 -demuxer rawaudio -cache 256 -

int main (int argc, char *argv[])
{
    for (int t=0;;t++)
        putchar (t>>6|t|t>>(t>>16)*10 + ((t>>11)&7));
    return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment