[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Sheflug] bbc opensource quiz



On Friday 06 Dec 2002 12:29 pm, Craig Andrews wrote:
> On Fri, 2002-12-06 at 12:24, Chris J wrote:
> > > I got 5 out of 7..
> > >
> > >   Dave.
> >
> > 7 out of 7...I need to get out more...
>
> Managed 6/7. Got the one about 1 billion seconds wrong :(

1,000,000,000 mod 86400 = 6400 which less than 2 hours (7200 secs) ie 1:46 QED

Yours geekily

Pieter
___________________________________________________________________

Sheffield Linux User's Group -
http://www.sheflug.co.uk/mailfaq.html

  GNU the choice of a complete generation.

#!/usr/bin/perl -w
# Strip all line of this form from html messages
# From: "French, Alastair" <Alastair.French [at] racalinst.co.uk>
 
while (<>){
        $_=~s/(^.*:.*[ <])(\w.*)(@.*)/$1nospam$3/;
        print unless /^Delivered-To:/i ;
}