Microcodes are very small code-based artworks. Each one is a fully contained work of art. The conceptual meaning of each piece is revealed through a combination of the title, the code and the results of running them on a computer. As works of art these are the creative work of Pall Thayer. As programs they may be copied, distributed, modified and used under the terms of the GNU General Public License v.3 or (at your option) any later version.
GPL v.3. If you're interested in running any of these but don't know how, see my brief
HowTo. Also, see Rob Myer's
review of Microcodes and
"There's more than one way to do Microcodes" at Cont3xt.net. If you're more for printed material, Franz Thalmair discusses the Microcodes project in the latest issue of
Springerin
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 $_;
}
View or contribute modified code
View all Microcodes