[582] in Humor
the return of even more pentium jokes...
daemon@ATHENA.MIT.EDU (Jonathan Litt)
Thu Dec 1 13:53:24 1994
To: humor@MIT.EDU
Date: Thu, 01 Dec 1994 11:17:02 -0500
From: Jonathan Litt <littlitt@MIT.EDU>
----------
From: johnsos@holmes.ece.orst.edu (scott johnson)
Subject: A joke....
Q: Did you hear about the new "morning after" pill being developed as a
replacement for RU-486???
A: Its called RU-Pentium. It causes the embryo to not divide correctly.
----------
Q: How did Intel come up with the statement that the bug is only
supposed to happen every 27,000 years?
A: They calculated it on a pentium.
----------
From: c2a192@ugrad.cs.ubc.ca (Kazimir Kylheku)
Subject: Proof of Intel Press Release
Here is a C program that proves that the Pentium FDIV bug happens
only once in 27000 years, as stated by Intel in the CNN press release.
#include <stdio.h>
#include <unistd.h>
#define YEAR_SECS (365 * 24 * 3600)
main()
{
double x = 4195835;
double y = 3145727;
int i;
while (1) {
if ((x - (x/y) * y) > 0.0)
printf("Bug detected in Intel shitbox\n");
for (i = 0; i < 27000; i++)
sleep(YEAR_SECS);
}
}