in reply to Perl Jokes

Heh,heh, give this script to your boss. (Although your coworkers may enjoy it more)
#!/usr/bin/perl -w use strict; use Tk; use Tk::JPEG; use LWP::Simple; my $URL = 'http://zentara.net/headsup.jpg'; my $localfile = $URL; $localfile =~ s![/:~]!!g; my $rc = mirror( $URL, $localfile ); my $mw = MainWindow->new(); my $file = $localfile; my $image = $mw->Photo(-file => $file); $mw->Label(-image => $image)->pack(-expand => 1, -fill => 'both'); $mw->Button(-text => 'Caught ya', -command => [destroy => $mw])->pack; MainLoop;

Replies are listed 'Best First'.
Re: Re: Perl Jokes
by phydeauxarff (Priest) on Apr 11, 2003 at 02:25 UTC
    heh...that's pretty funny