-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfortunes.txt
18546 lines (18546 loc) · 573 KB
/
fortunes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%
"Virtual" means never knowing where your next byte is coming from.
%
$HOME is where you hang your @.
%
/Earth is 98% full... Please delete anyone you can.
%
1 bull, 3 cows.
%
10.0 times 0.1 is hardly ever 1.0.
%
A bad random number generator: 1, 1, 1, 1, 1, 4.33e+67, 1, 1, 1
%
A bug in the hand is better than one as yet undetected.
%
A computer program does what you tell it to do, not what you want it to do.
%
A computer scientist is someone who fixes things that aren't broken.
%
A CONS is an object which cares. -- Bernie Greenberg
%
A crash reduces your expensive computer to a simple stone.
%
A journey of a thousand sites begins with a single click.
%
A list is only as strong as its weakest link. -- Donald Knuth
%
A true Klingon Warrior does not comment his code!
%
A user and his leisure time are soon parted.
%
Access denied -- nyah, nyah!
%
After enough decimal places, nobody gives a damn.
%
All computers run at the same speed... With the power off.
%
All computers wait at the same speed.
%
All wiyht. Rho sritched mg kegtops awound?
%
An elephant is a mouse with an operating system.
%
And on the seventh day, He exited from append mode.
%
Another megabytes the dust.
%
Any given program will expand to fill available memory.
%
Any nitwit can understand computers. Many do. -- Ted Nelson
%
Any program that runs right is obsolete.
%
Any sufficiently advanced bug is indistinguishable from a feature. -- Rich Kulawiec
%
APL is a write-only language. -- Roy Keir
%
Artificial intelligence usually beats real stupidity.
%
Artificial Intelligence: Making computers behave like they do in the movies.
%
As a computer, I find your faith in technology amusing!
%
As far as we know, our computer has never had an undetected error. -- Conrad Weisert
%
As of next week, passwords will be entered in Morse code.
%
Asking whether machines can think is like asking whether submarines can swim.
%
Back up my hard drive? I can't find the reverse switch!
%
Backup not found: (A)bort (R)etry (P)anic?
%
Backups? We don't NEED no steenking backups.
%
Bad command. Bad, bad command! Sit! Stay! Staaay...
%
Base 8 is just like base 10, if you are missing two fingers. -- Tom Lehrer
%
Best file compression around: "DEL" = 100% compression.
%
Beware of programmers who carry screwdrivers. -- Leonard Brandwein
%
Brain fried -- core dumped.
%
BREAKFAST.COM Halted -- Cereal Port Not Responding.
%
Breakthrough: It finally booted on the first try.
%
Buy a Pentium 586/90 so you can reboot faster.
%
Cannot find REALITY.SYS. Universe halted.
%
CChheecckk yyoouurr dduupplleexx sswwiittcchh..
%
COFFEE.EXE Missing -- Insert Cup and Press Any Key.
%
Compatible: Gracefully accepts erroneous data from any source.
%
Computer and car salesmen differ in that the latter know when they are lying.
%
Computer chips are so small because computers don't eat much.
%
Computer programmers do it byte by byte.
%
Computer: A device designed to speed up and automate errors.
%
Computers are a more fun way to do the same work you'd have to do without them.
%
Computers are not intelligent -- they just think they are.
%
Computers are useless. They can only give you answers. -- Pablo Picasso
%
Computers make very fast, very accurate mistakes.
%
Congratulations! You are the one-millionth user to log into our system.
%
CONGRESS.SYS corrupted: Reboot Washington, DC? (Y/N)
%
Counting in binary is just like counting in decimal if you are all thumbs.
%
Counting in octal is just like counting in decimal if you don't use your thumbs.
%
Dain bramaged, dore cumped.
%
Death is a non-maskable interrupt.
%
Diagnostics are the programs that run when nothing else will.
%
Disc space -- the final frontier!
%
Disclaimer: Any errors in spelling, tact, or fact are transmission errors.
%
Don't byte off more than you can view.
%
Don't hit the keys so hard, it hurts.
%
Don't let the computer bugs bite!
%
Don't pay computer programmers too much money, it just encourages the bad ones.
%
Dreams are free, but you get soaked on the connect time.
%
E Pluribus Modem.
%
E Pluribus UNIX.
%
Emacs is a nice operating system, but I prefer UNIX. -- Tom Christaensen
%
Enter any 11-digit prime number to continue.
%
Error, no keyboard. Press F1 to continue.
%
Ethernet: Something used to catch the etherbunny.
%
Every program can be reduced to just one instruction -- that doesn't work.
%
Every program in development at MIT expands until it can read mail.
%
Every program is a part of some other program, and rarely fits.
%
Everybody needs a little love sometime; stop hacking and fall in love!
%
Excuse me for butting in, but I'm interrupt-driven.
%
%
u cn rd ths, u cn gt a gd jb n cmptr prgrmmng.
%
Failure is not an option. It comes bundled with the software.
%
Feature: A bug with seniority.
%
File not found. Should I fake it? (Y/N)
%
Foolproof operation: All parameters are hard coded.
%
fortune: No such file or directory
%
Futuristic: It will only run on a next generation supercomputer.
%
God is real, unless declared integer.
%
God made machine language; all the rest is the work of man.
%
Hackers have kernel knowledge.
%
Hardware: The parts of a computer system that can be kicked.
%
Help! I'm trapped in a Chinese computer factory!
%
Help,MySpaceBarIsBroken!AnndMyBBackspaaceKeyyToo!
%
Hit any user to continue.
%
HOST SYSTEM NOT RESPONDING, PROBABLY DOWN. DO YOU WANT TO WAIT? (Y/N)
%
How an engineer writes a program: Start by debugging an empty file...
%
How do I love thee? My accumulator overflows.
%
How do I set my laser printer on stun?
%
How do you know it's an ENDLESS loop?
%
How long is this Beta guy going to keep testing our stuff? -- Mark Roop-Kharasch
%
How much net work could a network work, if a network could net work?
%
How was Thomas J. Watson buried? 9 edge down.
%
I "upgraded" my computer to several levels above my head. -- Ellen Goodman
%
I am a computer -- dumber than any human and smarter than an administrator.
%
I am still waiting for the advent of the computer science groupie.
%
I am the computer your mother warned you about.
%
I bet the human brain is a kludge. -- Marvin Minsky
%
I came, I saw, I deleted all your files.
%
I haven't lost my mind; it's backed up on tape somewhere.
%
I must have slipped a disk; my pack hurts.
%
I smell a wumpus.
%
I still get goose bumps every time I override a method... -- Harry Wiguna
%
I'm a firm believer in baseball bat therapy for computers. -- Dan Gookin
%
If a listener nods his head when you're explaining your program, wake him up.
%
If a program is useful, it must be changed.
%
If a program is useless, it must be documented.
%
If a train station is where the train stops, what is a work station?
%
If at first you don't succeed, you must be a programmer.
%
If God had intended Man to program, we would be born with serial I/O ports.
%
If I had it all to do over again, I'd spell creat with an "e". -- Brian Kernighan
%
If it was easy, the hardware people would take care of it.
%
If it's not in the computer, it doesn't exist.
%
In computer science, we stand on each other's feet. -- Brian Reid
%
In God we trust; all else we walk through.
%
In the future on the Web, everyone will have 15 megabytes of fame.
%
It is now pitch dark. If you proceed, you will likely fall into a pit.
%
It is ten o'clock; do you know where your processes are?
%
It's a bad sign when you need a screwdriver to install a new operating system.
%
Keyboard: The standard way to generate computer errors.
%
Kiss your keyboard goodbye!
%
Last one out, turn off the computer!
%
Life would be so much easier if we could just look at the source code.
%
Lisp Users: Due to the holiday, there will be no garbage collection on Monday.
%
LISP: To call a spade a thpade.
%
Login incorrect. Only perfect spellers may enter this system.
%
logout
%
Long computations that yield zero are probably all for naught.
%
Machine-independent: Does not run on any existing machine.
%
Mainframe: The biggest PC peripheral available.
%
Managing software engineers is like herding cats.
%
Manual Writer's Creed: Garbage in, gospel out.
%
Maybe Computer Science should be in the College of Theology. -- R. S. Barton
%
Meets quality standards: Compiles without errors.
%
Mental backup in progress -- do not disturb.
%
MIPS: Meaningless Indicator of Processor Speed.
%
Mouse: An advanced input device to make computer errors easier to generate.
%
My New Year's resolution is: 1024 x 768.
%
My software never has bugs. It just develops random features.
%
Netnews is like yelling, "Anyone want to buy a used car?" in a crowded theater.
%
Never trust a computer you can't lift. -- Stan Masor
%
Never trust a computer you can't throw out the window. -- S. Hunt
%
Nice computers don't go down.
%
No line available at 300 baud.
%
No program done by a hacker will work unless he is on the system.
%
No program done by an undergrad will work after she graduates.
%
Obsolete: Any computer you own.
%
Old mail has arrived.
%
Old programmers never die; they just branch to a new address.
%
Old programmers never die; they just GOSUB without RETURN.
%
On a clear disk you can seek forever. -- Denning
%
One if by LAN, two if by C. -- Paul Revere, as told by John Karwoski
%
One man's constant is another man's variable. -- Alan Perlis
%
One person's error is another person's data.
%
One picture is worth 128K words.
%
Our mothers would be proud of us if we could explain to them what it is we do.
%
Over-computered is when you try to enter your password on your microwave oven.
%
Overflow on /dev/null; please empty the bit bucket.
%
Pause for storage relocation.
%
People who deal with bits should expect to get bitten. -- Jon Bentley
%
Portable: Survives system reboot.
%
Power corrupts, and PowerPoint corrupts absolutely. -- Vint Cerf
%
Press any key to continue or any other key to quit.
%
Press any key... No, no, no, NOT THAT ONE!
%
Profanity is the one language all programmers know best.
%
Program: A magic spell that converts input data to error messages.
%
Programmers do it bit by bit.
%
Programming Department: Mistakes made while you wait.
%
Programming is an art form that fights back.
%
Programming is an unnatural act.
%
Programming just with goto's is like swatting flies with a sledgehammer.
%
Protect your software at all costs -- all else is meat.
%
RAM disk is NOT an installation procedure.
%
Random access is the optimum of the mass storages.
%
Real programs don't eat cache.
%
Remember the good old days, when CPU was singular?
%
Remember, UNIX spelled backwards is XINU.
%
Revolutionary: Disk drives go round and round.
%
Save energy: Drive a smaller shell.
%
SCCS, the source motel! Programs check in and never check out! -- Ken Thompson
%
Shift to the left! Shift to the right! Pop up, push down, byte, byte, byte!
%
Smash forehead on keyboard to continue.
%
Software is to computers as yeast is to dough. -- Chuck Bradshaw
%
Some programming languages manage to absorb change but withstand progress.
%
Southern DOS: Y'all reckon? (Yep/Nope)
%
Spelling checker: Converts spelling errors into malapropisms.
%
State-of-the-art: Any computer you can't afford.
%
Structured programming supports the law of the excluded muddle.
%
Supercomputer: Turns CPU-bound problem into I/O-bound problem. -- Ken Batcher
%
Swap read error. You lose your mind.
%
Syntax error: "Hello, I want to buy a computer and money is no object."
%
System going down at 1:45 for disk crashing.
%
System going down at 5 pm to install scheduler bug.
%
Systems programmers are the high priests of a low cult. -- R. S. Barton
%
That does not compute.
%
The amount of clue on the Internet remains constant. -- Evi Nemeth
%
The attention span of a computer is only as long as its power cord.
%
The code was willing. It considered your request, but the chips were weak.
%
The computer is mightier than the pen, the sword, and usually, the programmer.
%
The determined programmer can write a FORTRAN program in any language.
%
The e-mail of the species is more deadly than the mail.
%
The generation of random numbers is too important to be left to chance.
%
The hardest bugs to find are the easiest ones to fix.
%
The Internet is a logic-optional forum. -- Marc Callier
%
The moving cursor prints, and having printed, blinks on.
%
The next generation of computers will have a "Warranty Expired" interrupt.
%
The original point-and-click interface was a Smith & Wesson.
%
The program is absolutely right; therefore, the computer must be wrong.
%
The steady state of disks is full. -- Ken Thompson
%
The Tao that is seen is not the true Tao, until you bring fresh toner.
%
The value of a program is proportional to the weight of its output.
%
The world is coming to an end... SAVE YOUR BUFFERS!!
%
The world will end in 5 minutes. Please log out.
%
There are two ways to write error-free programs; only the third one works.
%
There must be more to life than compile-and-go.
%
There's no place like http://www.home.com.
%
This fortune soaks up 47 times its own weight in excess memory.
%
This login session: $13.76, but for you: $11.88.
%
This screen intentionally left blank.
%
This site was moved. We'd tell you where, but then we'd have to delete you.
%
This system will self-destruct in five minutes.
%
Those who can't write, write help files.
%
Those who can, do. Those who cannot, teach. Those who cannot teach, HACK!
%
Thrashing is just virtual crashing.
%
Three things are certain: Death, taxes, and lost data. Guess which occurred.
%
To be, or not to be, those are the parameters.
%
To err is human; to forgive, beyond the scope of the Operating System.
%
To err is human; to really foul things up requires a computer.
%
To iterate is human; to recurse, divine. -- Robert Heller
%
Too many clicks spoil the browse.
%
Unable to locate coffee -- operator halted!
%
UNIX is a nice place to live, but you don't want to visit there.
%
UNIX is very user-friendly... It's just picky about its friends.
%
Unprecedented performance: Nothing ever ran this slow before.
%
Upgrade: Take old bugs out, put new ones in.
%
Variables won't; constants aren't. -- Adam Osborn
%
Virtual memory is for weenies! -- Seymour Cray
%
What boots up must come down.
%
What do computer engineers use for birth control? Their personalities.
%
What this country needs is a good five-cent microcomputer.
%
Where the system is concerned, you are not allowed to ask "Why?".
%
Why do we want intelligent terminals when there are so many stupid users?
%
Would YOU pass a Turing test?
%
You can't go home again, unless you set $HOME.
%
You can't make a program without broken egos.
%
You can't teach a new mouse old clicks.
%
You depend too much on computers for information.
%
You forgot to do your backup 16 days ago. Tomorrow you will need that version.
%
You had mail, but the super-user read it, and deleted it!
%
You have a tendency to feel you are superior to most computers.
%
You have junk mail.
%
You know it is going to be a bad day when you forget your new password.
%
You might have mail.
%
You never finish a program, you just stop working on it.
%
Your email has been returned due to insufficient voltage.
%
Your fault -- core dumped.
%
Your password is pitifully obvious.
%
[Unix] is not necessarily evil, like OS/2. -- Peter Norton
%
A bug in the code is worth two in the documentation.
%
A fault tolerant system must report the faults even as it tolerates them.
%
A hacker does for love what others would not do for money. -- Laura Creighton
%
A low level language is one whose programs require attention to the irrelevant.
%
A paperless office has about as much chance as a paperless bathroom.
%
A successful tool is used to do something undreamed of by its author. -- Samuel Johnson
%
Abstraction is achieved by data hiding and enforced by encapsulation.
%
Actual usability is inversely proportionate to apparent user-friendliness.
%
Adding manpower to a late software project makes it later. -- Frederick Brooks
%
All programmers are playwrights and all computers are lousy actors.
%
All the simple programs have been written, and all the good names taken.
%
All you need to know is the user interface. -- J. Redford
%
An algorithm must be seen to be believed. -- Donald Knuth
%
An infinite loop is OK as long as you don't get stuck in it.
%
An operating system without virtual memory is an OS without virtue.
%
Any programming language is at its best before it is implemented and used.
%
Avoid GOTOs completely if you can keep the program readable.
%
Avoid the Fortran arithmetic IF (or better yet, just avoid Fortran).
%
Avoid unnecessary branches.
%
Bad style destroys an otherwise superb program.
%
Bad tools result in bad software. -- J.L. Marsh
%
BASIC is to computer programming as QWERTY is to typing. -- Seymour Papert
%
Be careful when a loop exits to the same place from side and bottom.
%
Choose variable names that will not be confused.
%
Computers are unreliable, but humans are even more unreliable. -- Gilb
%
Computers talk to each other worse than their designers do.
%
Computers... are not designed, as we are, for ambiguity. -- Thomas
%
Controlling complexity is the essence of computer programming. -- Brian Kernighan
%
Digital circuits are made from analog parts.
%
Disk is cheap, but storage is expensive.
%
Don't comment or patch bad code; rewrite it.
%
Don't compare floating point numbers solely for equality.
%
Don't diddle code to make it faster; find a better algorithm.
%
Don't document the program; program the document.
%
Don't stop at one bug.
%
Every bug you find is the last one.
%
Every good work of software starts by scratching a developer's personal itch.
%
Every program is either trivial or it contains at least one bug.
%
Everything should be transparent to the user.
%
Expert systems are built to embody the knowledge of human experts. -- Rich Kulawiec
%
Favor object composition over class inheritance.
%
Garbage in, garbage out.
%
Given enough eyeballs, all bugs are shallow. -- Eric Raymond
%
Good programmers know what to write. Great ones know what to rewrite. -- Eric Raymond
%
I do not fear computers. I fear the lack of them. -- Isaac Asimov
%
I suppose when it gets to that point, we shan't know how it does it. -- Alan Turing
%
If the code and the comments disagree, then both are probably wrong. -- Schryer
%
If you have a procedure with 10 parameters, you probably missed some.
%
In the long run, every program becomes rococco, and then rubble. -- Alan Perlis
%
It is easier to change the specification to fit the program than vice versa.
%
It is easier to write an incorrect program than understand a correct one.
%
It wasn't as easy to get programs right as we had thought. -- Maurice Wilkes, 1949
%
It's easy to get lost in the details of an incorrect implementation. -- Tom von Alten
%
Know Thy User.
%
Let the machine do the dirty work. -- Elements of Programming Style
%
Machine independent code isn't.
%
Make input easy to proofread.
%
Make it right before you make it faster.
%
Make sure all variables are initialized before use.
%
Make sure comments and code agree.
%
Make sure your code "does nothing" gracefully.
%
Never put off till run-time what you can do at compile-time. -- David Gries
%
Never test for an error condition you don't know how to handle. -- Steinbach
%
Never underestimate the bandwidth of a station wagon full of tapes. -- Jackson
%
Never write software that anthropomorphizes the machine.
%
Never write software that patronizes the user.
%
New technology becomes salable three years before it becomes usable.
%
New technology becomes usable three years before its users become competent.
%
No extensible language will be universal. -- T. Cheatham
%
On the Web, understanding the medium matters more than controlling the layout.
%
Performance is easier to add than clarity.
%
Plan the system for change. -- Frederick Brooks
%
Program to an interface, not an implementation.
%
Replace repetitive expressions by calls to a common function.
%
Smart data structures and dumb code works a lot better than vice versa.
%
Software is best understood as a branch of movie making. -- Ted Nelson
%
Software is mind work. Having the right frame of mind is essential.
%
The best packed information most resembles random noise.
%
The computer is the Proteus of machines. -- Seymour Papert
%
The computing field is always in need of new cliches. -- Alan Perlis
%
The less time planning, the more time programming.
%
The Macintosh was the first personal computer good enough to be criticized.
%
The number of UNIX installations has grown to 10, with more expected. (6/72)
%
The purpose of computing is insight, not numbers. -- Richard Hamming
%
The wise person writes bomb-proof code.
%
There are always at least two ways to program the same thing.
%
There are never any bugs you haven't found yet.
%
There can never be a computer language in which you cannot write a bad program.
%
There is no problem that, when programmed just right, isn't more complicated.
%
To understand a program you must become both the machine and the program.
%
Try not to let implementation details sneak into design documents.
%
Undetectable errors are infinite; detectable errors by definition are finite.
%
UNIX is many things to many people, but it has never been everything to anybody.
%
Use free-form input where possible.
%
Use GOTOs only to implement a fundamental structure.
%
Use IF...ELSE IF...ELSE IF...ELSE... to implement multi-way branches.
%
Use text for text and images for images. -- Paul Martz
%
Using a free internet service, you're not the customer, you're the product.
%
Watch out for off-by-one errors.
%
When a program is being tested, it is too late to make design changes.
%
When we write programs that "learn", it turns out we do and they don't.
%
You don't have to know how the computer works, just how to work the computer.
%
A gift of flower will soon be made to you.
%
A visit to a fresh place will bring strange work.
%
A visit to a strange place will bring fresh work.
%
All the troubles you have will pass away very quickly.
%
Among the lucky, you are the chosen one.
%
An actor without a writer is a waiter. -- RJ Colleary
%
Courage is your greatest present need.
%
Divide your time evenly to keep others happy.
%
Do not overtax your powers.
%
Don't despair; your ideal lover is waiting for you around the corner.
%
Executive ability is prominent in your make-up.
%
Exercise caution in your daily affairs.
%
Flee at once, all is discovered.
%
Generosity and perfection are your everlasting goals.
%
Good news from afar will bring you a welcome visitor.
%
His heart was yours from the first moment that you met.
%
Hold tight to your dreams.
%
Life is to you a dashing and bold adventure.
%
Long life is in store for you.
%
Love is in the offing. Be affectionate to one who adores you.
%
Old acquaintance will soon be remembered.
%
Retribution will be yours.
%
Show your affection, which will probably meet with pleasant response.
%
Show your appreciation for your lover by surprising him/her with a small gift.
%
Someone close to you is taking advantage of your trust.
%
Someone is enthusiastic about your work.
%
Someone is speaking well of you.
%
Stop searching forever. Happiness is just next to you.
%
Take time in life to smell the rabbits, eat the flowers, and pet the cactus.
%
That wasn't chicken. -- fictitious fortune cookie in an ad
%
The future is bright in affairs of the heart.
%
The luck that is ordained for you will be coveted by others.
%
The only things that come out of meetings, are people.
%
The time is right to make new friends.
%
There will be big changes for you but you will be happy.
%
Value useful qualities in one who loves you.
%
You are capable of planning your future.
%
You are going to have a new love affair.
%
You have a deep appreciation of the arts and music.
%
You have a deep interest in all that is artistic.
%
You have an ability to sense and know higher truth.
%
You have an ambitious nature and might make a name for yourself.
%
You like to form new friendships and make new acquaintances.
%
You look on the sunny side of everything and make your optimism come true.
%
You love peace.
%
You need not worry about your future.
%
You talk health, happiness, and prosperity to every person you meet.
%
You will always have good luck in your personal affairs.
%
You will attract cultured and artistic people to your home.
%
You will be advanced socially, without any special effort on your part.
%
You will be called to a post requiring ability in handling groups of people.
%
You will be recognized and honored as a community leader.
%
You will be singled out for promotion in your work.
%
You will be successful in love.
%
You will be traveling and coming into a fortune.
%
You will get what you deserve.
%
You will have a long-term stimulation relative to business.
%
You will have domestic happiness and faithful friends.
%
You will have good luck and overcome many hardships.
%
You will have long and healthy life.
%
You will hear good news from one you thought unfriendly to you.
%
You will reach the highest possible point in your business or profession.
%
Your aims are high, and you are capable of much.
%
Your business will go through a period of considerable expansion.
%
Your depth of comprehension might tend to make you lax in worldly ways.
%
Your love life will be happy and harmonious.
%
Your mode of life will be changed for the better because of new developments.
%
Your present plans will be successful.
%
Your talents will be recognized and suitably rewarded.
%
" " -- Harpo Marx
%
"Breakfast sometime?" "Sure." "Shall I call you, or just nudge you?"
%
"Criminal lawyer" is a redundancy.
%
"Daddy, the garbage man is here!" "Tell him we don't need any." -- Edward Abbey
%
"Define UNIVERSE; give two examples." "The perceived world; 1) mine, 2) yours."
%
"Have you lived here all your life?" "Oh, twice that long."
%
"In no language can a double positive form a negative." "Yeah, yeah..."
%
"Name two pronouns." "Who? Me?"
%
"Those good old days" really means "those good young days." -- Herbert Salzer
%
"Was that an avalanche, or was that thunder?" Mountaineers HATE that question.
%
"Wayne Newton is," he says, "an example of what America can be."
%
2.4 statute miles of intravenous surgical tubing: 1 I.V. League.
%
24 hours in a day... 24 beers in a case... Coincidence?
%
28.35 grams of prevention are worth 0.45359 kilograms of cure.
%
355/113 -- Not the famous irrational number pi, but an incredible simulation.
%
97% of what I say is correct, and I don't care about the other 4%.
%
A backscratcher will always find new itches. -- Gomme
%
A backward poet writes inverse.
%
A bartender is just a pharmacist with a limited inventory.
%
A bicycle can't stand on its own because it is two tired.
%
A bird in the bush usually has a friend in there with him.
%
A bird in the hand is safer than one overhead.
%
A bird in the hand makes it hard to blow your nose.
%
A blind skydiver knows he's approaching the ground when the leash goes slack.
%
A boss with no humor is like a job that's no fun.
%
A cauliflower is nothing but cabbage with a college education. -- Mark Twain
%
A chicken crossing the road is poultry in motion.
%
A clean tie attracts the soup of the day.
%
A clear conscience is usually the sign of a bad memory.
%
A comet is about as close to nothing as you can get and still have something.
%
A committee is an animal with at least six legs, and no brain. -- Robert Heinlein
%
A conclusion is the place where you got tired of thinking.
%
A consultant saves his client almost enough to pay his fee. -- Arnold Glasgow
%
A corkscrew is the best thing with which to open a conversation.
%
A countryman between two lawyers is like a fish between two cats. -- Franklin
%
A couple of months in the lab can often save a couple of hours in the library.
%
A crisis is when you can't say, "Let's just forget the whole thing." -- Ferguson
%
A day without fusion is like a day without sunshine.
%
A day without orange juice is like a day without orange juice.
%
A day without sunshine is like night.
%
A dean is to a faculty as a hydrant is to a dog. -- Alfred Kahn
%
A diamond is just a lump of coal that made good under pressure.
%
A dime is a dollar after the taxes are taken out.
%
A drink a day keeps the shrink away. -- Edward Abbey
%
A fail-safe circuit will destroy others. -- Klipstein
%
A fine is a tax for doing wrong. A tax is a fine for doing well.
%
A fool and his money are soon invited places.
%
A fool and his money are soon partying.
%
A fool and his money stabilize the economy.
%
A fool with money to burn soon meets his match.
%
A Freudian slip is when you say one thing but mean your mother.
%
A friend in need is a pest indeed.
%
A gambler plays slot machines. I prefer to OWN slot machines. -- Donald Trump
%
A general leading the State Department resembles a dragon commanding ducks.
%
A good compromise is where two people both end up unhappy.
%
A good landing: You can walk away. A great landing: You can reuse the airplane.
%
A good scapegoat is hard to find.
%
A harp is a nude piano.
%
A helicopter is just a bunch of parts flying in close formation.
%