Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Just Another 25 Perl Hackers

by wolfger (Deacon)
on Apr 27, 2006 at 16:47 UTC ( [id://546056]=obfuscated: print w/replies, xml ) Need Help??

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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: obfuscated [id://546056]
Approved by teamster_jr
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (6)
As of 2024-03-28 11:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found