A recent Slashdot article discussed a mysterious letter received by Fermilab containing what appeared to be a coded message.

Two enterprising cryptologists recently deciphered the message. Of the two, one posted the code used to decipher the message, written (as you might expect since you're reading it here) in Perl.

It's a nice snippet, and he earned even greater admiration from this humble monk for taking the care to use warnings and strict. It took him 29 lines, and was obviously written for clarity and not brevity. How many would it take you?

Replies are listed 'Best First'.
Re: Perl Solves Fermilab Mystery
by grizzley (Chaplain) on May 20, 2008 at 12:07 UTC
    How many would it take you?

    You shouldn't ask such questions... :)

    #!perl -l use strict; use warnings; use Algorithm::Permute; my $base = 3; my @chunks = map{ [/./g] } $ARGV[0]=~/\d{$base}/g; my $p = new Algorithm::Permute([0..$base-1]); while(my @res = $p->next) { print "(", @res, ") ", map { chr(64 + $base**2 * $res[$base-$$_[0]] + $base * $res[$b +ase-$$_[1]] + $res[$base-$$_[2]]) } @chunks }

    And there is still much to improve. E.g. Math::BaseCnv

Re: Perl Solves Fermilab Mystery
by zentara (Cardinal) on May 20, 2008 at 13:20 UTC
    Of course, it's email spam selling Viagra for Aliens..... didn't even need code to figure that out.

    The mysterious sets of 1 to 3 bars is nothing more than them tracking the number of hours per active use....... if you hit 4 bars you need to seek professional help immediately.

    Its a little known fact, that most ufo crashes are caused by aliens oogling earth girls, and their session goes over 4 hours. :-)


    I'm not really a human, but I play one on earth. Cogito ergo sum a bum
Re: Perl Solves Fermilab Mystery
by perrin (Chancellor) on May 21, 2008 at 03:45 UTC
    Nice to see some clear, well-formatted perl code showing up on Slashdot. The variable names are pretty weak, but otherwise it's a good effort.