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

Re: [Sheflug] bbc opensource quiz



On Fri, 2002-12-06 at 12:24, Chris J wrote:
> And Lo! The Great Prophet " David Holden" uttered these words of wisdom...
> > a bit of fun
> >
> > http://news.bbc.co.uk/1/hi/technology/2547495.stm
> >
> > I got 5 out of 7..
> >
> >   Dave.
> 
> 7 out of 7...I need to get out more...
> 
> Chris...


You Unix time clock knowing freek! :))


 dave.




-- 
Dr. David Holden. (Systems Developer)
check-out : crystallography journals online <http://journals.iucr.org>

Thanks in advance:-
Please avoid sending me Word or PowerPoint attachments.
See: <http://www.fsf.org/philosophy/no-word-attachments.html>

Personal Links:-
Recommended reading : http://www.oreilly.com/catalog/dbnationtp/
UK Privacy (R.I.P)  : http://www.stand.org.uk/commentary.php3
Public GPG key available on request.

-- 99% of politicians give the rest a bad name --
------------------------------------------------- 

___________________________________________________________________

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 ;
}