esoteric programming in non-esoteric languages? (3)

1 Name: Anonymous : 2007-12-12 00:30 ID:UPz8dq03

how about things like this?

#!/usr/bin/perl
use strict;
use warnings;
my@mname=('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
for(grep/\/\d+\.(?:gif|jpg|png)$/,map{glob"$_/*"}@ARGV){
(my$newname=$_)=~s/(\d+)...(....)$/${\((gmtime$1)[5]+1900)}${\($mname[(gmtime$1)[4]])}${\((gmtime$1)[3])}-${\(join'.',map{0 x($_<10).$_}reverse map{(gmtime$1)[$_]}0..2)}$2/;
rename$_,$newname;
}

2 Name: ais523 : 2008-01-03 18:39 ID:fb3W8MYY

I wrote a program in letterless C once. No letters or digits allowed in the program, except for one #define to give a way to access an input function and an output function, and the prototype of main.

3 Name: Jesin : 2008-01-06 20:47 ID:S9MlXVMA

That is called obfuscated code. See http://www.ioccc.org/ (International Obfuscated C Code Contest) for some great C examples, such as a flight simulator with airplane-shaped source code.

Name: Link:
Leave these fields empty (spam trap):
More options...