-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquote.c
executable file
·6224 lines (6213 loc) · 725 KB
/
quote.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
int main(int argc, char** argv)
{
int q2QuotesLength = 6176;
char* q2Quotes[q2QuotesLength];
q2Quotes[0] = "\"There are things that are so serious that you can only joke about them.\" -- Werner Karl Heisenberg";
q2Quotes[1] = "\"You know, it's amazing how well you can get to know a woman if you just take the time out and stalk her.\" -- Dan";
q2Quotes[2] = "\"Only a mediocre man is always at his best.\" -- W. Somerset Maugham";
q2Quotes[3] = "\"To be great is to be misunderstood.\" -- Ralph Waldo Emerson";
q2Quotes[4] = "\"What does playing Uno have to do with a cow's udder?\" -- Maureen";
q2Quotes[5] = "\"Everyone is as God has made him, and oftentimes a great deal worse.\" -- Miguel De Cervantes";
q2Quotes[6] = "The man who sees, on New Year's day, Mount Fuji, a hawk, and an eggplant is forever blessed. -- Old Japanese proverb";
q2Quotes[7] = "Is it better for a woman to marry a man who loves her than a man she loves. -- Anonymous";
q2Quotes[8] = "\"How can you use my intestines as a gift?\" -- Subtitle from a Japanese movie";
q2Quotes[9] = "\"God is a comic playing to an audience that's afraid to laugh.\" -- Voltaire";
q2Quotes[10] = "\"We were talking about custard, not alcohol!\"";
q2Quotes[11] = "\"Has anybody ever seen a drama critic in the daytime? Of course not. They come out after dark, up to no good.\" -- P. G. Wodehouse";
q2Quotes[12] = "I never make stupid mistakes. Only very, very clever ones. -- The Doctor, Timewyrm: Genesys, author, John Peel";
q2Quotes[13] = "\"The time you enjoy wasting is not wasted time.\" -- Bertrand Russell";
q2Quotes[14] = "This book fills a much-needed gap. -- Moses Hadas, book reviewer";
q2Quotes[15] = "To add insult to injury. -- Phaedrus";
q2Quotes[16] = "\"Everyone thinks of changing the world, but no one thinks of changing himself.\" -- Leo Nikolaevich Tolstoy";
q2Quotes[17] = "\"If I had a knife, I'd shoot you!\" -- Tom Mullan's wife, in a heated argument.";
q2Quotes[18] = "The coast was clear. -- Lope de Vega";
q2Quotes[19] = "\"I didn't understand this at first, but YOUR CONVINCING USE OF CAPITAL LETTERS HAS MADE IT ALL CLEAR TO ME.\" -- J. Nairn";
q2Quotes[20] = "I enjoy the time that we spend together.";
q2Quotes[21] = "The sheep that fly over your head are soon to land.";
q2Quotes[22] = "\"Assassination is the extreme form of censorship.\" -- George Bernard Shaw";
q2Quotes[23] = "The world has achieved brilliance without conscience. Ours is a world of nuclear giants and ethical infants. -- General Omar Bradley";
q2Quotes[24] = "\"Mark! Neil's trying to give me prostate cancer!\" -- Marty, during a field trip bus ride, complaining to the teacher about the bus driver who wouldn't stop for a third potty break.";
q2Quotes[25] = "You get what you pay for. -- Gabriel Biel";
q2Quotes[26] = "Life is no brief candle to me. It is a sort of splendid torch which I have got a hold of for the moment, and I want to make it burn as brightly as possible before handing it on to future generations. -- George Bernard Shaw";
q2Quotes[27] = "If everything is coming your way then you're in the wrong lane.";
q2Quotes[28] = "\"I don't need an over-the-shoulder boulder-holder, I need an over-the-shoulder ummm... what's something flat?\" -- Ellie, after having watched the movie \"Beaches\", commenting on the Otto Titsling song.";
q2Quotes[29] = "You are educated when you have the ability to listen to almost anything without losing your temper or self-confidence. -- Robert Frost";
q2Quotes[30] = "If life is merely a joke, the question still remains: for whose amusement?";
q2Quotes[31] = "\"In a nation ruled by swine, all pigs are upward mobile.\" -- Hunter S. Thompson";
q2Quotes[32] = "I can relate to that.";
q2Quotes[33] = "\"Pizza! Pizza!\" [Response when a history teacher asked \"What was the motto of ancient Roman males?\"] -- Tyler";
q2Quotes[34] = "\"For NASA, space is still a high priority.\" -- Dan Quayle";
q2Quotes[35] = "Resisting temptation is easier when you think you'll probably get another chance later on.";
q2Quotes[36] = "ADORE, v.t. To venerate expectantly. -- Ambrose Bierce";
q2Quotes[37] = "\"It makes me SO happy to hear that hat-wearing people are reproducing.\" -- Overheard at work";
q2Quotes[38] = "Leave no stone unturned. -- Euripides";
q2Quotes[39] = "Chris: \"Mirror, Mirror seven fold. Who's the sexiest dressed in gold?\" Tricky: \"You must be talking about me, cousin.\" Chris: \"Katie, YOU'RE NAKED.\"";
q2Quotes[40] = "The worst is enemy of the bad. -- The writing implement is more potent than the claymore.";
q2Quotes[41] = "Your fortune stateth: You will be divorced within a year.";
q2Quotes[42] = "Your fortune stateth: So this it it. We're going to die.";
q2Quotes[43] = "Two is company, three is an orgy.";
q2Quotes[44] = "I have seen the Great Pretender and he is not what he seems.";
q2Quotes[45] = "Literature is strewn with the wreckage of those who have minded beyond reason the opinion of others. -- Virginia Woolf";
q2Quotes[46] = "I think people tend to forget that trees are living creatures. They're sort of like dogs. Huge, quiet, motionless dogs, with bark instead of fur.";
q2Quotes[47] = "\"God created sex. Priests created marriage.\" -- Voltaire";
q2Quotes[48] = "It is a lesson which all history teaches wise men, to put trust in ideas, and not in circumstances. -- Emerson";
q2Quotes[49] = "\"I believe that genius is an infinite capacity for taking life by the scruff of the neck.\" -- Christopher Quill";
q2Quotes[50] = "Children today are tyrants. They contradict their parent, gobble their food, and tyrannize their teachers. -- Socrates";
q2Quotes[51] = "Maybe God was just borrowing my pearls for a few days. -- Jody LaFerriere, on lost items";
q2Quotes[52] = "Chris: The living room is 19 feet by 15 feet. The den is about a foot less each way. Cristina: There you go again... Chris: What? Cristina: You keep mixing dimensions. Chris: Huh? Cristina: Exactly how many feet are in a foot?";
q2Quotes[53] = "The grass is always greener on the other side of your sunglasses.";
q2Quotes[54] = "Cults are cool if they don't suck. -- Lindy, reacting to Heaven's Gate";
q2Quotes[55] = "I had ambition, by which sin The angels fell; I climbed, and step by step, oh Lord, Ascended into Hell -- W. H. Davies, Ambition";
q2Quotes[56] = "One can survive everything, nowadays, except death, and live down everything except a good reputation. -- Oscar Wilde";
q2Quotes[57] = "You know, if stupidity was a river, you would be... a really big river. -- Tomas Terfloth";
q2Quotes[58] = "Everyone believes very easily whatever they fear or desire. -- Jean de La Fontaine";
q2Quotes[59] = "\"Let's let that cool down while I collect the gods.\" -- Scott Griffin";
q2Quotes[60] = "My nose is driving me craziness! -- Edward, age 3, who couldn't sleep due to a runny nose.";
q2Quotes[61] = "I used to be Snow White, but I drifted. -- Mae West";
q2Quotes[62] = "\"The fantastic advances in the field of communication constitute a greater danger to the privacy of the individual.\" -- Earl Warren";
q2Quotes[63] = "\"Happiness is the interval between periods of unhappiness.\" -- Don Marquis";
q2Quotes[64] = "I didn't have time to write a short letter, so I wrote a long one instead. -- Mark Twain";
q2Quotes[65] = "You can fool some of the people all of the time, and all of the people some of the time, but you can make a fool of yourself anytime.";
q2Quotes[66] = "The meek will inherit the earth -- if that's OK with you.";
q2Quotes[67] = "I refuse to have a battle of wits with an unarmed person.";
q2Quotes[68] = "\"This is *not* a football game, Netcom!\" -- The Opry House";
q2Quotes[69] = "\"Under a government which imprisons any unjustly, the true place for a just man is also a prison.\" -- Henry David Thoreau";
q2Quotes[70] = "Your fortune stateth: You have the power to influence all with whom you come in contact.";
q2Quotes[71] = "\"Man, it's like a desert out here\" -- Eric, as he was golfing in Las Vegas";
q2Quotes[72] = "It's not the fall that kills you, it's the landing.";
q2Quotes[73] = "\"I may not be totally perfect, but parts of me are excellent.\" -- Ashleigh Brilliant";
q2Quotes[74] = "\"I'm a genetic mutant.\" -- Dan Aykroyd";
q2Quotes[75] = "One man's Mede is another man's Persian. -- George M. Cohan";
q2Quotes[76] = "\"It is better to prevent crimes than to punish them.\" -- Cesare Bonesana di Beccaria";
q2Quotes[77] = "\"I didn't mean to do that. I thought it was a bathroom.\" -- Ryan";
q2Quotes[78] = "\"To fall into a habit is to begin to cease to be.\" -- Miguel de Unamuno y Jugo";
q2Quotes[79] = "Tommy, i'm gonna kill you! -- as the english teacher tries to choke Tommy in the middle of class.";
q2Quotes[80] = "\"I swear, if you existed I'd divorce you.\" -- Edward Albee";
q2Quotes[81] = "It's not whether you win or lose, it's how you place the blame.";
q2Quotes[82] = "This must be morning. I never could get the hang of mornings.";
q2Quotes[83] = "Your fortune stateth: Excellent day for putting Slinkies on an escalator.";
q2Quotes[84] = "Misery loves company, but company does not reciprocate.";
q2Quotes[85] = "\"I going to sell books for Amazot Dong Kong on my homepage.\" -- Julie (she meant Amazon.com)";
q2Quotes[86] = "LOW-BRED, adj. \"Raised\" instead of brought up. -- Ambrose Bierce";
q2Quotes[87] = "I know I don't know everything, but I don't know what I don't know, so I can't really study. -- Deborah the night before her biology final, trying to justify why she was playing with her computer rather than studying.";
q2Quotes[88] = "You don't think that just because I'm a grandma, that means that I don't check out other peoples' bodies? -- Grandma E";
q2Quotes[89] = "When you're away, I'm restless, lonely- Wretched, bored, dejected; only- here's the rub, my darling dear, I feel the same when you are here. -- Samuel Hoffenstein";
q2Quotes[90] = "If you wish to be happy for a month, kill your pig and eat it.";
q2Quotes[91] = "If your professor wrote it, it's as near to the truth as you ever need to get. -- John Watson, University of Canterbury";
q2Quotes[92] = "\"To those who think that the law of gravity interferes with their freedom, there is nothing to say.\" -- Lionel Tiger";
q2Quotes[93] = "Youth is wasted on the young. -- George Bernard Shaw";
q2Quotes[94] = "\"HELO. My $name is sendmail.cf. You filled my spooldir. Prepare to VRFY.\" -- Phil Homewood";
q2Quotes[95] = "It is when I struggle to be brief that I become obscure. -- Quintus Horatius Flaccus (Horace)";
q2Quotes[96] = "ABATIS, n. Rubbish in front of a fort, to prevent the rubbish outside from molesting the rubbish inside. -- Ambrose Bierce";
q2Quotes[97] = "Your fortune stateth: You're almost as happy as you think you are.";
q2Quotes[98] = "\"We may eventually come to realize that chastity is no more a virtue than malnutrition.\" -- Alexander Comfort";
q2Quotes[99] = "\"If people are good only because they fear punishment, and hope for reward, then we are a sorry lot indeed.\" -- Albert Einstein";
q2Quotes[100] = "\"Looks like a good explosion to kiss ratio.\" -- Jeff Rowley about \"The 5th Element\". The ratio was was blown by the end.";
q2Quotes[101] = "\"I can never remember whether or not there's an 'R' at the end of 'LAVA'.\" -- geography prof. at Univ. of New Mexico, in a South African accent.";
q2Quotes[102] = "People are more violently opposed to fur than leather because it's safer to harass rich women than motorcycle gangs.";
q2Quotes[103] = "\"I'm making a diary!\" -- Paul M., while wrapping tape around his Government book and putting staples into it.";
q2Quotes[104] = "The proof of the pudding is in the eating. -- Miguel de Cervantes";
q2Quotes[105] = "I have found the paradox that if I love until it hurts, then there is no hurt, but only more love. -- Mother Teresa";
q2Quotes[106] = "Aaron: Man, I hate the letter \"S\"! Eric: Why? Aaron: 'Cause it's hard to write!";
q2Quotes[107] = "We come to love not by finding a perfect person, but by learning to see an imperfect person perfectly. -- Anonymous";
q2Quotes[108] = "To err is human, to moo bovine.";
q2Quotes[109] = "Money can do anything. Why, it can help stamp out poverty. -- Some guy who has sold $9 million worth of knives.";
q2Quotes[110] = "\"_Prospero's Books_ is the _Terminator 2_ for intellectuals.\" -- Peter Greenaway";
q2Quotes[111] = "Robert: Hey, that's my pen. You stole it! Joe: No, my father gave me this pen. Robert: Your father is a thief!";
q2Quotes[112] = "I haven't lost my mind; I know exactly where I left it.";
q2Quotes[113] = "\"I'm gonna kill you so hard!\" -- A failed attempt to sound tough";
q2Quotes[114] = "% Ellen is here! Ellen is here! -- exclaimed when Ellen walked into a 90-minute class 88 minutes late.";
q2Quotes[115] = "\"Well, an orgasm is part of an population, which is part of an ecosystem.\" -- Tammy, in science class.";
q2Quotes[116] = "A mind is a wonderful thing to waste.";
q2Quotes[117] = "It takes Empire builders to build Empires! -- Chuck Lee, ca 1973";
q2Quotes[118] = "\"Experience is that marvelous thing that enables you to recognize a mistake when you make it again.\" -- Franklin P. Jones";
q2Quotes[119] = "It is wise to keep in mind that neither success nor failure is ever final. -- Roger Babson";
q2Quotes[120] = "An ounce of hypocrisy is worth a pound of ambition. -- Michael Korda";
q2Quotes[121] = "\"Have you ever noticed how people who wear camouflage gear really stand out in a crowd?\" -- Peter Thomas";
q2Quotes[122] = "Quack! Quack!! Quack!!";
q2Quotes[123] = "Just buy a box of popcorn and a Coca-Cola and sit back and watch. -- James Carville, Clinton advisor, offering advice for Democrats on the term-limits vote in the House";
q2Quotes[124] = "-- It is fruitless to become lachrymose over precipitately departed lacteal fluid.";
q2Quotes[125] = "'Factory refurbished' -- does that mean it's junk? -- Mike Limrick, inquiring about a \"factory refurbished\" Zip drive he saw in a catalog.";
q2Quotes[126] = "Although the course may change sometimes, rivers always reach the sea. -- Led Zeppelin, Ten Years Gone";
q2Quotes[127] = "\"So, like, is Worf from a different planet or something?\" -- uttered by a friend upon walking in on a episode of Star Trek: TNG.";
q2Quotes[128] = "\"Justice is incidental to law and order.\" -- J. Edgar Hoover";
q2Quotes[129] = "I often think that the night is more alive and more richly colored than the day. -- Vincent Van Gogh";
q2Quotes[130] = "\"The faith that stands on authority is not faith.\" -- Ralph Waldo Emerson";
q2Quotes[131] = "Your fortune stateth: You will be held hostage by a radical group.";
q2Quotes[132] = "\"I am a fan of automation // And I never carry cash.\" -- Engines of Aggression";
q2Quotes[133] = "\"Science is nothing but developed perception, interpreted intent, common sense rounded out and minutely articulated.\" -- George Santayana";
q2Quotes[134] = "\"That doesn't smell like an ocean breeze, it smells like a urinal disinfectant.\" -- Jen's mom, about a candle";
q2Quotes[135] = "\"It's just not stimulating the right part of my brain.\" -- uttered by a close friend when asked about his job.";
q2Quotes[136] = "\"One form to rule them all, one form to find them, one form to bring them all and in the darkness rewrite the hell out of them.\" -- DEC, sendmail.cf";
q2Quotes[137] = "Your fortune stateth: If you stand on your head, you will get footprints in your hair.";
q2Quotes[138] = "\"The defining function of the artist is to cherish consciousness.\" -- Max Eastman";
q2Quotes[139] = "The road to Hades is easy to travel. -- Bion";
q2Quotes[140] = "You know, if you weren't one of my best friends, I wouldn't like you very much. -- Alana, after Allyson joking insulted her";
q2Quotes[141] = "I hate it when strange gourds try to undress you.\" -- Scott N., at a Halloween party when a pumpkin was hitting on him.";
q2Quotes[142] = "\"Learning is not compulsory. Neither is survival.\" -- W. Edwards Deming";
q2Quotes[143] = "-- Freedom from incrustations of grime is contiguous to rectitude.";
q2Quotes[144] = "\"Organic chemistry is the chemistry of carbon compounds. Biochemistry is the study of carbon compounds that crawl.\" -- Mike Adams";
q2Quotes[145] = "It is better to have loved and lost -- much better.";
q2Quotes[146] = "\"However, never daunted, I will cope with adversity in my traditional manner...sulking and nausea.\" -- Tom K. Ryan";
q2Quotes[147] = "A metaphor is like a simile.";
q2Quotes[148] = "\"Molecules are lazy, just like organic chemists.\" -- Dr. French";
q2Quotes[149] = "The Bible tells us to love our neighbors, and also to love our enemies; probably because generally they are the same people. -- G. K. Chesterton";
q2Quotes[150] = "In this world, nothing is certain but death and taxes. -- Benjamin Franklin";
q2Quotes[151] = "\"The test of tolerance comes when we are in a majority; the test of courage comes when we are in a minority.\" -- Ralph W. Stockman";
q2Quotes[152] = "Life is fraught with opportunities to keep your mouth shut.";
q2Quotes[153] = "Common sense is the collection of prejudices acquired by age eighteeen. -- Albert Einstein";
q2Quotes[154] = "Leigh Ann spotted Tommy and a friend at class registration at the local college.... Leigh Ann: \"What class did you guys just sign up for?\" Tommy: \"English 1302\" Leigh Ann: \"Ewwwwwww! You have to read books and stuff!\"";
q2Quotes[155] = "He who laughs last didn't get the joke.";
q2Quotes[156] = "Jimmy: \"What if the sky was pink?\" Adam: \"You would wonder what it was like if it was blue. This is it.\"";
q2Quotes[157] = "You must first have a lot of patience to learn to have patience. -- Stanislaw J. Lec";
q2Quotes[158] = "\"One grows tired of jelly babies, Castellan. One grows tired of almost everything, Castellan, except power.\" -- The Doctor";
q2Quotes[159] = "At Thanksgiving Dinner: Max (Grandpa): Get ready kiddies! We're taking shots at Christmas. Shari (Mom), as she stabs him with a fork: No way my 16 year old is drinking with you!";
q2Quotes[160] = "If we knew what we were doing, it wouldn't be called research, would it? -- Albert Einstein";
q2Quotes[161] = "This turtleneck is really tight. -- Heather Carlson";
q2Quotes[162] = "\"When people are bored, it is primarily with their own selves that they are bored.\" -- Eric Hoffer";
q2Quotes[163] = "In answer to the question of why it happened, I offer the modest proposal that our Universe is simply one of those things which happen from time to time. -- Edward P. Tryon";
q2Quotes[164] = "\"A word to the wise is unnecessary.\" -- La Rouchefoucauld";
q2Quotes[165] = "You can't beat me! I'm medicated! -- Me, after takling my alergy medicine";
q2Quotes[166] = "A man sits with a pretty girl for an hour, it seems like a minute. He sits on a hot stove for a minute, it's longer than any hour. That is relativity. -- Albert Einstein";
q2Quotes[167] = "\"A woman who thinks she is intelligent demands the same rights as man. An intelligent woman gives up.\" -- Sidonie Gabrielle Colette";
q2Quotes[168] = "Did it ever occur to you that fat chance and slim chance mean the same thing? Or that we drive on parkways and park on driveways?";
q2Quotes[169] = "An idle mind is worth two in the bush.";
q2Quotes[170] = "\"He who will not reason is a bigot; he who cannot is a fool; and he who dares not, is a slave.\" -- William Drummond";
q2Quotes[171] = "\"Shut up, forks!\" -- Jennie \"Olga\"";
q2Quotes[172] = "\"Some people move in lesbian circles. I move in bisexual dodecahedrons.\" -- R.K.";
q2Quotes[173] = "\"I'm stuck.... Reagan help me! I'm locked in!!!\" -- my coach after realizing she had locked herself into the stall in a restuarant";
q2Quotes[174] = "\"The belief in a supernatural source of evil is not necessary; men alone are quite capable of every wickedness.\" -- Joseph Conrad";
q2Quotes[175] = "\"The intro and commercial break thingies on this show are weird\" -- Ellie, while watching MTV's Top 10 Breakdown.";
q2Quotes[176] = "\"I've never felt so blonde in my entire life.\" -- Jennifer, visiting a worship service at Temple Adath Israel.";
q2Quotes[177] = "\"I'm gonna beat your butt into the ground so hard you'll feel it!\" -- Ellie's brother trying to be tough";
q2Quotes[178] = "\"We don't know why he was naked. Guess he took his clothes off.\" -- A Cave Creek, AZ policeman explaining a nude man caught in someone else's chimney.";
q2Quotes[179] = "Jen: \"I smell like garlic.\" Bri: \"Maybe you're possessed by an evil spirit.\" Jen: \"If all it does is smell like garlic, that's fine by me.\"";
q2Quotes[180] = "It should be illegal to play music containing sirens on the radio. -- Matthew, after pulling to the side of the road to make way for a nonexistant ambulance.";
q2Quotes[181] = "Your fortune stateth: You may worry about your hair-do today, but tomorrow much peanut butter will be sold.";
q2Quotes[182] = "Double!";
q2Quotes[183] = "\"Unquestionably, there is progress. The average American now pays out twice as much in taxes as he formerly got in wages.\" -- H.L. Mencken";
q2Quotes[184] = "I need to grow another foot. (long pause) Taller! I meant taller! -- Me, Kristy, while trying to get something out of my reach at work.";
q2Quotes[185] = "I don't know as much as God, but I know more than He did at my age. -- Henry Kissinger";
q2Quotes[186] = "\"Sizzy needs a dose of medicine, a bug in her eye, a stop and go light on her cheek, And she can't play with Angela, Angela, Angela!\" -- Ellie's brother, age 4, singing to Ellie, age 7, when she was sick.";
q2Quotes[187] = "It has come to my attention that it is difficult to leave a desktop computer on an airport terminal bus without really trying. -- Greg";
q2Quotes[188] = "Remember the... the... uhh.....";
q2Quotes[189] = "There is no proverb that is not true. -- Cervantes";
q2Quotes[190] = "A jury consists of twelve persons chosen to decide who has the better lawyer. -- Robert Frost";
q2Quotes[191] = "We make a living by what we get, we make a life by what we give. -- Winston Churchill";
q2Quotes[192] = "Paul: Hey Benji! Wake up! Benji: I'm naked. Paul: Okay. Want some hamburgers?";
q2Quotes[193] = "Integrity without knowledge is weak and useless, and knowledge without integrity is dangerous and dreadful. -- Samuel Johnson";
q2Quotes[194] = "\"Every religion goes through a period of zealous expansion 700 years after its founding. Linux just speeds things up on Internet Time Squared.\" -- cdr";
q2Quotes[195] = "\"Chastity always takes its toll. In some it produces pimples; in others, sex laws.\" -- Karl Kraus";
q2Quotes[196] = "Nobody ever died of laughter. -- Max Beerbohm";
q2Quotes[197] = "\"Jesus died too soon. If he had lived to my age he would have repudiated his doctrine.\" -- Friedrich Nietzsche";
q2Quotes[198] = "They should do a naked library run here. It'd be warmer than the quad run, and people could sit in the carrels and watch people run by. Or they could have a day when you have to be naked to go in the library -- I bet it'd be really crowded. -- Deborah";
q2Quotes[199] = "If there is no God, who pops up the next Kleenex? -- Art Hoppe";
q2Quotes[200] = "When in doubt, follow your heart.";
q2Quotes[201] = "I was gratified to be able to answer promptly. I said, \"I don't know.\" -- Mark Twain";
q2Quotes[202] = "\"I don't see how people can eat shrimp cocktail! People who like it cold have never had it hot before!\" -- My brother, on shrimp";
q2Quotes[203] = "Your fortune stateth: You will be married within a year.";
q2Quotes[204] = "\"These are days you'll remember.\" If you recall nothing else from your graduation ceremony, remember you heard the New Jersey Governor quote from 10,000 Maniacs. -- Christine Todd, NJ Governor, Wheaton College Graduation, 1995";
q2Quotes[205] = "A little inaccuracy saves a world of explanation. -- C.E. Ayres";
q2Quotes[206] = "Jon, what setting do I nead to put the gas ring on to boil water? -- Naomi, age 18";
q2Quotes[207] = "\"It's a case of the blind leading the stupid.\" -- Brad Bigelow";
q2Quotes[208] = "I'm changing mathematics. From now on when you see 28, you have to write 27. If anyone asks you why you're doing that, just tell them your Math 12 teacher said so. -- Nitu Kitchloo (Deborah's Math 12 teacher)";
q2Quotes[209] = "Great spirits have always found violent opposition from mediocrities. The latter cannot understand it when a man does not thoughtlessly submit to hereditary prejudices but honestly and courageously uses his intelligence. -- Albert Einstein";
q2Quotes[210] = "Oh babycakes! The way he moves his como se llama, I could watch him all day long. Woo-hoo! -- Mrs. Heep, U.S. History teacher, trying to get the class enthused about Chuck Norris.";
q2Quotes[211] = "Elizabeth: Can I have fifty cents? Tony: You need some shrimp? (Elizabeth wanted a drink while Tony fished.)";
q2Quotes[212] = "Live TV died in the late 1950s, electronic bulletin boards came along in the mid-1980s, meaning there was about a 25-year gap when it was difficult to put your foot in your mouth and have people all across the country know about it. -- Mark Leeper";
q2Quotes[213] = "For thee the wonder-working earth puts forth sweet flowers. -- Titus Lucretius Carus";
q2Quotes[214] = "Life is a succession of lessons enforced by immediate reward, or, oftener, by immediate chastisement. -- Ernest Dimnet";
q2Quotes[215] = "I know on which side my bread is buttered. -- John Heywood";
q2Quotes[216] = "Blessed are they who Go Around in Circles, for they Shall be Known as Wheels.";
q2Quotes[217] = "\"Julie, why do we have to be relatives?\" -- As Julie rests her head on a male cousin's shoulder.";
q2Quotes[218] = "I am about to hatch more sea monkeys. -- Lisa";
q2Quotes[219] = "\"Early morning cheerfulness can be extremely obnoxious.\" -- William Feather";
q2Quotes[220] = "Humanity has advanced, when it has advanced, not because it has been sober, responsible, and cautious, but because it has been playful, rebellious, and immature. -- Tom Robbins";
q2Quotes[221] = "\"The steady state of disks is full.\" -- Ken Thompson";
q2Quotes[222] = "\"I did five years of the same major from beginning to start.\" -- Shannon Hartzler";
q2Quotes[223] = "\"The rain has such a friendly sound to one who's six feet underground.\" -- Edna St. Vincent Millay";
q2Quotes[224] = "\"I'll whack you with the trout! I swear to god!\" -- Tyro";
q2Quotes[225] = "I have been attacked by Rush Limbaugh on the air, an experience somewhat akin to being gummed by a newt. It doesn't actually hurt, but it leaves you with slimy stuff on your ankle. -- Molly Ivins";
q2Quotes[226] = "OMEN, n. A sign that something will happen if nothing happens. -- Ambrose Bierce";
q2Quotes[227] = "Dyslexics have more fnu.";
q2Quotes[228] = "The work of internal government has become the task of controlling the thousands of fifth-rate men. -- Henry B. Adams";
q2Quotes[229] = "Your fortune stateth: You are going to have a new love affair.";
q2Quotes[230] = "\"Democracy is a form of government that substitutes election by the incompetent many for appointment by the corrupt few.\" -- George Bernard Shaw";
q2Quotes[231] = "But I don't have an \"any key\" on my computer!";
q2Quotes[232] = "\"Oh my god, I have a talent!\" -- Katherine Payerle, on the subject of the xylophone guy on Franklin Street.";
q2Quotes[233] = "ERUDITION, n. Dust shaken out of a book into an empty skull. -- Ambrose Bierce";
q2Quotes[234] = "\"As empty vessels make the loudest sound, so they that have the least wit are the greatest blabbers.\" -- Plato";
q2Quotes[235] = "Kate: \"So how's that Navada guy doin?\" Shay: \"You mean Navaid?\" Kate: \"Navaid, Navada, Navajo...same difference\"";
q2Quotes[236] = "The mosquito exists to keep the mighty humble.";
q2Quotes[237] = "\"That stuff could gag a maggot, but I'd still eat it if it had chocolate sauce on it.\" -- This other crazy bum";
q2Quotes[238] = "Your fortune stateth: You are magnetic in your bearing.";
q2Quotes[239] = "\"Everything is still the same. It's just a little different now.\" -- Michelle, during a visit to our old high school";
q2Quotes[240] = "If all men were brothers, would you let one marry your sister?";
q2Quotes[241] = "If at first you don't succeed, redefine success.";
q2Quotes[242] = "\"Unless there's blood, gore, or snot, you people don't seem to able to pay attention\" -- Overheard outside an English class in progress";
q2Quotes[243] = "\"You are sitting on the breath of a long and crazy sentence.\" -- J Ryan Stradal";
q2Quotes[244] = "Nothing endures but change. -- Heraclitus";
q2Quotes[245] = "A squeegee by any other name wouldn't sound as funny.";
q2Quotes[246] = "A good scapegoat is hard to find.";
q2Quotes[247] = "The two that it said it couldn't, it did, and the one it didn't claim it couldn't, it didn't. -- Paul";
q2Quotes[248] = "Gordon: Yeah... well they can just kick my butt! [receives blank stares, and the laughter] Gordon: kiss! kiss! i meant they can just kiss my butt!";
q2Quotes[249] = "\"Where are you taking us?\" \"We're going to HELL!\" \"Do they have food there?\" \"Burnt food.\" \"Cajun food.\"";
q2Quotes[250] = "He who laughs has not yet heard the bad news. -- Bertolt Brecht";
q2Quotes[251] = "\"We shape our buildings, and forever afterwards our buildings shape us.\" -- Winston Churchill";
q2Quotes[252] = "The great art of life is sensation, to feel that we exist, even in pain. -- Lord Byron";
q2Quotes[253] = "\"New York is the only city in the world where you can get deliberately run down on the sidewalk by a pedestrian.\" -- Russell Baker";
q2Quotes[254] = "Your fortune stateth: You will get what you deserve.";
q2Quotes[255] = "I hate quotations. -- Ralph Waldo Emerson";
q2Quotes[256] = "13-hour roadtrip, 5 am: Me: Uhhh... you're in the middle of the road. David: (matter-of-factly) I know. 2 hours later: Me: You're driving off the road. David: (matter-of-factly again) I know that. (Maybe you just had to be there. Or be very tired.)";
q2Quotes[257] = "Becky: Why are you taking his groin? Emily: It's plastic!";
q2Quotes[258] = "Romeo and Juliet ... and MaryBeth -- Angela, listing all the Shakespeare characters that she knows.";
q2Quotes[259] = "Guys are lucky because they get to grow mustaches. I wish I could. It's like having a little pet for your face. -- Anita Wise";
q2Quotes[260] = "The whole art of teaching is only the art of awakening the natural curiosity of young minds for the purpose of satisfying it afterwards. -- Anatole France";
q2Quotes[261] = "\"I'm huge! I eat sheep whole!\" -- Jayson putting words into the mouth of the goat from Disney's \"The Hunchback of Notre Dame\", now often used to refer to anything or anyone moderately large.";
q2Quotes[262] = "Middle age is that period of time between the last time you're carded for alcohol and the first time you're carded for your seniors discount. -- Phil Wallace, upon using his AARP card for the first time.";
q2Quotes[263] = "We cannot really love anybody with whom we never laugh. -- Agnes Repplier";
q2Quotes[264] = "\"I'd like to announce that we're having an unannounced quiz tommorrow.\" -- Dr. French";
q2Quotes[265] = "Sarah to Liz, after referring to Liz's father's truck: Sarah: \"Is that a stick?\" Liz: \"Where?\"";
q2Quotes[266] = "\"Legend -- a lie that has attained the dignity of age.\" -- H. L. Mencken";
q2Quotes[267] = "Oh, sorry, Mrs. S. I was just calling to listen to your answering machine. -- Myself, after my friend Laura S. told me that their answering machine message was really cute and didn't think anyone was home.";
q2Quotes[268] = "This is a test. It is only a test. Had it been an actual job, you would have received raises, promotions, and other signs of appreciation. -- Anonymous";
q2Quotes[269] = "\"In the beginning, the universe was created. This has made a lot of people very angry, and is generally considered to have been a bad move.\" -- D. Adams";
q2Quotes[270] = "The imaginary friends I had as a kid dropped me because their friends thought I didn't exist. -- Aaron Machado";
q2Quotes[271] = "If love is blind, then I'm Helen Keller. -- Kris";
q2Quotes[272] = "\"FLOOR IT! KILL FASTER!\" -- \"Uncle\" Ben yelling at a speeder who cut us off.";
q2Quotes[273] = "\"Correct English is the slang of prigs who write history and essays. And the strongest slang of all is the slang of poets.\" -- George Eliot";
q2Quotes[274] = "\"I just need enough to tide me over until I need more.\" -- Bill Hoest";
q2Quotes[275] = "I have a terrible headache, I was putting on toilet water and the lid fell.";
q2Quotes[276] = "\"Praying that you'll win a game works because God hates the other athletes.\" -- my brother";
q2Quotes[277] = "Your fortune stateth: You can do very well in speculation where land or anything to do with dirt is concerned.";
q2Quotes[278] = "Friend: \"Do you play tennis on vacation?\" Me: \"No.\" Friend: \"That's kinda weird, because most people go on vacation only to play tennis.\"";
q2Quotes[279] = "Alex: Okay, man, well I'll see you later... Chris: Okay, but my name's not Manuel.";
q2Quotes[280] = "Don't get mad, get even. -- Joseph P. Kennedy";
q2Quotes[281] = "\"Why am I looking up 'Hampshire'? I should be looking for 'New'....\" -- Paul";
q2Quotes[282] = "Nothing has really happened until it has been recorded. -- Virginia Woolf";
q2Quotes[283] = "\"Everybody experiences far more than he understands. Yet it is experience, rather than understanding, that influences behavior.\" -- Marshall McLuhan";
q2Quotes[284] = "\"Some people like my advice so much that they frame it upon the wall instead of using it.\" -- Gordon R. Dickson";
q2Quotes[285] = "Anyone who considers arithmetical methods of producing random digits is, of course, in a state of sin. -- John Von Neuman";
q2Quotes[286] = "\"Intellectual brilliance is no guarentee against being dead wrong.\" -- David Fasold";
q2Quotes[287] = "I'll tell you what's bizarre... that guy's eyebrows are bizarre. -- Neil's Mom, while watching an OMC video.";
q2Quotes[288] = "\"That music sounds like two skeletons having sex, and one of them is wearing a bunch of keys\" -- Zak listening to T-Power's live set";
q2Quotes[289] = "No, I'm relegating *humanity* to the \"shallow bitch\" category. -- Jeremy Garber";
q2Quotes[290] = "Your fortune stateth: Think twice before speaking, but don't say \"think think click click\".";
q2Quotes[291] = "\"Beware... the clowns....\" -- Michelle Zalas, after 2 glasses of punch.";
q2Quotes[292] = "\"Have you lived here all your life?\" \"Oh, twice that long.\"";
q2Quotes[293] = "Matt's hand is neither spiral-bound nor purple. -- Paul";
q2Quotes[294] = "Laura: It's so nice you trust me with the mouse! Alana: Um, actually, do you want to trade places? (on Alana's computer after Laura clicks someplace random...) <Laura shakes no> Alana: Well, then I get the keyboard!";
q2Quotes[295] = "\"My brand-new Scooby-doo boxer-shorts are more and more comfortable by the minute!\" -- Curt the wonder Field Service Engineer.";
q2Quotes[296] = "Darryl, playing a game and trying to describe the wrong word: Darryl: We were just doing this in front of the Christmas Tree! Shannon: Photography! Dad: That's great, but the word was \"Pornography\".";
q2Quotes[297] = "My Dad wouldn't buy me a car so I got baptised. -- Overheard on an elevator.";
q2Quotes[298] = "Your fortune stateth: You are confused; but this is your normal state.";
q2Quotes[299] = "\"All that is human must retrograde if it do not advance.\" -- Edward Gibbon";
q2Quotes[300] = "Bushydo -- the way of the shrub. Bonsai!";
q2Quotes[301] = "\"Forgive him, for he believes that the customs of his tribe are the laws of nature!\" -- George Bernard Shaw";
q2Quotes[302] = "Let he who takes the plunge remember to return it by Tuesday.";
q2Quotes[303] = "Hey! The McDonald's just turned off! -- Alyssa";
q2Quotes[304] = "Your fortune stateth: You have a will that can be influenced by all with whom you come in contact.";
q2Quotes[305] = "\"Only three rules to business. One, buy low, sell high. Two, don't spend more than the difference. Three, always pay taxes, 'cause the government carries guns.\" -- Royal Litton";
q2Quotes[306] = "Being on the tightrope is living; everything else is waiting. -- Karl Wallenda";
q2Quotes[307] = "A homeowner's reach should exceed his grasp, or what's a weekend for?";
q2Quotes[308] = "Amnesia used to be my favorite word, but then I forgot it.";
q2Quotes[309] = "Far duller than a serpent's tooth it is to spend a quiet youth.";
q2Quotes[310] = "\"He flung himself on his horse and rode madly off in all directions.\"";
q2Quotes[311] = "\"Language shapes the way we think, and determines what we can think about.\" -- Benjamin Whorf";
q2Quotes[312] = "Your fortune stateth: \"Life, loathe it or ignore it, you can't like it.\" -- Marvin, \"Hitchhiker's Guide to the Galaxy\"";
q2Quotes[313] = "Icky icky icky icky fKANG zoop-boing n zowzyin... -- The Knights who so recently said \"Nee!\", Monty Python, British comedy television show";
q2Quotes[314] = "I believe in nothing, everything is sacred. I believe in everything, nothing is sacred. -- Tom Robbins, Even Cowgirls Get the Blues";
q2Quotes[315] = "Charlotte: What did you see on my webpage? Me: Purple writing. Charlotte: It's blue. Me: Purple, blue, same color!";
q2Quotes[316] = "Your fortune stateth: Your business will assume vast proportions.";
q2Quotes[317] = "\"OK, now that you're all logged on to the computers, I want you to log out and then use the programs.\" -- Wally DeBord (a.k.a. DeReallyBored), the worst Internet teacher you ever can have.";
q2Quotes[318] = "\"We sleep when we stop thinking or caring if we live or die.\" -- Ethan Pfenning";
q2Quotes[319] = "Time will end all my troubles, but I don't always approve of Time's methods.";
q2Quotes[320] = "If time heals all wounds, how come the belly button stays the same?";
q2Quotes[321] = "\"What time is it?\" \"I don't know, it keeps changing.\"";
q2Quotes[322] = "We learn from experience that men never learn anything from experience. -- George Bernard Shaw";
q2Quotes[323] = "\"What's the difference between a Dice Clay concert and a Klan rally? Nothing. Trick question.\" -- Bob Goldthwait";
q2Quotes[324] = "Your fortune stateth: If you learn one useless thing every day, in a single year you'll learn 365 useless things.";
q2Quotes[325] = "Your fortune stateth: Time to be aggressive. Go after a tattooed Virgo.";
q2Quotes[326] = "\"The government of the United States is not, in any sense, founded on the Christian religion.\" -- George Washington";
q2Quotes[327] = "Love looks through a telescope; envy, through a microscope. -- Josh Billings";
q2Quotes[328] = "I want a Magic 9-ball. -- Matthew";
q2Quotes[329] = "Life does not cease to be funny when people die any more than it ceases to be serious when people laugh. -- George Bernard Shaw";
q2Quotes[330] = "\"The universe is actively evil and passively good.\" -- Z. James Wang";
q2Quotes[331] = "\"Anarchism is founded on the observation that since few men are wise enough to rule themselves, even fewer are wise enough to rule others.\" -- Edward Abbey";
q2Quotes[332] = "KNEE-JERK IRONY: The tendency to make flippant ironic comments as a reflexive matter of course in everyday conversation. -- Douglas Coupland";
q2Quotes[333] = "\"Ummmm.... you mean we need money?\" -- Michael, heard talking to bouncer while trying to get into a Poster Children concert.";
q2Quotes[334] = "Gravitation can not be held responsible for people falling in love. -- Albert Einstein";
q2Quotes[335] = "Most burning issues generate far more heat than light.";
q2Quotes[336] = "\"The book that I want is not here. This is not where the book is that I want.\" -- Jen";
q2Quotes[337] = "\"I've had people lick MY eyeball... by accident.\" -- Mel";
q2Quotes[338] = "CLERGYMAN, n. A man who undertakes the management of our spiritual affairs as a method of better his temporal ones. -- Ambrose Bierce";
q2Quotes[339] = "\"A lady is always grateful for a sincere compliment, so long as you don't try to knock her down with it.\" -- Mark Twain";
q2Quotes[340] = "\"No, really, who is Sean Connery? Does he go to our school?\" -- Tammy, after having too much Surge.";
q2Quotes[341] = "Why not go out on a limb? Isn't that where the fruit is?";
q2Quotes[342] = "I like spinach, but I wouldn't just sit down and eat it if I were by myself. -- Karen";
q2Quotes[343] = "A true gentleman is one who is never unintentionally rude. -- Oscar Wilde";
q2Quotes[344] = "If you want something done right, shut up and get me a cappuccino. -- Bryan";
q2Quotes[345] = "\"Every law is an infraction of liberty.\" -- Jeremy Bentham";
q2Quotes[346] = "\"Ron and Nancy got the house, but Sid and Nancy rule.\" -- Dar Williams";
q2Quotes[347] = "When life hands you lemons, pucker up! -- Kelli Girl";
q2Quotes[348] = "Humor is the first of the gifts to perish in a foreign tongue. -- Virginia Woolf";
q2Quotes[349] = "\"Que sera, seratonin! (Meep.)\" -- Mercy";
q2Quotes[350] = "The only reason people get into accidents while driving drunk is because they don't practice it enough. -- Tina K.";
q2Quotes[351] = "\"To know all is not to forgive all. It is to despise everybody.\" -- Quentin Crisp";
q2Quotes[352] = "\"Total chaos; that's what I like! Out of chaos comes reason. Out of reason, science.\" -- _God Told Me To_";
q2Quotes[353] = "Only positive consequences encourage good future performances. -- Kenneth H. Blanchard";
q2Quotes[354] = "Why isn't there a special name for the tops of your feet? -- Lily Tomlin";
q2Quotes[355] = "If you are going to walk on thin ice, you may as well dance.";
q2Quotes[356] = "\"Is there life before death?\" -- Belfast Graffito";
q2Quotes[357] = "Love is the answer, but while you're waiting for the answer, sex raises some pretty good questions. -- Woody Allen";
q2Quotes[358] = "I am not young enough to know everything. -- Oscar Wilde";
q2Quotes[359] = "Your fortune stateth: You will be audited by the Internal Revenue Service.";
q2Quotes[360] = "\"Everyone, in some small sacred sanctuary of the self, is nuts.\" -- Leo Calvin Rosten";
q2Quotes[361] = "Now is the time for all good men to come to the aid of their country. -- Typewriting exercise";
q2Quotes[362] = "A sinking ship gathers no moss. -- Donald Kaul";
q2Quotes[363] = "People need loving the most when they deserve it the least. -- John Harrigan";
q2Quotes[364] = "\"Please, don't remember me like this. I'll give you $10 to forget tonight. I don't have the money now, but as soon as I get my paycheck I'll give you the money.\" -- Allison, who rarely drinks, the first time I saw her drunk.";
q2Quotes[365] = "The last thing I want is for giant-booger-boy here to ruin my night. -- Amber";
q2Quotes[366] = "\"Well, you should have told me they were there. I wasn't looking\" -- Sam, after running into a stack of tables with a tractor.";
q2Quotes[367] = "The fate of love is that it always seems too little or too much. -- Anonymous";
q2Quotes[368] = "If it's not one thing, it's a BUNCH of things.";
q2Quotes[369] = "\"My favorite occupation is the pursuit of anonymity.\" -- Karen Cahan of Elkins Park, PA";
q2Quotes[370] = "Use a pun, go to jail.";
q2Quotes[371] = "The multitude is always in the wrong. -- Wentworth Dillon, Earl of Roscommon, 1684";
q2Quotes[372] = "Tony: \"All those pictures of food made me hungry.\" Andy: \"Yeah, I could go for some pictures of food myself....\" Tony: (Blank stare.) Andy: \"What?\"";
q2Quotes[373] = "Jen: \"That's so cool if that's a bat.\" Julie: \"Let's go look!\" Jen: \"You go look at the bat. I'm going to have a drink.\" -- hiking at Little Si (It turned out to be bat-shaped moss.)";
q2Quotes[374] = "The course of true anything never does run smooth. -- Samuel Butler";
q2Quotes[375] = "\"The last time I took attendance and everyone was here, I had a heart attack and keeled over.\" -- Mr. Gmitter";
q2Quotes[376] = "I may have touched it, but I never ate it. -- Mattboy";
q2Quotes[377] = "\"Yes, I'll go to formal with you.\" --Cherie Penner, before being asked.";
q2Quotes[378] = "She's going away and we'll never ever see her again until tomorrow. -- Bekah";
q2Quotes[379] = "Chip: Give us a score for the Pitt-WVU game. McDonald's drive-Thru woman: I don't know. 10 to 20. Chip: That sounds good. Coincidentally, that's what my mom's doin' upstate right now.";
q2Quotes[380] = "Words have a longer life than deeds. -- Pindar";
q2Quotes[381] = "\"Blessed is the man who, having nothing to say, abstains from giving words in evidence of the fact.\" -- George Elliot";
q2Quotes[382] = "\"Hey Brennan! It's me, Whitney. Remember, the one banging on you for the past 9 months? It's me!!!!\" -- Whit, age 2, to his newborn baby brother.";
q2Quotes[383] = "The problem with any unwritten law is that you don't know where to go to erase it. -- Glaser and Way";
q2Quotes[384] = "Your fortune stateth: Just because the message may never be received does not mean it is not worth sending.";
q2Quotes[385] = "This doesn't smell like dirt! It smells like my Grover book! -- Jake, after inhaling one of Crayola's new scented crayons.";
q2Quotes[386] = "All I kin say is when you finds yo'self wanderin' in a peach orchard, ya don't go lookin' for rutabagas. -- Kingfish";
q2Quotes[387] = "Your fortune stateth: You will be dead within a year.";
q2Quotes[388] = "Nothing lasts forever. Where do I find nothing?";
q2Quotes[389] = "Me: Hey guys, don't forget to take the toothpicks out! Classmate: (munch munch) Toothpicks? What toothpicks?!?";
q2Quotes[390] = "Attract and repel... Attract and repel like tricky dogs. -- John F. Fisher";
q2Quotes[391] = "\"Dad always thought laughter was the best medicine, which I guess is why several of us died of tuberculosis.\" -- Jack Handy";
q2Quotes[392] = "May you have warm words on a cold evening, a full mooon on a dark night, and a smooth road all the way to your door.";
q2Quotes[393] = "\"Ultimately, aren't we all just talking monkeys with an attitude problem?\" -- \"Uncle\" Ben";
q2Quotes[394] = "Sue (from England) \"I've been looking for you all my life!\" Robert (from Tazmania) \"Why didn't you just give me a ring?\"";
q2Quotes[395] = "If I cannot bend Heaven, I shall move Hell. -- Publius Vergilius Maro (Virgil)";
q2Quotes[396] = "Sight is a faculty; seeing is an art.";
q2Quotes[397] = "\"The cure for boredom is curiosity. There is no cure for curiosity.\" -- Ellen Parr";
q2Quotes[398] = "You can go anywhere you want if you look serious and carry a clipboard.";
q2Quotes[399] = "Jenn: \"Isn't this a cool key?\" Mark: \"Ummm, yeah, I guess....\" Jenn: \"I mean, you could put out someone's eye with this key.\"";
q2Quotes[400] = "MARIA! STOP SHOUTING AT ME! AND TRY TO BE A LITTLE MORE SOPHISTICATED IN PUBLIC! -- my father, unsophisticatedly, in public.";
q2Quotes[401] = "It is dangerous for a national candidate to say things that people might remember. -- Eugene McCarthy";
q2Quotes[402] = "Your fortune stateth: Chicken Little was right.";
q2Quotes[403] = "-- Male cadavers are incapable of yielding testimony.";
q2Quotes[404] = "\"Never lose your sense of the superficial.\" -- Lord Northcliffe";
q2Quotes[405] = "Your fortune stateth: Good news. Ten weeks from Friday will be a pretty good day.";
q2Quotes[406] = "\"Why mix!?\" -- Andres, after a long night of mixing increasingly less lemonade with his Everclear.";
q2Quotes[407] = "General notions are generally wrong. -- Lady M.W. Montagu";
q2Quotes[408] = "\"Oh, they said 'Russians'! I thought they said 'martians'!\" -- Jen, after hearing on the news about Russians who stole some cattle.";
q2Quotes[409] = "\"Nothing is more destructive of respect for the government and the law of the land than passing laws which cannot be enforced.\" -- Albert Einstein";
q2Quotes[410] = "Hard reality has a way of cramping your style. -- Daniel Dennett";
q2Quotes[411] = "\"Yeah! I scored a pickle!!!\" -- Julie J. when Jen let her have the pickle garnish.";
q2Quotes[412] = "\"Why is this book called, 'Arthur Miller The Crucible'?\" -- Bree Sidebottom";
q2Quotes[413] = "\"Remember, folks. Street lights timed for 35 mph are also timed for 70 mph.\" -- Jim Samuels";
q2Quotes[414] = "Physics turns me on! No, correcting physics tests does not turn me on. -- Mr. Bechir Garraoui, high school physics teacher";
q2Quotes[415] = "\"The savage bows down to idols of wood and stone: the civilized man to idols of flesh and blood.\" -- George Bernard Shaw";
q2Quotes[416] = "I'm stupid; that's my role here. -- Jeff";
q2Quotes[417] = "Don't talk to anymore reverends. -- Lisa";
q2Quotes[418] = "This site could use a little more black and blue color. I think I'm going to punch my monitor. -- Curt's thoughts about this Damn Good (albeit black and blue) site.";
q2Quotes[419] = "He had decided to live forever or die in the attempt. -- J. Heller";
q2Quotes[420] = "To err is human, to forgive unusual.";
q2Quotes[421] = "You couldn't get a clue during the clue mating season in a field full of horny clues if you smeared your body with clue musk and did the clue mating dance. -- Edward Flaherty";
q2Quotes[422] = "\"One of the advantages of being disorderly is that one is constantly making new discoveries.\" -- A. A. Milne";
q2Quotes[423] = "A lost ounce of gold may be found, a lost moment of time never.";
q2Quotes[424] = "\"Our Universe Use License expired. Go home.\" -- overheard at work";
q2Quotes[425] = "\"She's a very dominant woman; she walks on the ground I worship.\" -- Dennis Miller";
q2Quotes[426] = "God gave man two ears and one tongue so that we listen twice as much as we speak. -- Arab proverb";
q2Quotes[427] = "The charm of history and its enigmatic lesson consist in the fact that, from age to age, nothing changes and yet everything is completely different. -- Aldous Huxley";
q2Quotes[428] = "\"I'm the center of the universe! Know why? Because I went out the window!\" -- Ellie";
q2Quotes[429] = "America is the only nation in history which miraculously has gone directly from barbarism to degeneration without the usual intervention of civilization. -- George Clemenceau";
q2Quotes[430] = "Absence makes the heart grow fonder. -- Sextus Aurelius";
q2Quotes[431] = "\"The advantage of emotions is that they lead us astray.\" -- Oscar Wilde";
q2Quotes[432] = "Girlfriend of a friend: So what are you afraid of? Friend: What, you mean besides Kryptonite?!?!";
q2Quotes[433] = "\"I am the only person in the world I should like to know thoroughly.\" -- Oscar Wilde";
q2Quotes[434] = "\"I know that poetry is indispensable, but to what I could not say.\" -- Jean Cocteau";
q2Quotes[435] = "\"The hardest thing to learn in life is which bridge to cross and which to burn.\" -- David Russell";
q2Quotes[436] = "Love is the delusion that one man or woman differs from another. -- H. L. Mencken";
q2Quotes[437] = "\"I'm debating whether ketchup would make this coffee taste better.\" -- Jen, upon being caught staring at a ketchup packet in one hand and her coffee cup in the other.";
q2Quotes[438] = "\"I don't want to have lungs! That's cool!\" -- Julie J's reply to Jen N's comment that ants don't have lungs.";
q2Quotes[439] = "\"No matter how hard you try, there is always going to be someone more underground than you.\" -- Robert Fulford";
q2Quotes[440] = "History repeats itself; that's one of the things that's wrong with history. -- Clarence Darrow";
q2Quotes[441] = "\"Those who make peaceful revolution impossible will make violent revolution inevitable.\" -- John Fitzgerald Kennedy";
q2Quotes[442] = "Your fortune stateth: You have had a long-term stimulation relative to business.";
q2Quotes[443] = "It is better to be bow-legged than no-legged.";
q2Quotes[444] = "I'm killing time, wasting space, and going through a phase.";
q2Quotes[445] = "\"Selfishness is not living as one wishes to live. It is asking other people to live as one wishes to live.\" -- Oscar Wilde";
q2Quotes[446] = "It is annoying to be honest to no purpose. -- Publius Ovidius Naso (Ovid)";
q2Quotes[447] = "Sailors in ships, sail on! Even while we died, others rode out the storm.";
q2Quotes[448] = "\"Any fool can criticize, condemn, and complain -- and most fools do.\" -- Dale Carnegie";
q2Quotes[449] = "Laugh when you can; cry when you must.";
q2Quotes[450] = "\"Lordy, Lordy look who's twenty-three.\" -- Andy trying to be clever at a friend's birthday party.";
q2Quotes[451] = "Love is what happens to men and women who don't know each other. -- W. Somerset Maugham";
q2Quotes[452] = "I want to be the child of your father. -- Matt";
q2Quotes[453] = "The man who runs may fight again. -- Menander";
q2Quotes[454] = "\"I get it every year. It's called Congenital Seasonal Fahrvegnugen.\" -- Jen, describing her deep-seated need for a convertible, circa spring of 1995.";
q2Quotes[455] = "Patriotism is the last refuge of the scoundrel. -- Samuel Johnson";
q2Quotes[456] = "We could have bagels and whipped cream for breakfast! -- my Aunt Judy, trying to figure out what to do with the leftover whipped cream from Thanksgiving dinner.";
q2Quotes[457] = "Country is a way of life, not a style of dress -- Chrissy";
q2Quotes[458] = "Whereof one cannot speak, thereof one must be silent. -- Wittgenstein";
q2Quotes[459] = "\"The 80's was a bad time for everyone's hair.\" -- Paul";
q2Quotes[460] = "'Tis better to have loved and lost Than never to have loved at all. -- Alfred, Lord Tennyson, In Memoriam, 1850, line 27, stanza 4";
q2Quotes[461] = "Microbiology Lab: Staph Only!";
q2Quotes[462] = "\"Maybe if I drink some more, the score will change.\" -- Jason Holliman, at Molly's during the 4th Quarter of the 3rd Game in the playoffs of the Bulls-Bullets series (at the time the score was 81-90 in favor of the Bullets)";
q2Quotes[463] = "\"Most people want security in this world, not liberty.\" -- H.L. Mencken";
q2Quotes[464] = "Age and treachery will always overcome youth and skill.";
q2Quotes[465] = "\"Human folly does not impede the turning of the stars.\" -- Tom Robbins, _Skinny Legs and All_";
q2Quotes[466] = "Dr. Livingston? Dr. Livingston I. Presume?";
q2Quotes[467] = "Mobius strippers never show you their back side.";
q2Quotes[468] = "Love is the wisdom of the fool and the folly of the wise. -- Samuel Johnson";
q2Quotes[469] = "\"Ordinarily he was insane, but he had lucid moments when he was merely stupid.\" -- Heinrich Heine";
q2Quotes[470] = "Me: Hey kiddo, would you like pizza for dinner? Cassie (age 3): Yes! Yay! I'm gonna eat feces!!!";
q2Quotes[471] = "\"The first thing to remember about Unix is that nothing is ever spelled correctly.\" -- Steve Lidie ([email protected])";
q2Quotes[472] = "It is important that students bring a certain ragamuffin, barefoot, irreverence to their studies; they are not here to worship what is known, but to question it. -- J. Bronowski, The Ascent of Man";
q2Quotes[473] = "\"Watch out for the rain showers, 10th grade!\" -- Bryce (the seniors were spitting on us.)";
q2Quotes[474] = "Moderation in all things. -- Publius Terentius Afer [Terence]";
q2Quotes[475] = "\"Few people can be happy unless they hate some other person, nation, or creed.\" -- Bertrand Russell";
q2Quotes[476] = "Jealousy is the only vice that gives no pleasure. -- Anonymous";
q2Quotes[477] = "Everybody can be great... because anybody can serve. You don't have to have a college degree to serve. You don't have to make your subject and verb agree to serve. you only need a heart full of grace. a soul generated by love. -- Martin Luther King, Jr.";
q2Quotes[478] = "\"Daniel's your boyfriend!\" \"Well he's your best friend!\" -- argument between me and my friend Lissa over who had to go find Daniel after discovering his clothes on my dinner table.";
q2Quotes[479] = "\"You can't crush ideas by suppressing them. You can only crush them by ignoring them.\" -- Ursula K. LeGuin";
q2Quotes[480] = "For the most part, when you're alone, Spaniels tend to be the best people on Earth. OK, maybe only in Oregon, where they don't mind the rain. -- byl.";
q2Quotes[481] = "\"Let us overthrow the totems, break the taboos. Or better, let us consider them cancelled. Coldly, let us be intelligent.\" -- Pierre Trudeau";
q2Quotes[482] = "Are you wearing my pants? -- Emily, to a strange guy walking down the street.";
q2Quotes[483] = "Dyslexia means never having to say that you're ysror.";
q2Quotes[484] = "\"Yeah, well, if I let you get too cocky, you might grow your spine back.\" -- Lastene to her boyfriend.";
q2Quotes[485] = "Your fortune stateth: Day of inquiry. You will be subpoenaed.";
q2Quotes[486] = "Life being what it is, one dreams of revenge. -- Paul Gauguin";
q2Quotes[487] = "The death of democracy is not likely to be an assassination from ambush. It will be a slow extinction from apathy, indifference, and undernourishment. -- Robert Hutchins, Great Books, 1954";
q2Quotes[488] = "Small change can often be found under seat cushions. -- One of Lazarus Long's most penetrating insights";
q2Quotes[489] = "\"Have you ever considered putting an impulse drive on your butt? Then you could get to class in two seconds.\" -- S. D. Gage";
q2Quotes[490] = "If money is your hope for independence you will never have it. The only real security that a man will have in this world is a reserve of knowledge, experience, and ability. -- Henry Ford";
q2Quotes[491] = "Goals... Plans... they're fantasies, they're part of a dream world... -- Wally Shawn";
q2Quotes[492] = "\"When a true genius appears in the world you may know him by this sign: that all the dunces are in confederacy against him.\" -- Jonathan Swift";
q2Quotes[493] = "Your fortune stateth: This life is yours. Some of it was given to you; the rest, you made yourself.";
q2Quotes[494] = "\"Sexually active people have a higher chance of becoming pregnant.\" -- Mr. Koesters, Religion Teacher";
q2Quotes[495] = "Three o'clock in the afternoon is always just a little too late or a little too early for anything you want to do. -- Jean-Paul Sartre";
q2Quotes[496] = "\"Marshmellow Peeps? Bad for you... bad for the earth... bad bad bad.\" -- Moby, to Paul, in critique of the latter's eating habits.";
q2Quotes[497] = "Your fortune stateth: You have no real enemies.";
q2Quotes[498] = "We never know the worth of water 'til the well is dry. -- English Proverb";
q2Quotes[499] = "\"Don't lick the fuse!\" -- Megan \"Don't question my dupe.\" -- Katie";
q2Quotes[500] = "Your fortune stateth: You work very hard. Don't try to think as well.";
q2Quotes[501] = "The longer I live the more I see that I am never wrong about anything, and that all the pains that I have so humbly taken to verify my notions have only wasted my time. -- George Bernard Shaw";
q2Quotes[502] = "\"We have reached our cruising altitude of three feet, and I expect a smooth flight all the way into New Orleans.\" -- Greyhound Bus driver";
q2Quotes[503] = "Sammie- And Herod was, like, the main king, the \"player\"Rusty-and Jesus was a playa-hata(excerpt from the Eboncis Xmas play)";
q2Quotes[504] = "\"That God... sure plays a mean pinball!\" -- Dave";
q2Quotes[505] = "I want something small to eat -- like a cake. -- Genna Stelling.";
q2Quotes[506] = "\"The experience called 'natural childbirth' is not natural at all. It is freaky and bizarre.\" -- Jay";
q2Quotes[507] = "\"[The] Internet is so big, so powerful and pointless that for some people it is a complete substitute for life.\" -- Andrew Brown";
q2Quotes[508] = "Fortune's Office Door Sign of the Week: Incorrigible punster -- Do not incorrige.";
q2Quotes[509] = "\"Strip away the phony tinsel of Hollywood and you find the real tinsel underneath.\" -- Oscar Levant";
q2Quotes[510] = "\"Everywhere is walking distance if you have the time.\" -- Steven Wright";
q2Quotes[511] = "Your fortune stateth: Tuesday is the Wednesday of the rest of your life.";
q2Quotes[512] = "The only way to go from the bottom is up, right? [pause] Well, I suppose it's possible to lay there for a while face down in a puddle of your own vomit. *sigh* Oh, never mind. -- Kate, trying her best to cheer up a friend.";
q2Quotes[513] = "The world wants to be deceived. -- Sebastian Brant";
q2Quotes[514] = "What's so funny?";
q2Quotes[515] = "\"I don't use drugs, my dreams are frightening enough.\" -- M. C. Escher";
q2Quotes[516] = "Your fortune stateth: Be security conscious -- National defense is at stake.";
q2Quotes[517] = "I will make you shorter by the head. -- Elizabeth I";
q2Quotes[518] = "I'll bet everyone in America could trace all of their problems to a conspiracy somewhere. -- Allyson P.";
q2Quotes[519] = "Drop the vase and it will become a Ming of the past. -- The Adventurer";
q2Quotes[520] = "SCRIBBLER, n. A professional writer whose views are antagonistic to one's own. -- Ambrose Bierce";
q2Quotes[521] = "\"Oh no! I'm missing the two tenors!\" -- My mother, who didn't know what we were laughing at.";
q2Quotes[522] = "Boredom delenda est!";
q2Quotes[523] = "\"Some people think that finding a penny is a sign of good luck. Others view it as being one cent closer to World Domination! -- Joe Ely Carrales, III";
q2Quotes[524] = "\"France was a long despotism tempered by epigrams.\" -- Thomas Carlyle";
q2Quotes[525] = "\"A city is a large community where people are lonesome together.\" -- Herbert Prochnow";
q2Quotes[526] = "Experience is what you get when you don't get what you want. -- Don Stanford";
q2Quotes[527] = "Who are you?";
q2Quotes[528] = "You don't want to be humpin' the hostess. -- Professor, on why knights didn't have sex with married ladies.";
q2Quotes[529] = "Fish aren't pets, they're part of the recommended daily allowance. -- Jennifer";
q2Quotes[530] = "\"The LocalNet: We're equipped for the collapse of society. How about you?\" -- Matt (proposing a new slogan for TLN)";
q2Quotes[531] = "Peculiar travel suggestions are dancing lessons from God. -- Kurt Vonnegut, Jr., Cat's Cradle";
q2Quotes[532] = "A little idolatry is relaxing, every once in a while. -- Tim Dueck";
q2Quotes[533] = "\"Bring the little ones unto me, and I will get a good price for them.\" -- Dr. Fegg's Encyclopeadia of _All_ World Knowledge";
q2Quotes[534] = "\"Pain is inevitable, suffering is optional.\" -- unknown";
q2Quotes[535] = "Love is a perky elf dancing a merry little jig and then suddenly he turns on you with a miniature machine gun. -- Matt Groening, Love is Hell";
q2Quotes[536] = "Your fortune stateth: You too can wear a nose mitten.";
q2Quotes[537] = "Erica: \"What's wrong with you?\" Dana: \"I have an extra letter in my alphabet.\"";
q2Quotes[538] = "(Our physics class has just finished watching a video in which a stuffed monkey gets hit by a projectile.) Mike P.: Can we watch that again, Father? Father M.: No, we can only kill him once a year.";
q2Quotes[539] = "\" ... and I am THE world expert on programming languages\" -- actual quote from a resume sent to my employer.";
q2Quotes[540] = "Success is just a matter of attitude. -- Darcy E. Gibbons";
q2Quotes[541] = "\"It's like candy!\" -- Julie, referring to toasted bread with garlic and ricotta cheese on it.";
q2Quotes[542] = "Anything is possible on paper. -- Ron McAfee";
q2Quotes[543] = "\"Beware of all enterprises that require new clothes, and not rather a new wearer of clothes.\" -- Henry David Thoreau";
q2Quotes[544] = "\"If I were a midget, I bet I'd be the tallest one!\" -- Jill";
q2Quotes[545] = "Customer: I've been in business for 10 years and I know machines don't just break. Me: Well, I guess I'm in the wrong business then. -- when working in an electronics repair shop.";
q2Quotes[546] = "If a thing is worth doing, it's worth doing slow. -- Milton Garrison";
q2Quotes[547] = "\"Whoever ceases to be a student has never been a student.\" -- George Iles";
q2Quotes[548] = "\"That's some pair of shoulder gerbils.\" -- Paul B., about Ken's shoulder pads.";
q2Quotes[549] = "\"The strongest man in the world is he who stands alone.\" -- Henrik Ibsen";
q2Quotes[550] = "Age does not protect you from love but love to some extent protects you from age. -- Jeanne Moreau";
q2Quotes[551] = "Give me a Plumber's friend the size of the Pittsburgh dome, and a place to stand, and I will drain the world.";
q2Quotes[552] = "[Pause. Looks around his desk. Picks up a bag of Fritos. Holds it out to Cheryl.] \"Well... wanna chip?\" -- Matt, after being castigated for forgetting Cheryl's birthday";
q2Quotes[553] = "Your fortune stateth: 1 bulls, 3 cows.";
q2Quotes[554] = "Your fortune stateth: You are taking yourself far too seriously.";
q2Quotes[555] = "Any slogan simple enough to fit in a .sig is too simple to do any good.";
q2Quotes[556] = "They couldn't hit an elephant at this dist--- -- John B. Sedgwick, general, dying words, 1864";
q2Quotes[557] = "Don't let your status become too quo!";
q2Quotes[558] = "Left to themselves, things tend to go from bad to worse.";
q2Quotes[559] = "Drunk guy: What's that guy doing with that flashlight? Drunk girl: Maybe he's looking for UFOs. Drunk guy (a moment later): With a flashlight?";
q2Quotes[560] = "Your fortune stateth: You two ought to be more careful--your love could drag on for years and years.";
q2Quotes[561] = "Intelligence has nothing to do with politics. -- Londo Molari";
q2Quotes[562] = "Your fortune stateth: You will be called upon to help a friend in trouble.";
q2Quotes[563] = "\"Puritanism -- The haunting fear that someone, somewhere, may be happy.\" -- H. L. Mencken";
q2Quotes[564] = "Carpe the Freakin' Diem. -- Pete Holmes";
q2Quotes[565] = "If you find a perfect church, don't go. You'll mess it up. -- Rick Walker";
q2Quotes[566] = "See, these two penguins walked into a bar, which was really stupid, 'cause the second one should have seen it.";
q2Quotes[567] = "If you're not part of the solution, you're part of the precipitate. -- Steven Wright";
q2Quotes[568] = "There seems no plan because it is all plan. -- C.S. Lewis";
q2Quotes[569] = "Your fortune stateth: You never hesitate to tackle the most difficult problems.";
q2Quotes[570] = "\"No thanks, I am trying to give sex up!\" -- Anthony Meek, to a girl he didn't know and had just tapped on the shoulder at the Melbourne Oktoberfest.";
q2Quotes[571] = "\"I wonder what they'd do if a whole herd of buffalo fell asleep on a road. Or a whole herd of anything for that matter. Except ants. If it were ants, they'd just run right over them. But the point is, buffalo sleep standing up.\" -- Mary";
q2Quotes[572] = "\"Hell is other people.\" -- Jean-Paul Sartre";
q2Quotes[573] = "Many hands make light work. -- John Heywood";
q2Quotes[574] = "\"Get off the cross; we need the wood!\" -- Sock'n'Buskin (drama club) sets crew motto.";
q2Quotes[575] = "RATIONAL, adj. Devoid of all delusions save those of observation, experience and reflection. -- Ambrose Bierce";
q2Quotes[576] = "Eileen: It's amazing how people can all live in one country and speak different languages - don't you think? Isn't it amazing how progress can be made like that? Ben: Hey, look at that flower. It's a flower. It's yellow.";
q2Quotes[577] = "Your fortune stateth: You will be awarded some great honor.";
q2Quotes[578] = "Five bicycles make a volkswagen, seven make a truck. -- Adolfo Guzman";
q2Quotes[579] = "To err is human; to admit it, a blunder.";
q2Quotes[580] = "Yeah, I knew it was a person, because silverware doesn't go: \"DOH!\" -- Dustin T. Miller";
q2Quotes[581] = "Hatred paralyzes life; love releases it.Hatred confuses life; love harmonizes it.Hatred darkens life; love illumines it. -- Martin Luther King, Jr.";
q2Quotes[582] = "\"Dying is a very dull, dreary affair. And my advice to you is to have nothing whatever to do with it.\" -- William Somerset Maugham";
q2Quotes[583] = "\"Dreaming permits each and every one of us to be quietly and safely insane every night of our lives.\" -- William Dement";
q2Quotes[584] = "\"I wasn't sure what they were going to do when she put her head between his legs.\" -- Lisa, commenting on a pairs figure skating program in the Olympics.";
q2Quotes[585] = "\"The problem with X is that it's overadequate.\" -- Dennis Ritchie";
q2Quotes[586] = "Your fortune stateth: That secret you've been guarding, isn't.";
q2Quotes[587] = "Fortune and love befriend the bold. -- Ovid";
q2Quotes[588] = "Manuscript: something submitted in haste and returned at leisure. -- Oliver Herford";
q2Quotes[589] = "\"If you want to know what's it like in a black hole, you send your grad student. That's what they're for.\" -- Astronomy Prof Balbus";
q2Quotes[590] = "\"A conservative is a man who sits and thinks, mostly sits.\" -- Woodrow Wilson";
q2Quotes[591] = "Standing in the middle of the road is very dangerous; you get knocked down by the traffic from both sides. -- Margaret Thatcher";
q2Quotes[592] = "Take it easy, we're in a hurry.";
q2Quotes[593] = "Experience teaches only the teachable. -- Aldous Huxley";
q2Quotes[594] = "\"Lorena Bobbit only did what men do to each other all the time. She showed some jerk she meant business.\" -- Selena";
q2Quotes[595] = "\"Christmas is about love. Valentine's Day is about LUUUUUUUUUUV.\" -- Jeremy Garber";
q2Quotes[596] = "\"Fire at the enemies on the screen, and keep firing even if you run out of ammo!\" -- Michelle Zalas, explaining DOOM";
q2Quotes[597] = "Where there is much light there is also much shadow. -- Goethe";
q2Quotes[598] = "Your fortune stateth: Good night to spend with family, but avoid arguments with your mate's new lover.";
q2Quotes[599] = "\"Chaos often breeds life when order breeds habit.\" -- Henry Brooks Adams";
q2Quotes[600] = "\"How do you light a candle stuck in an anal crevice?\" \"I don't WANT a candle there!\" -- some conversation Ellie found on IRC";
q2Quotes[601] = "\"No, the pressure's too great! I can't bite your tongue with it sticking out there like that!\" -- Paul";
q2Quotes[602] = "(Saturday morning, 6:00am. Phone rings.) \"Uncle\" Ben: \"Hello?\" Chris: \"Hey, did I wake you up?\" \"Uncle\" Ben: \"No, I was asleep anyway.\"";
q2Quotes[603] = "\"If those people throw rocks at my car I'll ... I'll ... Well, I'll just drive away!\" -- Tina";
q2Quotes[604] = "Always the girl that jumps out of the cake, never the bride. -- Marj Klugerman";
q2Quotes[605] = "Two wrongs don't make a right, but three lefts do.";
q2Quotes[606] = "\"You're bound to be unhappy if you optimize everything.\" -- Donald E. Knuth";
q2Quotes[607] = "\"Who was that baseball player that died of Lou Gehrig's disease?\" -- my friend Lilly B. on the way to the beach.";
q2Quotes[608] = "\"In a hierarchy, every employee tends to rise to his level of incompetence.\" -- Laurence Johnston Peter";
q2Quotes[609] = "\"General Tso's chicken looks like an open wound.\" -- Margaret the paralegal";
q2Quotes[610] = "How many points do you get for a 3-pointer? -- Katrina Meyer";
q2Quotes[611] = "\"I think something's wrong with the washing machine. The clothes just keep going around and around, but no water is coming out.\" -- Michele, after putting all her clothes and detergent in the dryer.";
q2Quotes[612] = "\"I could talk about getting on my bike and riding it to the moon, but it ain't gonna happen.\" -- Larry, after his trig teacher said we have to talk about imaginary numbers.";
q2Quotes[613] = "It is a profitable thing, if one is wise, to seem foolish. -- Aeschylus";
q2Quotes[614] = "\"If this job was easy, my dog would come and pick up a paycheck.\" -- Fellow employee, about doing some hard work.";
q2Quotes[615] = "If two wrongs don't make a right, try three. -- Laurence J. Peter";
q2Quotes[616] = "If it were weren't for pickpockets, I'd have no sex life at all. -- Rodney Dangerfield";
q2Quotes[617] = "\"Ah, the curiosity of youth. On the road to ruin! May it ever be so adventurous!\" -- _Orgy of the Dead_";
q2Quotes[618] = "If we see the light at the end of the tunnel, it's the light of an oncoming train. -- Robert Lowell";
q2Quotes[619] = "A witty saying proves nothing. -- Voltaire";
q2Quotes[620] = "\"I didn't hit my head!\" -- the first thing out of Ken's mouth after falling on stairs and hitting his head";
q2Quotes[621] = "Love is much nicer to be in than an automobile accident, a tight girdle, a higher tax bracket, or a holding pattern over Philadelphia. -- Judith Viorst";
q2Quotes[622] = "I do not believe in an afterlife, although I am bringing a change of underwear. -- Woody Allen";
q2Quotes[623] = "You just gotta do the best you can everyday at 5:30. -- Edgar";
q2Quotes[624] = "After trying to smuggle herself thru the airport and destroying a lunch in New Orleans: \"Oh, but the bomb was far worse than the burger!\" -- Erica";
q2Quotes[625] = "\"Where the press is free and every man able to read, all is safe.\" -- Thomas Jefferson";
q2Quotes[626] = "Wait for that wisest of all counselors, Time. -- Pericles";
q2Quotes[627] = "Fortune finishes the great quotations, #9: A word to the wise is often enough to start an argument.";
q2Quotes[628] = "\"K is for KENGHIS KHAN. _He_ was a very _nice_ person. History has no record of him. There is a moral in that, somewhere.\" -- Harlan Ellison";
q2Quotes[629] = "Jimmy, joking: \"Break two bottles over your head and call me in the morning.\" John: <CRASH> \"Ow.\"";
q2Quotes[630] = "\"Touch my monkey, feed him Cool Whip.\" -- ghond";
q2Quotes[631] = "It may be that your whole purpose in life is simply to serve as a warning to others.";
q2Quotes[632] = "It's too friggin' hot to play football. -- John Manansala";
q2Quotes[633] = "Accept the things to which fate binds you, and love the people with whom fate brings you together, but do so with all your heart. -- Marcus Aurelius";
q2Quotes[634] = "\"By appreciation, we make excellence in others our own property.\" -- Voltaire";
q2Quotes[635] = "\"He looked way too Itallian for his own good. I would look at him and think, 'Hello, my name is Mario, I could eat you.'\" -- Megan";
q2Quotes[636] = "REBEL, n. A proponent of a new misrule who has failed to establish it. -- Ambrose Bierce";
q2Quotes[637] = "Time is a great teacher, but unfortunately it kills all its pupils. -- Hector Louis Berlioz";
q2Quotes[638] = "If you wanted something special, you should have told me. -- my husband, when I pointed out that there were no cupboards in the kitchen of the apartment he just rented.";
q2Quotes[639] = "\"The poets have been mysteriously silent on the subject of cheese.\" -- G. K. Chesterton";
q2Quotes[640] = "A dollar saved is a quarter earned. -- John Ciardi";
q2Quotes[641] = "I would rather live and love where death is king than have eternal life where love is not. -- Robert G. Ingersoll";
q2Quotes[642] = "Your fortune stateth: Your step will soil many countries.";
q2Quotes[643] = "In God we trust; all else we walk through.";
q2Quotes[644] = "\"Every great advance in natural knowledge has involved the absolute rejection of authority.\" -- Thomas Henry Huxley";
q2Quotes[645] = "ILLUSTRIOUS, adj. Suitably placed for the shafts of malice, envy and detraction. -- Ambrose Bierce";
q2Quotes[646] = "Your fortune stateth: You shall be rewarded for a dastardly deed.";
q2Quotes[647] = "No no, that's MEAN. -- 15 year old Sharie, upon hearing someone insult someone else.";
q2Quotes[648] = "Three minutes' thought would suffice to find this out; but thought is irksome and three minutes is a long time. -- A.E. Houseman";
q2Quotes[649] = "Laugh and the world laughs with you. Snore and you sleep alone. -- Anthony Burgess";
q2Quotes[650] = "No man is good enough to govern another man without that other's consent. -- Abraham Lincoln";
q2Quotes[651] = "Your fortune stateth: Bank error in your favor. Collect $200.";
q2Quotes[652] = "People never lie so much as after a hunt, during a war or before an election. -- Otto von Bismarck";
q2Quotes[653] = "When the only tool you have is a hammer, every problem starts to look like a nail.";
q2Quotes[654] = "Have you noticed that all you need to grow healthy, vigorous grass is a crack in your sidewalk?";
q2Quotes[655] = "\"Vegetables are interesting but lack a sense of purpose when unaccompanied by a good cut of meat.\" -- Fran Lebowitz";
q2Quotes[656] = "If someone killed me I would stay alive just to bother them. -- Aviry";
q2Quotes[657] = "AMNESTY, n. The state's magnanimity to those offenders whom it would be too expensive to punish. -- Ambrose Bierce";
q2Quotes[658] = "Batteries not included.";
q2Quotes[659] = "As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. -- Albert Einstein";
q2Quotes[660] = "There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence. -- Jeremy S. Anderson";
q2Quotes[661] = "\"A large section of the intelligentsia seems wholly devoid of intelligence.\" -- G. K. Chesterton";
q2Quotes[662] = "\"Most people are other people. Their thoughts are someone else's opinions, their lives a mimicry, their passions a quotation.\" -- Oscar Wilde";
q2Quotes[663] = "\"Doctor, we did good, didn't we?\" \"Perhaps. Time will tell. Always does.\" -- Ace and The Doctor";
q2Quotes[664] = "Force it!!! If it breaks, well, it wasn't working anyway... No, don't force it, get a bigger hammer.";
q2Quotes[665] = "The church must be the critic and guide of the state, and never its tool. -- Martin Luther King, Jr.";
q2Quotes[666] = "Be wiser than other people, if you can, but do not tell them so. -- Lord Chesterfield";
q2Quotes[667] = "I'm considering stealing a coffee bean from the plant house and chewing on the cotyledons. -- Lisa";
q2Quotes[668] = "\"You know what? It's April Fool's day in Djibouti!\" -- Joel, on January 27";
q2Quotes[669] = "\"It is clear that thought is not free if the profession of certain opinions makes it impossible to earn a living.\" -- Bertrand Russell";
q2Quotes[670] = "Your fortune stateth: Your lucky color has faded.";
q2Quotes[671] = "Mr. Goldenberg (teacher): Well, today's my thirty-first birthday... Danielle (student): Really? What's it like to be old? Mr. Goldenberg: I'll tell you when I get there. What's it like to be stupid?";
q2Quotes[672] = "Knowledge without common sense is folly.";
q2Quotes[673] = "\"It's taken me a long time to finally realize that life isn't just some sick television program. And you just know, tomorrow I'll find out it is.\" -- Emily";
q2Quotes[674] = "\"Pessimism is only the name that men of weak nerve give to wisdom.\" -- Mark Twain";
q2Quotes[675] = "We look forward to the time when the power to love of will replace the love of power. Then will our world know the blessings of peace. -- William Gladstone";
q2Quotes[676] = "It is the final proof of God's omnipotence that he need not exist in order to save us. -- Peter De Vries";
q2Quotes[677] = "Thou hast seen nothing yet. -- Miguel de Cervantes";
q2Quotes[678] = "\"An ounce of prevention is worth a pound of purge.\"";
q2Quotes[679] = "Yes, because they're arbitrary, except in the way that they're not arbitrary, for no reason at all. -- Matt, very sincerely.";
q2Quotes[680] = "The art of being wise is the art of knowing what to overlook. -- William James";
q2Quotes[681] = "Trouble always comes at the wrong time.";
q2Quotes[682] = "Save the world; kill a sponge! -- Matt";
q2Quotes[683] = "\"If at first you don't succeed, quickly deny you were even trying.\" -- Daniel \"Fluffy\"";
q2Quotes[684] = "Sex is God's joke on human beings. -- Bette Davis";
q2Quotes[685] = "When pleasure remains, does it remain a pleasure?";
q2Quotes[686] = "Fly me away to the bright side of the moon ...";
q2Quotes[687] = "Your fortune stateth: You seek to shield those you love and you like the role of the provider.";
q2Quotes[688] = "\"A celibate clergy is an especially good idea, because it tends to suppress any hereditary propensity toward fanaticism.\" -- Carl Edward Sagan";
q2Quotes[689] = "How you look depends on where you go.";
q2Quotes[690] = "\"For what a man would like to to be true, that he more readily believes.\" -- Francis Bacon";
q2Quotes[691] = "Honesty's the best policy. -- Miguel de Cervantes";
q2Quotes[692] = "A horse breeder has his young colts bottle-fed after they're three days old. He heard that a foal and his mummy are soon parted.";
q2Quotes[693] = "I guess we were all guilty, in a way. We all shot him, we all skinned him, and we all got a complimentary bumper sticker that said, \"I helped skin Bob.\"";
q2Quotes[694] = "\"Oh, he's kinda sexy... in a Captain Picard kind of way.\" -- My friend Ginger, talking about our Finance professor.";
q2Quotes[695] = "\"The porcupine with the sharpest quills gets stuck on a tree more often.\"";
q2Quotes[696] = "\"The hand of God could come down and guide your hand and you still wouldn't be able to do it. It can NEVER be done by YOU!\" -- Adam, to Jimmy, who was trying to learn to spin a pen";
q2Quotes[697] = "If people were powered by chlorophyll, and you were stuck in the desert, you'd have to run around screaming just to keep from being overfed. -- Paul";
q2Quotes[698] = "I lost my Oscar virginity to four girls and Dave Moore. -- Matt";
q2Quotes[699] = "\"In America sex is an obsession; in other parts of the world it is a fact.\" -- Marlene Dietrich";
q2Quotes[700] = "MESMERISM, n. Hypnotism before it wore good clothes, kept a carriage and asked Incredulity to dinner. -- Ambrose Bierce";
q2Quotes[701] = "\"Men have fiendishly conceived a heaven only to find it insipid, and a hell only to find it ridiculous.\" -- George Santayana";
q2Quotes[702] = "\"Do you think someday there will be a race of mutant cows that will turn us into ground beef?\" -- Michelle Zalas, while eating burgers.";
q2Quotes[703] = "Most convicted felons are just people who were not taken to museums or Broadway musicals as children. -- Libby Gelman-Waxner";
q2Quotes[704] = "As for the virtuous poor, one can pity them, of course, but one cannot possibly admire them. -- Oscar Wilde";
q2Quotes[705] = "\"Who is this Jesus Price person everybody is singing about?\" -- Casey Bartow-McKenney at age 3, listening to Christmas carols.";
q2Quotes[706] = "Some editors are failed writers, but so are most writers. -- T. S. Eliot";
q2Quotes[707] = "\"Predicting the future, as we all know, is risky. Predicting the evolution of new technology is downright hazardous.\" -- Leon Cooper";
q2Quotes[708] = "I was touching my face today and for a minute I couldnt feel my nose. I felt like Michael Jackson -- Amanda Wild, a Michael Jackson fan";
q2Quotes[709] = "\"Many, if not all, of my presidential opponents are certifiable idiots.\" -- Philippine presidential candidate Miriam Defensor Santiago";
q2Quotes[710] = "\"Capital letters were always the best way of dealing with things you didn't have a good answer to.\" -- Douglas Adams";
q2Quotes[711] = "L'hazard ne favorise que l'esprit prepare. -- L. Pasteur";
q2Quotes[712] = "We are all either fools or undiscovered geniuses. -- Bonnie Lin";
q2Quotes[713] = "\"To vacillate or not to vacillate, that is the question ... or is it?\"";
q2Quotes[714] = "You can complain because roses have thorns, or you can rejoice because thorns have roses. -- Ziggy, character in comic strip by Tom Wilson";
q2Quotes[715] = "\"Only take a half a point off. It must have been a brain fart.\" -- Mrs. W's response to a student's stupid mistake on a test.";
q2Quotes[716] = "\"We've officially named the cat. Her name is 'Bad Kitty! No!', but we call her by her middle name.\" -- Jen";
q2Quotes[717] = "When in doubt, use brute force. -- Ken Thompson";
q2Quotes[718] = "\"Many people would rather die than think; in fact, most do.\" -- Bertrand Russell";
q2Quotes[719] = "\"Perfectionism is the enemy of creation, as extreme self-solicitude is the enemy of well-being.\" -- John Updike";
q2Quotes[720] = "It occurred to me lately that nothing has occurred to me lately.";
q2Quotes[721] = "\"Believe me! The secret of reaping the greatest fruitfulness and the greatest enjoyment from life is to live dangerously!\" -- Nietzsche";
q2Quotes[722] = "PENITENT, adj. Undergoing or awaiting punishment. -- Ambrose Bierce";
q2Quotes[723] = "The mass of men lead lives of quiet desperation. What is called resignation is confirmed desperation. -- Henry David Thoreau, Walden (1854)";
q2Quotes[724] = "Kate: \"I'm naming at least one of my children Gurt.\" Angela: \"Gurt!? Why the hell would you want to name it Gurt?\" Kate: \"Well, if I ever need to get it's attention, I will have the thrill of saying 'Yo! Gurt!\"'";
q2Quotes[725] = "ALONE, adj. In bad company. -- Ambrose Bierce";
q2Quotes[726] = "Maybe if you studied, your commentaries might make some sense. -- Actual comment from the prof on my friend's Art History exam";
q2Quotes[727] = "\"Wit is educated insolence.\" -- Aristotle";
q2Quotes[728] = "A man who carries a cat by its tail learns something he can learn in no other way.";
q2Quotes[729] = "If I have to be pulled into one more store with ANYTHING purple or fuzzy, I will kill each of you one by one. -- Mark at the mall with the girls.";
q2Quotes[730] = "A place for everything and everything in its place. -- Isabella Mary Beeton, \"The Book of Household Management\" [Quoted in \"VMS Internals and Data Structures\", V4.4, when referring to memory management system services.]";
q2Quotes[731] = "Love is shown in your deeds, not in your words. -- Fr. Jerome Cummings";
q2Quotes[732] = "Moderation is a fatal thing. Nothing succeeds like excess. -- Oscar Wilde";
q2Quotes[733] = "More than kisses, letters mingle souls. -- John Donne";
q2Quotes[734] = "Familiarity breeds contempt -- and children. -- Mark Twain";
q2Quotes[735] = "\"There ought to be at least one round state.\" -- Gabriella";
q2Quotes[736] = "Paige (six-year-old): \"Hey, I'm a ghost!\" Alana (humoring): \"Wow, really? How did you die?\" Paige (after hesitation): \"I think I was hit by an ice cream truck. At least I got ice cream out of it.\"";
q2Quotes[737] = "The groundhog is like most other prophets; it delivers its message and then disappears.";
q2Quotes[738] = "Life is both difficult and time consuming.";
q2Quotes[739] = "FELON, n. A person of greater enterprise than discretion, who in embracing an opportunity has formed an unfortunate attachment. -- Ambrose Bierce";
q2Quotes[740] = "\"Try to relax and enjoy the crisis.\" -- Ashleigh Brilliant";
q2Quotes[741] = "\"I must be getting old, I understood what Bob Dylan was saying.\" -- Jimmy";
q2Quotes[742] = "There is a natural hootchy-kootchy to a goldfish. -- Walt Disney";
q2Quotes[743] = "SENATE, n. A body of elderly gentlemen charged with high duties and misdemeanors. -- Ambrose Bierce";
q2Quotes[744] = "Your fortune stateth: You will inherit millions of dollars.";
q2Quotes[745] = "If someone had told me I would be Pope one day, I would have studied harder. -- Pope John Paul I";
q2Quotes[746] = "Andy: (With a straight face) \"Tony, would you jiggle my mouse for me?\" Tony: (With a look of terror)\"WHAT?!\" -- Andy, requesting that Tony deactivate his screen saver.";
q2Quotes[747] = "\"Help me, I'm too handsome!\" -- Jonas, on the attention he gets from Japanese girls";
q2Quotes[748] = "Ellie's Mom: \"Are you going to bed now?\" Ellie: \"But I'm not hungry!\" (I was VERY tired at the time.)";
q2Quotes[749] = "If you want anything done well, do it yourself. This is why most people laugh at their own jokes. -- Bob Edwards";
q2Quotes[750] = "\"'Who do you trust?' -- depends on what you've got to lose.\" -- mjr";
q2Quotes[751] = "ACHIEVEMENT, n. The death of endeavor and the birth of disgust. -- Ambrose Bierce";
q2Quotes[752] = "I have had the opportunity to accomplish a great many things in life, but my education consistently gets in the way. -- Chris R.";
q2Quotes[753] = "\"The laws of probability, so true in general, so fallacious in particular.\" -- Edward Gibbon";
q2Quotes[754] = "\"But I don't respect the song part of it! It's an audio torture device, like the Macarena and all that other bootie shaking music.\" -- Jason Holliman, talking about the Spice Girls hit, \"Wannabe\".";
q2Quotes[755] = "CANNON, n. An instrument employed in the rectification of national boundaries. -- Ambrose Bierce";
q2Quotes[756] = "All things being equal, you are bound to lose.";
q2Quotes[757] = "Some birds aren't meant to be caged, their feathers are just too bright. And when they fly away, the part of you that knows it was a sin to lock them up, does rejoice. I guess I just miss my friend. , Shawshank Redemption";
q2Quotes[758] = "\"Hey baby, I'll give you the best night of my life!\" -- Me experiencing a brain typo";
q2Quotes[759] = "\"Language is a city to the building of which every human being brought a stone.\" -- Mark Twain";
q2Quotes[760] = "It makes a lot more sense to act like a crazy idiot among strangers, because then they can't make fun of you by name. -- Myself, justifying to a less outgoing friend why I was dancing around the grocery store";
q2Quotes[761] = "\"A successful tool is one that was used to do something undreamed of by its author.\" -- S. C. Johnson";
q2Quotes[762] = "This slogan is programming you in ways that may not be apparent for months, or even years.";
q2Quotes[763] = "\"Nicknames stick to people, and the most ridiculous are the most adhesive.\" -- Thomas Chandler Haliburton";
q2Quotes[764] = "He who hesitates is last.";
q2Quotes[765] = "\"He looks just like that guy over there...only different.\" -- Ally describing an old friend";
q2Quotes[766] = "I can't grow bangs on my boobs. -- Deborah";
q2Quotes[767] = "Love is stronger than justice. -- Sting";
q2Quotes[768] = "Umm, Jason, why doesn't that tractor have tires? -- Rachel";
q2Quotes[769] = "\"Uhhh I though you were Room 107 and you had my pizza! Yeah that's it!\" -- Some fraternity guy who was most likely drunk, stoned, and/or a moron.";
q2Quotes[770] = "How come only your friends step on your new white sneakers?";
q2Quotes[771] = "\"The only nice thing about being imperfect is the joy it brings to others.\" -- Doug Larson";
q2Quotes[772] = "\"The mind of a bigot is like the pupil of the eye. The more light you shine on it, the more it will contract.\" -- Oliver Wendell Holmes, Jr.";
q2Quotes[773] = "\"'Why do you bother with him? He's had thousands of people killed!'\" \"'Yes, but perhaps he thought that you wanted it.'\" -- Terry Pratchett";
q2Quotes[774] = "Nothing shows a man's character more than what he laughs at. -- Johann Wolfgang von Goethe";
q2Quotes[775] = "\"For what is liberty but the unhampered translation of will into act?\" -- Dante Alighieri";
q2Quotes[776] = "FIB, n. A lie that has not cut its teeth. An habitual liar's nearest approach to truth: the perigee of his eccentric orbit. -- Ambrose Bierce";
q2Quotes[777] = "\"The art of government is the organization of idolatry.\" -- George Bernard Shaw";
q2Quotes[778] = "A small family is soon provided for. -- English Proverb";
q2Quotes[779] = "Your fortune stateth: You will pass away very quickly.";
q2Quotes[780] = "Mike D.: \"You know, I have no ass.\" Mike S.: \"What??\" [Bending down to examine other-Mike's posterior] Mike D.: \"OK, *technically* I have that portion of the body referred to as an ass.\"";
q2Quotes[781] = "Your fortune stateth: You never know how many friends you have until you rent a house on the beach.";
q2Quotes[782] = "Littering is dumb. -- Ronald Macdonald";
q2Quotes[783] = "\"He who knows only his own side of the case, knows little of that.\" -- John Stuart Mill";
q2Quotes[784] = "My good intentions are completely lethal. -- Margaret Atwood";
q2Quotes[785] = "The church is the great lost and found department. -- Robert Short";
q2Quotes[786] = "\"And on the left side of the aircraft, you will see Central Park.\" -- Mr. Fulwiler, Histroy Teacher, on a bus trip to NYC.";
q2Quotes[787] = "We do not have censorship. What we have is a limitation on what newspapers can report. -- Louis Nel, Deputy Minister of Information, South Africa";
q2Quotes[788] = "\"When football fans tear down the goal post, where do they take it?\" -- Susan";
q2Quotes[789] = "\"Juego huevo juegos.\" -- Ray, translating the sentence \"I play egg games.\"";
q2Quotes[790] = "Your fortune stateth: You are as I am with You.";
q2Quotes[791] = "\"I am, so therefore you're not!\" -- Eric Neil";
q2Quotes[792] = "The big difference between sex for money and sex for free is that sex for money usually costs a lot less. -- Brendon Behan";
q2Quotes[793] = "The future lies ahead.";
q2Quotes[794] = "We never reflect how pleasant it is to ask for nothing. -- Seneca";
q2Quotes[795] = "I hope you have not been leading a double life, pretending to be wicked and being really good all the time. That would be hypocrisy. -- Oscar Wilde";
q2Quotes[796] = "Julie: \"I got you!! I won!!\" Matt: \"It's easy to win when you are the only one who knows the rules.\"";
q2Quotes[797] = "Your fortune stateth: You will step on the night soil of many countries.";
q2Quotes[798] = "During American History class: Jeff B.: The Red Death is coming in April! (About 15 minutes later, loud music starts in the room next door.) Jeff: The Red Death is upon us!";
q2Quotes[799] = "\"Wouldn't it be, um, cool if like, your eyes could zoom in on things, like that guy whose eyes can zoom in on things?\" -- Aaron S";
q2Quotes[800] = "A penny saved has not been spent.";
q2Quotes[801] = "Let him who would enjoy a good future waste none of his present. -- Roger Babson";
q2Quotes[802] = "\"Seek simplicity, and distrust it.\" -- Alfred North Whitehead";
q2Quotes[803] = "\"What is truth? Truth is something so noble that if God could turn aside from it, I would keep to the truth and let God go.\" -- Johannes Eckhard";
q2Quotes[804] = "I hear the sound that the machines make, and feel my heart break, just for a moment.";
q2Quotes[805] = "I will always love the false image I had of you.";
q2Quotes[806] = "A lie in time saves nine.";
q2Quotes[807] = "\"Bite my Funken-Wagnals. Ahh!\" -- Sara, Katie, Bee Jay, Justin, and Grace";
q2Quotes[808] = "\"A critic is a gong at a railroad crossing clanging loudly and vainly as the train goes by.\" -- Christopher Morley";
q2Quotes[809] = "Everything bows to success, even grammar.";
q2Quotes[810] = "BE ALERT!!!! (The world needs more lerts...)";
q2Quotes[811] = "Beggars should be no choosers. -- John Heywood";
q2Quotes[812] = "There is no fool to the old fool. -- John Heywood";
q2Quotes[813] = "Trust everybody, but cut the cards. -- Finley Peter Dunne";
q2Quotes[814] = "FORCE YOURSELF TO RELAX!";
q2Quotes[815] = "Happiness is good health and a bad memory. -- Ingrid Bergman";
q2Quotes[816] = "\"Words are, of course, the most powerful drug used by mankind.\" -- Rudyard Kipling";
q2Quotes[817] = "Every solution breeds new problems.";
q2Quotes[818] = "I'm prepared for all emergencies but totally unprepared for everyday life.";
q2Quotes[819] = "\"It was rock hard and I was trying to massage it.\" -- Sarah, recalling her bruised ankle.";
q2Quotes[820] = "The truth is more important than the facts. -- Frank Lloyd Wright";
q2Quotes[821] = "That is the best -- to laugh with someone because you think the same things are funny. -- Gloria Vanderbilt";
q2Quotes[822] = "Tyro: Yes. There are four condoms. Cher: You two can have sex with me two times each! Tyro: Sorry, I have respect for Rando. (pause) Rando: Two for me, none for you!";
q2Quotes[823] = "Television: A medium. So called because it is neither rare nor well done. -- Ernie Kovacs";
q2Quotes[824] = "\"Bigmac's brother was reliably believed to be in the job of moving video recorders around in an informal way.\" -- Terry Pratchett";
q2Quotes[825] = "Your fortune stateth: You will be recognized and honored as a community leader.";
q2Quotes[826] = "\"Be regular and orderly in your life, that you may be violent and original in your work.\" -- Clive Barker";
q2Quotes[827] = "-- Neophyte's serendipity.";
q2Quotes[828] = "\"My foot hurt. I didn't want to walk down the stairs.\" -- David after running, leaping, jumping down a flight of stairs, shaking the whole museum.";
q2Quotes[829] = "Is this Mitch or Jesus? -- Melissa, trying to sort through a stack of drawings.";
q2Quotes[830] = "\"I have had a very pleasure and you have made a big indent on me\". -- Very drunk woman white suburban woman to the old black bassist in a Chicago blues bar.";
q2Quotes[831] = "\"History will be kind to me, for I intend to write it.\" -- Winston Churchill";
q2Quotes[832] = "\"Belief in the supernatural reflects a failure of the imagination.\" -- Edward Abbey";
q2Quotes[833] = "I hear what you're saying but I just don't care.";
q2Quotes[834] = "Every major street in Austin has to have at least four names, or we don't feel comfortable. -- An Austin resident, explaining the road-naming scheme there.";
q2Quotes[835] = "\"It's like academic triage. It's hopeless.\" -- Sarah G., discussing study priorities.";
q2Quotes[836] = "\"I smell good today and my hair is not very loud.\" -- Jen";
q2Quotes[837] = "\"George Washington's brother was the Uncle of Our Country.\" -- 7-year-old Ryan";
q2Quotes[838] = "Nich: You're born naked, and you die naked. Matt: Well, if you're planning on being electrocuted in the bathtub.";
q2Quotes[839] = "\"We routinely catch people.\" -- Larry McCann, police officer, commenting on the effectiveness of the VA police force.";
q2Quotes[840] = "Your fortune stateth: Today's weirdness is tomorrow's reason why. -- Hunter S. Thompson";
q2Quotes[841] = "\"I pride myself on having practically impossible-to-figure-out nicknames.\" -- Ellie";
q2Quotes[842] = "There ought to be one day - just one - when there is open season on senators. -- Will Rogers";
q2Quotes[843] = "Help stamp out and abolish redundancy and repetition.";
q2Quotes[844] = "Every St. Patrick's Day every Irishman goes out to find another Irishman to make a speech to. -- Shane Leslie";
q2Quotes[845] = "\"The country has charms only for those not obliged to stay there.\" -- Edouard Manet";
q2Quotes[846] = "Your fortune stateth: You will experience a strong urge to do good; but it will pass.";
q2Quotes[847] = "\"It's raining Mensch... (snortle)...nevermind.\" -- Jess R.";
q2Quotes[848] = "All is fear in love and war.";
q2Quotes[849] = "Be right back. I'm going to go add yellow wavelengths to the toilet. -- Lisa";
q2Quotes[850] = "Jeremy: \"But giraffes aren't belligerent!\" Paul: \"Yeah, but if you rubber-banded them to something they might be!\"";
q2Quotes[851] = "\"He'd never realized that, deep down inside, what he really wanted to do was make things go splat.\" -- Terry Pratchett, _Reaper Man_";
q2Quotes[852] = "You can fool some of the people some of the time, and some of the people all of the time, and that is sufficient.";
q2Quotes[853] = "\"We were nearly one of the last to realize that in the age of information science the most expensive asset is knowledge.\" -- Mikhail Gorbachev";
q2Quotes[854] = "\"I took France in High School\" -- Sue, stating that she was the one most qualified to interpret a french phrase.";
q2Quotes[855] = "Zack: \"Here smell my backpack -- it smells like gutter water.\" Dan: \"No, I think I'll pass on that offer.\"";
q2Quotes[856] = "\"I cannot live without books.\" -- Thomas Jefferson";
q2Quotes[857] = "Alice: Who would win in a fight, Yoda or the Emperor? Mike: Easy. Yoda, because he's gay.";
q2Quotes[858] = "We are what we are.";
q2Quotes[859] = "Your fortune stateth: You plan things that you do not even attempt because of your extreme caution.";
q2Quotes[860] = "If unix is the face of the future I wanna go back to quill pens. -- Joseph Snipp";
q2Quotes[861] = "\"You know you're getting old when everyone you meet reminds you of someone you already know.\" -- Rusty S., age 30.";
q2Quotes[862] = "Life is like music; it must be composed by ear, feeling, and instinct, not by rule. -- Samuel Butler";
q2Quotes[863] = "\"Where I come from, after hearing something like that, you'd go, 'Damn!'\" -- Dave";
q2Quotes[864] = "Your fortune stateth: Break into jail and claim police brutality.";
q2Quotes[865] = "He who makes a beast of himself gets rid of the pain of being a man. -- Dr. Johnson";
q2Quotes[866] = "C'mon, Mama needs a new set of Yaffa blocks. -- Sharon Fleishman, upon hearing that I was buying a lottery ticket.";
q2Quotes[867] = "\"As soon as questions of will or decision or reason or choice of action arise, human science is at a loss.\" -- Noam Chomsky";
q2Quotes[868] = "\"Root beer's good, when you're drinking it.\" -- Alex Nardone, Northeastern University";
q2Quotes[869] = "\"The secret of being miserable is to have the leisure to bother about whether you are happy or not. The cure is occupation.\" -- George Bernard Shaw";
q2Quotes[870] = "\"I respect faith, but doubt is what gives you and education.\" -- Wilson Mizner";
q2Quotes[871] = "These old 486 boards are without shells. It's like they're snails that've been forced to leave their shells and are lying naked in the riverbed. -- Paul";
q2Quotes[872] = "\"There ain't no rules around here, we're trying to accomplish something.\" -- Thomas Alva Edison";
q2Quotes[873] = "Under certain circumstances, profanity provides a relief denied even to prayer. -- Mark Twain";
q2Quotes[874] = "\"That's exactly what it's like ... just not so much.\" -- Pat H.";
q2Quotes[875] = "\"Fear is the parent of cruelty.\" -- James Anthony Froude";
q2Quotes[876] = "Dieu me pardonnera. C'est son metier. Translation: God will forgive me. It's his job. -- Heinrich Heine, dying words";
q2Quotes[877] = "Faith is believing what you know ain't so. -- Mark Twain";
q2Quotes[878] = "Your fortune stateth: You will have domestic happiness and faithful friends.";
q2Quotes[879] = "A man's best friend is his dogma.";
q2Quotes[880] = "Now is the time for all good men to come to. -- Walt Kelly";
q2Quotes[881] = "\"It is error alone which needs the support of government. Truth can stand by itself.\" -- Thomas Jefferson";
q2Quotes[882] = "\"She's having her nozzles removed.\" -- A matter-of-fact 6-year-old, explaining at the dinner table why her friend wasn't at school today. Dinner was temporarily delayed.";
q2Quotes[883] = "Your fortune stateth: You will live to see your grandchildren.";
q2Quotes[884] = "\"You gotta keep your fists to your private.... I mean, to yourself, Private.\" -- a completely butchered line in a play where the Officer is trying to tell the Private to keep out of fights.";
q2Quotes[885] = "History will be kind to me for I intend to write it. -- Winston Churchill";
q2Quotes[886] = "\"I am the winter of your discontent. I am a pithed frog. OK, I can do without the rock-n-roll.\"";
q2Quotes[887] = "It's the thought, if any, that counts!";
q2Quotes[888] = "Ah, well, then I suppose I shall have to die beyond my means. -- Oscar Wilde, dying words";
q2Quotes[889] = "\"If a book is worth reading, it is worth buying.\" -- John Ruskin";
q2Quotes[890] = "Oh, sorry. Your sweater is fuzzy. -- Laura S. at the movie theater, to the person sitting in front of us who noticed Laura petting the soft, fuzzy sweater on the back of her chair.";
q2Quotes[891] = "\"America is the only country that went from barbarism to decadence without civilization in between.\" -- Oscar Wilde";
q2Quotes[892] = "I bet if we dug into the ground at the zoo we'd find that all the animals are on sticks. -- Dave Hunter";
q2Quotes[893] = "I can put it down anytime I want. I'm telling you it doesn't control my life. I can turn off the CB and not turn it back on for days. -- Woman overheard talking to another in line at Stein Mart.";
q2Quotes[894] = "\"From fanaticism to barbarism is only one step.\" -- Denis Diderot";
q2Quotes[895] = "That government is best which governs least. -- Henry David Thoreau, Civil Disobedience, 1849";
q2Quotes[896] = "Convictions are more dangerous enemies of truth than lies. -- Friedrich Nietzsche";
q2Quotes[897] = "Your fortune stateth: You look like a million dollars. All green and wrinkled.";
q2Quotes[898] = "\"You want a Poo-poo Platter?\" \"No, man...pull your pants up, I didn't come here for that sorta thing.\" -- Chris Cotton (at China Dragon one night)";
q2Quotes[899] = "Every time you manage to close the door on Reality, it comes in through the window.";
q2Quotes[900] = "\"Life... is like a grapefruit. It's orange and squishy, and has a few pips in it, and some folks have half a one for breakfast.\" -- Douglas Adams";
q2Quotes[901] = "NIHILIST, n. A Russian who denies the existence of anything but Tolstoi. The leader of the school is Tolstoi. -- Ambrose Bierce";
q2Quotes[902] = "Author: A fool, who, not content with having bored those who have lived with him, insists on tormenting the generations to come. -- Montesquieu";
q2Quotes[903] = "\"Earaches make me happy!\" -- Kristen";
q2Quotes[904] = "To love another person is to help them love God. -- Soren Kierkegaard";
q2Quotes[905] = "\"Stop! I shall absorb you!\" -- Amy K.";
q2Quotes[906] = "\"A free society is one where it is safe to be unpopular.\" -- Adlai Stevenson";
q2Quotes[907] = "Love one another and you will be happy. It's as simple and as difficult as that. -- Michael Leunig";
q2Quotes[908] = "I don't know why I love San Diego so much. Maybe because it's not LA. I love LA too, but in a different way. -- Roze";
q2Quotes[909] = "Your fortune stateth: Don't worry so loud, your roommate can't think.";
q2Quotes[910] = "\"Most of what I said today was right.\" -- Astronomy Prof Balbus, the day before the third test.";
q2Quotes[911] = "\"Memory is like an orgasm. It's a lot better if you don't have to fake it.\" -- Seymour Cray (on virtual memory)";
q2Quotes[912] = "\"Half of the church is watching the other half watch the priest; the other half is just asleep\" -- Joe Ely Carrales, III";
q2Quotes[913] = "\"To fall in love is awfully simple, but to fall out of love is simply awful.\" -- Bess Myerson";
q2Quotes[914] = "\"Hatred is gained as much by good works as by evil.\" -- Niccolo Machiavelli";
q2Quotes[915] = "Too many pieces of music finish too long after the end. -- Igor Stravinsky";
q2Quotes[916] = "MILLENNIUM, n. The period of a thousand years when the lid is to be screwed down, with all reformers on the under side. -- Ambrose Bierce";
q2Quotes[917] = "\"Do you remember the first line of 'I feel pretty'?\" \"I feel pretty ugly\" -- my wife";
q2Quotes[918] = "\"Well maybe if you took off yo chastity belt, maybe you could breathe a little bit mo' betta!\" -- Kate";
q2Quotes[919] = "\"But suppose I'm demonic!\" -- Merritt Gardner, Math Professor";
q2Quotes[920] = "SELF-EVIDENT, adj. Evident to one's self and to nobody else. -- Ambrose Bierce";
q2Quotes[921] = "Nothing can so alienate a voter from the political system as backing a winning candidate. -- Mark B. Cohen";
q2Quotes[922] = "Doesn't he get it? Should I wave a big red flag with \"I Hate You\" written on it? -- Nicki";
q2Quotes[923] = "\"There are two tragedies in life. One is to lose your heart's desire. The other is to gain it.\" -- George Bernard Shaw";
q2Quotes[924] = "I think I'm invisible now. Can you guys see me? -- Laura, after quite a bit of wine.";
q2Quotes[925] = "The reverse side also has a reverse side. -- Japanese proverb";
q2Quotes[926] = "The older one grows, the more one likes indecency. -- Virginia Woolf";
q2Quotes[927] = "Silence is the element in which great things fashion themselves. -- Thomas Carlyle";
q2Quotes[928] = "REVERENCE, n. The spiritual attitude of a man to a god and a dog to a man. -- Ambrose Bierce";
q2Quotes[929] = "\"Hey, I have shirt exactly like that, only it's completely different.\" -- JMUer";
q2Quotes[930] = "\"It has yet to be proven that intelligence has any survival value.\" -- Arthur C. Clarke";
q2Quotes[931] = "If God is One, what is bad? -- Charles Manson";
q2Quotes[932] = "Editing is a rewording activity.";
q2Quotes[933] = "No evil can happen to a good man. -- Plato";
q2Quotes[934] = "Me: This is my report. I think you'll be pleasently surprised. Teacher: This isn't done, and it has nothing to do with Saddam Hussain. Me: That's enough out of you!";
q2Quotes[935] = "\"How can one conceive of a one party system in a country that has over 200 varieties of cheese?\" -- Charles de Gaulle";
q2Quotes[936] = "If love is the answer, could you rephrase the question? -- Lily Tomlin";
q2Quotes[937] = "Your fortune stateth: Look afar and see the end from the beginning.";
q2Quotes[938] = "If I were to try to read, much less answer, all the attacks made on me, this shop might as well be closed for any other business. -- Abraham Lincoln";
q2Quotes[939] = "Your fortune stateth: Snow Day -- stay home.";
q2Quotes[940] = "There's a fine line between genius and insanity. I have erased this line. -- Oscar Levant";
q2Quotes[941] = "\"Ba'hai temple... I think I'll build one next to it, and I'll call it the Ba'bye temple.\" -- Colleen to Karin";
q2Quotes[942] = "\"In all affairs it's a healthy thing now and then to hang a question mark on the things you have long taken for granted.\" -- Bertrand Russell";
q2Quotes[943] = "What I have to say is far more important than how long my eyelashes are. -- Alanis Morissette, singer, 1995";
q2Quotes[944] = "\"In My Egotistical Opinion, most people's C programs should be indented six feet downward and covered with dirt.\" -- Blair P. Houghton";
q2Quotes[945] = "There are many things worth living for, there are a few things worth dying for, but there is nothing worth killing for. -- Tom Robbins";
q2Quotes[946] = "Like winter snow on summer lawn, time past is time gone.";
q2Quotes[947] = "\"Sometimes I think we're alone. Sometimes I think we're not. In either case, the thought is quite staggering.\" -- R. Buckminster Fuller";
q2Quotes[948] = "\"The system crashed. On my foot.\" -- Our sysadmin, after having an accident while moving a server from one room to another.";
q2Quotes[949] = "\"Meetings are indispensable when you don't want to do anything.\" -- John Kenneth Galbraith";
q2Quotes[950] = "The intelligent man finds almost everything ridiculous, the sensible man hardly anything. -- Johann Wolfgang von Goethe";
q2Quotes[951] = "\"Oooh! Road pizza!\" -- Jen, upon seeing a pizza box with pizza in it in the middle of the road up in the mountains.";
q2Quotes[952] = "\"When do I get to lick something?\" -- Shannon, while baking cookies.";
q2Quotes[953] = "Shawn: \"You are the coolst girl!' Heidi: \"The what?\" Shawn: \"The coolst! Heidi: \"It's the coolest, not coolst!\"";
q2Quotes[954] = "Your fortune stateth: Beware of low-flying butterflies.";
q2Quotes[955] = "\"The Spice Girls are like Microsoft. They are very popular, and you can't ignore them, but you try your best not to support them.\" -- Arbi";
q2Quotes[956] = "M: I'm going to Europe this summer. T: You're going to be sure and go to Italy, aren't you? M: No, Italy doesn't interest me much. T: But you want to see the Sistine Chapel, don't you? M: Why? I'm not Catholic.";
q2Quotes[957] = "We can do not great things - only small things with great love. -- Mother Theresa";
q2Quotes[958] = "\"I support comp.lang.awk for a few reasons: [...] It is very satisfying to be able to disagree with Tim Pierce.\" -- Janet Rosenbaum";
q2Quotes[959] = "\"We enact many laws that manufacture criminals, and then a few that punish them.\" -- Benjamin Ricketson Tucker";
q2Quotes[960] = "\"Our Constitution was made only for a moral and religious people. It is wholly inadequate to the government of any other.\" -- John Adams";
q2Quotes[961] = "That boy fell out of the ugly tree and hit the fat rock at the bottom! -- Jamie C.";
q2Quotes[962] = "\"We have first raised a dust and then complain we cannot see.\" -- Bishop Berkeley";
q2Quotes[963] = "\"To call war the soil of courage and virtue is like calling debauchery the soil of love.\" -- George Santayana";
q2Quotes[964] = "Your fortune stateth: Just to have it is enough.";
q2Quotes[965] = "\"It makes you look totally normal to everyone else, when in reality you are totally un-normal.\" -- Marla";
q2Quotes[966] = "\"Irony is the hygiene of the mind.\" -- Elizabeth Bibesco";
q2Quotes[967] = "\"#3537. Superfluity does not vitiate.\" -- California Civil Code, \"Maxims of Jurisprudence\"";
q2Quotes[968] = "The Killer Ducks are coming!!!";
q2Quotes[969] = "Your fortune stateth: Domestic happiness and faithful friends.";
q2Quotes[970] = "Fortune's graffito of the week (or maybe even month): Don't Write On Walls! (and underneath) You want I should type?";
q2Quotes[971] = "\"If I was a respect I wouldn't be so negatively!\" -- 7 year old Tracey trying very hard to use big words.";
q2Quotes[972] = "I feel sorry for your brain... all alone in that great big head...";
q2Quotes[973] = "I'm worried that the universe will soon need replacing. It's not holding a charge. -- Edward Chilton";
q2Quotes[974] = "When do you party 'till if the cows are already in? -- Michelle, a former city girl who moved to the country.";
q2Quotes[975] = "Considering the flames and intolerance, shouldn't USENET be spelled ABUSENET? -- Michael Meissner";
q2Quotes[976] = "\"There is more simplicity in the man who eats caviar on impulse than in the man who eats Grapenuts on principle.\" -- G. K. Chesterton";
q2Quotes[977] = "To love is good, love being difficult.";
q2Quotes[978] = "Truth can wait; he's used to it.";
q2Quotes[979] = "I wish I was a guy, so that I could wear skirts. -- Quinci, when a skirt-wearing man walked by.";
q2Quotes[980] = "Jim Brown: \"I'll have a hamburger.\" Waitress: \"I'm sorry, we ran out of hamburger.\" Jim: \"Ok, then I want a cheeseburger.\"";
q2Quotes[981] = "Coach: Deborah, don't forget to breathe! Deborah: What? Oh, yeah, that. -- during crew practice.";
q2Quotes[982] = "\"You're a disgrace to twindom world wide!\" -- John";
q2Quotes[983] = "\"I once said cynically of a politician, 'He'll doublecross that bridge when he comes to it.'\" -- Oscar Levant";
q2Quotes[984] = "\"They set the bus on fire, so they can't ride until May 1st.\" -- bus driver";
q2Quotes[985] = "\"Morality is simply the attitude we adopt to people we personally dislike.\" -- Oscar Wilde";
q2Quotes[986] = "\"Ioooooooooooooo!\" -- Travis Budd, when asked to read \"1,000,000\".";
q2Quotes[987] = "LIBERTY, n. One of Imagination's most precious possessions. -- Ambrose Bierce";
q2Quotes[988] = "If you go blind and deaf you masterbate too much. -- Tom fixing some sandwiches";
q2Quotes[989] = "It would save me a lot of time if you just gave up and went mad now.";