Ok. First post ever here. I'm rather n00b with obfuscation, but I do hope you'll still enjoy this little piano score :)
#!/usr/bin/perl -w use strict; @&=qw/ |---i`--------o-|---------|-----o-o-|-o---o---|-o---o---|-----o-o---| |--<->--o---o---|-o-----o-|-----o---|-----o---|---o---o-|-o---o-o-.-| |---@---o-------|-----o---|-o-------|-------o-|---o-o---|-o-----o---| |--V------o-----|-o-------|-o-o-----|---o-----|---o-o-o-|-o-o---o-.-| |---------------|---o-o---|---------|-o-------|-----o-o-|-o-----o---| /; foreach(@&){$_=~s/^.{8}(.*).{6}$/$1/gex}for($"=2**0-1;$"<sqrt(25)*sqrt +(121);$"+=2){if($&[0]=~m/^o/){if($&[1]=~m/^o/){${.}.="r"}elsif($&[2]= +~m/^o/){${.}.="a"}elsif($&[4]=~m/^o/){${.}.="P"}else{${.}.="$-"}}elsi +f($&[4]=~m/^o/){if($&[3]=~m/^o/and$&[2]=~m/^o/and$&[1]=~m/^o/){${.}.= +"k"}elsif($&[3]=~m/^o/and$&[1]=~m/^o/){${.}.="c"}elsif($&[2]=~m/^o/){ +${.}.="o"}else{${.}.="n"}}elsif($&[1]=~m/^o/){if($&[2]=~m/^o/and$&[3] +=~m/^o/){${.}.="H"}elsif($&[3]=~m/^o/){${.}.="A"}elsif($&[2]=~m/^o/){ +${.}.="Y"}else{${.}.="t"}}elsif($&[3]=~m/^o/){if($&[2]=~m/^o/){${.}.= +"h"}else{${.}.="e"}}else{${.}.="l"if$&[2]=~m/^o/}foreach(@&){s/..//}} +${.}=~s/0/ /g;print"${.}\n";

Good Lord! It's hard to draw the G key in 5 ASCII lines :]

P!

In reply to Prelude for keyboard by Pied

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.