[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Sheflug] bbc opensource quiz
Argh!
I was another 6/7 for screwing up one billion seconds. Then again, I did
complete the quiz in just 15 seconds - so do I get extra brownie points
for speed? Ref? Ref?
I wonder whether the BBC are compiling stats on the number and knowledge
of their quizzers. If so, it might be interesting to see if they make
them public. If a lot of people express a fair degree of knowledge then
that might be a useful stat for Linux advocacy. Maybe they will estimate
the potential market for a TV program about open source from the
result...
James
On Fri, 2002-12-06 at 14:42, Pieter Meiring wrote:
> 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.
--
James Wallbank
Redundant Technology Initiative
Access Space - 1 Sidney Street - Sheffield - S1 4RG - UK
T: +44 (0)114 2495522
F: +44 (0)114 2495533
___________________________________________________________________
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 ;
}