Linux Computers: 499 of 1023 |
MVS Air Lines:
The passengers all gather in the hangar, watching hundreds of technicians
check the flight systems on this immense, luxury aircraft. This plane has at
least 10 engines and seats over 1,000 passengers; bigger models in the fleet
can have more engines than anyone can count and fly even more passengers
than there are on Earth. It is claimed to cost less per passenger mile to
operate these humungous planes than any other aircraft ever built, unless
you personally have to pay for the ticket. All the passengers scramble
aboard, as do the 200 technicians needed to keep it from crashing. The pilot
takes his place up in the glass cockpit. He guns the engines, only to
realise that the plane is too big to get through the hangar doors.
|
|
|
Linux Computers: 500 of 1023 |
My God, I'm depressed! Here I am, a computer with a mind a thousand times
as powerful as yours, doing nothing but cranking out fortunes and sending
mail about softball games. And I've got this pain right through my ALU.
I've asked for it to be replaced, but nobody ever listens. I think it would
be better for us both if you were to just log out again.
|
|
|
Linux Computers: 501 of 1023 |
My sister opened a computer store in Hawaii. She sells C shells down
by the seashore.
|
|
|
Linux Computers: 502 of 1023 |
n = ((n >> 1) & 0x55555555) | ((n << 1) & 0xaaaaaaaa);
n = ((n >> 2) & 0x33333333) | ((n << 2) & 0xcccccccc);
n = ((n >> 4) & 0x0f0f0f0f) | ((n << 4) & 0xf0f0f0f0);
n = ((n >> 8) & 0x00ff00ff) | ((n << 8) & 0xff00ff00);
n = ((n >> 16) & 0x0000ffff) | ((n << 16) & 0xffff0000);
-- C code which reverses the bits in a word.
|
|
|
Linux Computers: 503 of 1023 |
Nearly every complex solution to a programming problem that I
have looked at carefully has turned out to be wrong.
-- Brent Welch
|
|
|
Linux Computers: 504 of 1023 |
Never make anything simple and efficient when a way can be found to
make it complex and wonderful.
|
|
|
Linux Computers: 505 of 1023 |
Never put off till run-time what you can do at compile-time.
-- D. Gries
|
|
|
Linux Computers: 506 of 1023 |
Never test for an error condition you don't know how to handle.
-- Steinbach
|
|
|
Linux Computers: 507 of 1023 |
Never trust a computer you can't repair yourself.
|
|
|
Linux Computers: 508 of 1023 |
Never trust an operating system.
|
|