Interesting use of ARRAY(0x...) reference value in scalar context to provide a series of offsets. Also liked the (split//,$}) to assign to @_ although just(split//,[]) would have made me think really hard for a while (how do you split an anon array ref??) so might have been a bit more obfu.

Here is the decode

tachyon

$_="415250511528293422193223122519645759676174"; # $_{$_}++; # no effect # $}=[]; # $} has scalar val ARRAY(0x..) # (split//,$}); # assign @_ = qw(A R R A Y ( ...) # @}=map$_,@_; # @}=@_; # {@_=map @}->[$_],(0..5);}# @_ = first 6 elements @_ # net effect of all of the above commented out code @_=qw/A R R A Y (/; # push@a,$&while s;..;;; push @a, $1 while /(..)/g; # load @a with 41,52.... #$j=join'',map (chr((ord$_[0])+$_),(@a[0..3])); #$a=join'',map(chr((ord$_[1])+$_),(@a[4..10])); #$p=join'',map(chr((ord$_[4])+$_),(@a[11..14])); #$h=join'',map(chr((ord$_[5])+$_),(@a[15..20])); # #print join' ',$j,$a,$p,$h,"\n"; # this is the same as the above code print chr(65+$_) for @a[0..3]; print $"; # prints a space by default print chr(82+$_) for @a[4..10]; print $"; print chr(89+$_) for @a[11..14]; print $"; print chr(40+$_) for @a[15..20]; print $"; # this is almost the same, but no spaces :-( @offset = ((65)x4,(82)x7,(89)x4,(40)x6); map{print chr($a[$_]+$offset[$_])}0..20;

In reply to Re: 2nd obfu by tachyon
in thread 2nd obfu by the_slycer

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.