Bitshifting is fun and all, but the way you've used it it's not tremendously obfuscated. A quick scan of the code shows print chr(...); four times, so I immediately knew (as I had already guessed) that you would manipulate $a until it matched the right character code, then print it until you had done a whole Japh.

I do appreciate the variety of operations you perform on $a. But you might do better to hide a bitshift among other stuff. It can be confusing and frustrating to be going through an obfu, trying to figure out why the hell it works when according to what you've figured out on paper it should be slipping into an infinite loop or something, and then noticing that bitshift in the middle that shifts by some variable that had just changed its value and slapping yourself for not realizing it earlier. In any case, an obfu made up mostly of bitshifts and algebra is generally not especially challenging.

That said, I've seen a hell of a lot worse :o)


LAI
:eof

In reply to Re: My offering... by LAI
in thread My offering... by Preceptor

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.