Microcodes
by Pall Thayer
Microcodes are very small code-based artworks. Each one is a fully contained work of art. On this page you can see contributed modifications of the original Microcodes that can be seen here.

Original code:

Enter your name (will be displayed):

Here you can enter extra info, such as warnings if the code can cause damage:

Enter code (must be complete and runnable):

No modified codes have been submitted for this Microcode.

Our eternal sins
16. March 2009
#!/usr/bin/perl
use LWP::Simple;
use constant PI => 3.14159265358979;
($times) = get("http://www.ndbc.noaa.gov/station_page.php?station=44140") =~ /WTMP\):<\/td> (\d+\.\d+) \&deg/;
while($times){
        $sin = sin(($times / 180)*PI);
        print "$sin\n";
        sleep(1);
        $times *= 1.01;
}

back to Microcodes