http://www.perlmonks.org?node_id=546056

Okay, so I'm not winning any obfu contests with this one. I was just writing some semi-useful code to de-obfuscate a simple crypto, and I decided to turn it into a JAPH of sorts.

$code="j u s t a n o t h e r p e r l h a c k e r";@code=split/ /,$code;for($x=1;$x<=25;$x++){foreach$code(@code){$code=ord ($code);$code++;if($code>122){$code-=26}$code=chr($code)}print@code,"\n"}

Replies are listed 'Best First'.
Re: Just Another 25 Perl Hackers
by teamster_jr (Curate) on Apr 28, 2006 at 16:55 UTC
    @c=split//,"justanotherperlhacker";print@c,$/,(map $_=chr$_-(($_=1+ord)>122?26:0),@c)x0 while++$x<26
    a