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.

> Intended
19. October 2009
#!/usr/bin/perl
system 'clear';
($width,$height) = (`tput cols`,`tput lines`);
while($height > 0){
  foreach(1..$width/2){
    system 'tput', 'cup', $height-$_, int($width*0.5) - int($_*0.5);
    print ">" x $_;
  }
  $height-=1;
}

back to Microcodes