#!/usr/local/bin/perl # # ---------------------------------------------------------------------------- # # Pinky ponder server # (essentially my bofh server with a different text file) # # Toby Oxborrow # October 2002 # # ponders.txt was created using contributions from the following sites: # http://www.sph.umich.edu/~rwatt/ponderin.htm # http://millennium.fortunecity.com/bankhead/111/Pinky_and_the_Brain_link.htm # # ---------------------------------------------------------------------------- use strict; my @quotes; open (FH, '; close FH; my $r = $quotes[int(rand @quotes)]; chomp $r; print "Content-Type: Text/HTML\n\n"; print "

Are you pondering what I'm pondering?

$r

Refresh for another

";