#!/usr/bin/perl @l=split / /, "a01001010 b01111100 c01011111 b01111100 d00110101 e0111 +0100 q0 f00110100 b01111100 g01011100 b01111100 h00110000 e01110100 b +01111100 i00101101 b01111100 j00110011 k01010010 q0 l01010000 j001100 +11 m01110010 b01111100 q0 n01001000 f00110100 o00111110 p00111100 h00 +110000 k01010010";@n=split //, "abcbdeqfbgbhebibjkqljmbqnfophk";my %g +;for(@l){($e,$r)=($_=~m/^(\w)(\d+)$/);$g{"$e"}=$r;}for(@n){print(pack +("B8",$g{$_}))if($g{$_})||print " ";}print "\n";



Well, here's my first shot at obfuscation...

I'm having trouble finding good resources on some of the more common techniques...I've heard people say, 'this one's my take on <common theme>...' Any ideas where I can get some ideas? I realize that I can read you other monks' nodes here, but barely any are explained in detail. I'd explain this one, but it's not hard at all.

Comments/suggestions/critiques would be appreciated.

In reply to 1337JAPH by Anonymous Monk

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.