Your wish.....is my command. Did I miss anything?
 
Nice string in the middle with the ; q delimiter. You got good obfu milage out of that one!
 
tachyon
######################################################## # short summary, with newline added :-) $_="4a75737420616e6f74686572205065726c206861636b65720a"; for (m/(..)/g) {print chr(hex($_))} ######################################################## # hex string Just another Perl Hacker, verbatim $_="4a75737420616e6f74686572205065726c206861636b6572"; # substitute spaces out, /x allows whitespace in pattern # gets rid of spaces and newlines s!\s!!xg; # useless convoluted string assignment to $$ ($PID) # first q delim ; then concats as shown $$=q;$a='another';. ';$$='. "=". 'my$a=7."a9";$_.=$a;s!...!-$&!xg;$_.="\ x"x5;;m|..|xg;$$.=$&;$a=qq(c)' +; # useless assignment of $a (null) to $$ ($PID) $$=$a; # functional line adds \x to hex digit pairs, /x allows whitespace s((..))(\\x$1)xg; # print the string, need eval to render \x4a as ASCII J etc eval "print \"$_\";"; # useless assignment $a='sttr|\..%a=$perlhacker);$a=q|bx|';

In reply to Re: The *Real* Perl Couple by tachyon
in thread The *Real* Perl Couple by iamcal

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.