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):

Social space
08. March 2009
#!/usr/bin/perl
use LWP::Simple;
$social_text = get('http://twitter.com/statuses/public_timeline.rss');
@social_space = $social_text =~ /(\s)/g;
foreach(@social_space){
        print $_;
}
Gudmundur Hreidarsson
#!/usr/bin/perl
use LWP::Simple;
$social_text = get('http://twitter.com/statuses/public_timeline.rss');
$social_text =~ s/>\s+</></g;
@social_space = $social_text =~ /(\s+)/g;
sub bg { "\e[37;", 40+int(rand(7)), 'm', @_, "\e[0m" }
foreach (@social_space){
  print bg $_;
}

back to Microcodes