Just Another 25 Perl Hackers
wolfger
created: 2006-04-27 12:47:51

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"}
Re: Just Another 25 Perl Hackers
created: 2006-04-28 12:55:50
@c=split//,"justanotherperlhacker";print@c,$/,(map
$_=chr$_-(($_=1+ord)>122?26:0),@c)x0 while++$x<26
a

perlmonks.org content © perlmonks.org and teamster_jr, wolfger

prlmnks.org © 2006 edmund von der burg (eccles & toad)

v 0.03