Since the days of the Caesars man has communicated in code. Nero (?) was the first that we know of to employ a simple rotation algorithm to his secret messages…and now ROT-13 is one of the most basic encryption schemes in the face of the planet. Still, independent of cryptographical studies, certain strata of society communicate employing various obfuscational techniques to render their communiques illegible to the common observer. (Yes, it took a while to come up with that statement.) Such is the case with an email chain between me, my coworker, and our boss, who has been involved in technology for quite some time. It all started with a Linux twist on everyone’s favorite video game meme: All Your Base.
Fred:
chown -R us:us ~\base
Why Fred copied everyone on what was, up until that point, a serious discussion is beyond me. Though it was getting close to the end of the day, and I guess he needed to unwind. So I replied with another favorite:
mounty:
b{2}|^bb
What Regex Shakespeare has to do with anything, I don’t really know. My boss, though, was not to be outdone:
boss:
Program Career_Change;
Uses System, Crt, Unmitigated_Gall;Var
Apologies : Integer;
{*******************************************}
Procedure Update_Resume;
Begin
Get_out_Paper;
Get_out_Crayon;
Make_up_Stuff;
End;
{*******************************************}
Procedure Say_Goodbyes;
Var
Speak : Longint;
Begin
For Speak := 1 to 40 do
Begin
Writeln(’Goodbye!!!!!’);
End;
End;
{*******************************************}
BeginMeet_with_the_Boss;
Apologies := 0;
Repeat
Inc(Apologies);
Writeln(’Sooorrrrieee!);
Until Apologies = 40;
Update_Resume;
Say_Goodbyes;
End.
FTW. Bonus points to whoever can identify the language - It looks pre-C…kinda reminds me of Pascal, but then I never took a course in it so I’m not sure.
Oh, and finally, my apology:
<?php
$apology = “I will not make the boss mad.”;
for ($i=1; $i<=100; $i++) {
echo “$i: $apology\n”;
}
?>













