1995-12-01 - Re: Netscape’s Delicate Balancing Act

Header Data

From: Simon Spero <ses@tipper.oit.unc.edu>
To: “Timothy C. May” <tcmay@got.net>
Message Hash: e716ecd465d1df052c6f9a3a30b2dcd062142f8964adb808b3fd79b20ae489fa
Message ID: <Pine.SOL.3.91.951130165549.1889D-100000@chivalry>
Reply To: <ace375f6030210040b22@[205.199.118.202]>
UTC Datetime: 1995-12-01 01:37:53 UTC
Raw Date: Fri, 1 Dec 1995 09:37:53 +0800

Raw message

From: Simon Spero <ses@tipper.oit.unc.edu>
Date: Fri, 1 Dec 1995 09:37:53 +0800
To: "Timothy C. May" <tcmay@got.net>
Subject: Re: Netscape's Delicate Balancing Act
In-Reply-To: <ace375f6030210040b22@[205.199.118.202]>
Message-ID: <Pine.SOL.3.91.951130165549.1889D-100000@chivalry>
MIME-Version: 1.0
Content-Type: text/plain



If anyone interested, I'm planning to  make up some T-Shirts featuring 
"The South Bay Url Company". 

Simon // Yes, we also do Tulips

---
(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))))






Thread