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

Re: The Economist on Netscape "hackers"



On Fri, 13 Oct 1995, Mark wrote:
> 
> >Raph (who's wondering if there's something inherent in the media
> >process that keeps them from getting their stories straight)
> 
> Reporters. Editors. Owners.

Usually the Economist does take pains to get their facts right, and to 
print corrections if errors are reported. Recently they have been making 
a few more mistakes than they used to in their net coverage (most amusing 
mistake was making John Curran CTO of BBN instead of BBN Planet). 

They did come to the right conclusion on the payment standards issue, so 
they do deserve at least a B-.

Simon

----
(defun modexpt (x y n)  "computes (x^y) mod n"  
   (cond ((= y 0) 1) 	((= y 1) (mod x n))
	((evenp y) (mod (expt (modexpt x (/ y 2) n) 2) n))
	(t (mod (* x (modexpt x (1- y) n)) n))))