Here's something fun for all those people at OSU It's my first obfuscation code, so be nice.
#!/usr/local/bin/perl $b=sprintf("%02X",ord("\n"));while(<DATA>) {s/$b.*/$b/g;(split(//,$_));@a=();while( $#_>-1){$_=shift(@_);$_.=shift(@_);if( /G([0-9])/){for$i(2..int($1)){foreach$l (reverse(@a)){unshift @_,$l;}}$_="";}@a= split(//,$_);print chr(hex($_));}} __END__ 20G52E2D22G32D2E5FG220G30A20G52E2D22G32D22 20G42F202020G427206F275C200A20G52E2D22G322 20G22C2D3B20G2272E20G23A20G35F630A20G52E2D 203A5F2E225C2E5F2029203AG22D2220G20A20G52E 20G822G26D20226D20G30A20G52E2D22G32D220G52


Whoops, found an error, here's the new code:
#!/usr/local/bin/perl $b=sprintf("%02X",ord("\n"));while(<DATA>) {s/$b.*/$b/g;(split(//,$_));@a=();while( $#_>-1){$_=shift(@_);$_.=shift(@_);if( /G([0-9])/){for$i(2..int($1)){foreach$l (reverse(@a)){unshift @_,$l;}}$_="";}else{ print chr(hex($_));}@a=split(//,$_);p}} __END__ 20G72E2D22G22D2E5FG220G30A20G52E2D22G32D22 20G52F2020G427206F275C200A20G52E2D22G32222 20G22C2D3B20G2272E20G23A20G35F630A20G52E2D 203A5F2E225C2E5F2029203AG22D2220G20A20G52E 20G822G26D20226D20G30A20G52E2D22G32D220G52

In reply to First attempt. by abitkin

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.