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

Serial killer
25. February 2009
#!/usr/bin/perl 
foreach(1..30000){ 
	eval{ 
		`kill $_`; 
	}; 
}
karrsing
#!/usr/bin/perl 
eval { `kill $_` } for (1..30000);
yaxu
Needs modified LOGO interpreter and turtle robot with knife instead of pen, addressed by extra "STAB" function
; Travel in an ever increasing spiral, stabbing wildly in case something is there
TO SPIRAL :length
 FORWARD :length RIGHT 15
 STAB
 SPIRAL :length *1.02
END
SPIRAL 1

back to Microcodes