-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquotes.txt
1822 lines (1450 loc) · 50.1 KB
/
quotes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"Return to Steve Plimpton's home page"_main.html :c
:line
Ye Olde Quote Board :h3
This is a running list of interesting quotations I've heard or read,
which I originally kept on my office door. Most are humorous, some
are stupid, some are deep, some are Sandia-specific -- a small number
are all of the above.
:line
[(366)]
We are developing safe CRISPR-based technologies that send temporary
reprogramming codes to your body that will inhibit virus infection. :b
{-- Joe Schoeniger and Oscar Negrete on their Covid-19 work, Sandia} :b
:p
[(365)]
If you think it's expensive to hire a professional to do the job, wait
until you hire an amateur. :b
{-- Red Adair, oil well firefighter} :b
:p
[(364)]
The best dividends on the labor invested have invariably come from
seeking more knowledge rather than more power. :b
{-- Wright brothers, commenting on building the first flying machine,
or the first exascale computer} :b
:p
[(363)]
There's a law about Moore's law. The number of people predicting the
death of Moore's law doubles every two years. :b
{-- Peter Lee} :b
:p
[(362)]
Mistakes are the portals of discovery. :b
{-- James Joyce} :b
:p
[(361)]
Materials are like people - what makes them interesting are the
defects they have. :b
{-- Eduardo Bringa} :b
:p
[(360)]
Portable code is portable once it's been ported. :b
{-- Richard Barrett} :b
:p
[(359)]
The most radical revolutionary will become a conservative on the day
after the revolution. :b
{-- Hannah Arendt} :b
:p
[(358)]
Always code as if the person who ends up maintaining your code is a
violent psychopath who knows where you live. :b
Corollary: I usually maintain my own code, so the as-if is true. :b
{-- Martin Golding} :b
:p
[(357)]
SnapChat is the new FaceBook. You take a picture of yourself doing
something exciting, send it out to all your friends, they look at it,
and then after 30 secs it vanishes from their screen, never to be seen
again. Then they do the same to you. It's a bit like publishing in
PRL, without all the hassle. :b
{-- Aidan Thompson} :b
:p
[(356)]
If I have seen farther than others, it is because I was standing on
the shoulders of giants. :b
{-- Newton} :b
If I have not seen as far as others, it is because giants were
standing on my shoulders. :b
{-- Hal Abelson} :b
:p
[(355)]
The quantum electronic structure prayer: :b
Operator, can you help me. Help me if you please. Give me the right
piece of code. And the number that I need. :b
{-- Aidan Thompson, with apologies to the Grateful Dead} :b
:p
[(354)]
Linearity breeds contempt. :b
{-- Peter Lax} :b
:p
[(353)]
One of the universal rules of happiness is: always be wary of any helpful
item that weighs less than its operating manual. :b
{-- Terry Pratchett} :b
:p
[(352)]
Give a man a program and you frustrate him for a day. Teach him to program
and you frustrate him for life. :b
{-- Anonymous} :b
:p
[(351)] Premature optimization is not the root of {all} evil. It pays
to design scalability in from the start. :b
{-- Daniel Laney} :b
:p
[(350)] It's easy to make a small fortune in high performance computing
- start with a large one. :b
{-- Unknown} :b
:p
[(349)] It's harder than you might think to squander millions of
dollars, but a flawed software-development process is a tool well
suited to the job. :b
{-- Alan Cooper} :b
:p
[(348)] The better is the enemy of the good. :b
{-- Voltaire (apparently a software developer)} :b
:p
[(347)] Sarah Palin knows more about energy than probably anyone
else in the United States of America. :b
{-- John McCain, 2008} :b
Oil and coal? Of course, it's a fungible commodity and
they don't flag, you know, the molecules, where it's going and where
it's not. ... So, I believe that what Congress is going to do, also,
is not to allow the export bans to such a degree that it's Americans
that get stuck to holding the bag without the energy source that is
produced here, pumped here. :b
{ -- Sarah Palin (days later)} :b
:p
[(346)] Fortran lives on not in spite of its limitations, but because
of them. :b
{-- Richard Barrett} :b
:p
[(345)] Badges must be removed from their case prior to swiping to
enter into a turnstile or automatic gate. This recurring task of
swiping your badge and placing it back into its case prior to entering
a turnstile could result in an injury. :b
{-- Sandia bulletin} :b
:p
[(344)] Beauty is the first test: there is no permanent place in this
world for ugly mathematics. :b
{-- G. H. Hardy} :b
:p
[(343)] That's the great thing about algorithms. As long as you are
rigorous and precise, you can be as sloppy as you want. :b
{-- Charles Leiserson} :b
:p
[(342)] It was almost mystical in scalability. :b
{-- Rob Leland, on the Intel Tflops (ASCI Red) machine} :b
:p
[(341)] There are 1 kinds of people in the world, those who use
C-style 0-based indexing and those who don't. :b
{-- Unknown} :b
:p
[(340)] If I'm over the hill, why is it I don't recall ever being on
top? :b
{-- Jerry Muscha} :b
:p
[(339)] I guess I should warn you, if I turn out to be particularly
clear, you've probably misunderstood what I've said. :b
{-- Alan Greenspan} :b
:p
[(338)] One man alone can be pretty dumb sometimes, but for real bona
fide stupidity, there ain't nothin' can beat teamwork. :b
{-- Edward Abbey} :b
:p
[(337)] Those who can, do. Those who can't, simulate. :b
{-- Unknown} :b
:p
[(336)] Weaseling out of things is important to learn. It's what
separates us from the animals ... except the weasels. :b
{-- Homer Simpson} :b
:p
[(335)] Give a man a compliment and you'll feed him for a day; teach a
man how to fish for compliments and you'll feed his ego for life. :b
{-- Unknown} :b
:p
[(334)] To succeed in the world it is not enough to be stupid, you
must also be well-mannered. :b
{-- Voltaire} :b
:p
[(333)] What kind of fish do you think Sandia is? :b
{-- Discussion question from Advanced Concepts Group at Sandia} :b
How about a flounder. :b
{-- John Shadid} :b
:p
[(332)] If you put tomfoolery into a computer, nothing comes out but
tomfoolery. But this tomfoolery, having passed through a very
expensive machine, is somehow ennobled and no one dares criticize
it. :b
{-- Pierre Gallois} :b
:p
[(331)] There's an old story about the person who wished his computer
were as easy to use as his telephone. That wish has come true, since I
no longer know how to use my telephone. :b
{-- Bjarne Stroustrup} :b
:p
[(330)] Nothing shocks me. I'm a scientist. :b
{-- Indiana Jones} :b
:p
[(329)] As we know, there are known knowns. There are things we know
we know. We also know there are known unknowns. That is to say, we
know there are some things we do not know. But there are also unknown
unknowns, the ones we don't know. :b
{-- Donald Rumsfeld} :b
:p
[(328)] Our enemies are innovative and resourceful, and so are we.
They never stop thinking about new ways to harm our country and
our people, and neither do we. :b
{-- George W. Bush} :b
:p
[(327)] The most incomprehensible thing about the world is that it is at all
comprehensible. :b
{-- Albert Einstein} :b
:p
[(326)] I believe that a scientist looking at nonscientific problems is
just as dumb as the next guy. :b
{-- Richard Feynman} :b
:p
[(325)] Be who you are and say what you feel, because those who mind
don't matter and those who matter don't mind. :b
{-- Dr. Seuss} :b
:p
[(324)] We've heard that a million monkeys at a million keyboards
could produce the complete works of Shakespeare. Now, thanks to the
Internet, we know that is not true. :b
{-- Robert Wilensky} :b
:p
[(323)] A paranoid is someone who knows a little of what's going on. :b
{-- William Burroughs} :b
:p
[(322)] Politics is not the art of the possible. It consists in
choosing between the disastrous and the unpalatable. :b
{-- John Kenneth Galbraith} :b
:p
[(321)] Anything not worth doing is worth not doing well. :b
{-- Elias Schwartz} :b
:p
[(320)] Experts inside and outside the US government agree that
researchers at Los Alamos National Laboratory are not blowing up stuff
often enough. :b
{-- Science magazine} :b
:p
[(319)] The truth is more important than the facts. :b
{-- Frank Lloyd Wright} :b
:p
[(318)] There are 10 kinds of people in the world. Those who know binary
and those who don't. :b
{-- on a T-shirt} :b
:p
[(317)] In the 60s people took acid to make the world weird. Now the world is
weird and people take Prozac to make it normal. :b
{-- Unknown} :b
:p
[(316)] Nothing is impossible for the man who doesn't have to do it himself. :b
{-- Weiler's Law} :b
:p
[(315)] Emacs is a nice OS, but to compete with Linux or Windows it needs a
better text editor. :b
{-- Alexander Duscheleit} :b
:p
[(314)] Did you know that if you play a Windows XP CD backwards, you will hear
the voice of Satan? That's nothing! If you play it forward, it'll install
Windows XP. :b
{-- Unknown} :b
:p
[(313)] I think that gay marriage is something that should be between a man and a
woman. :b
{-- Arnold Schwarzenegger, in a radio interview} :b
:p
[(312)] Mathematicians are like Frenchmen: whatever you say to them they
translate into their own language and forthwith it is something entirely
different. :b
{-- J. W. Goethe} :b
:p
[(311)] We are confronted with insurmountable opportunities. :b
{-- Walt Kelly, Pogo} :b
:p
[(310)] Failure is not an option. It comes bundled with your software. :b
{-- Unknown} :b
:p
[(309)] For every hour of brains, you will be charged three hours. The other two
hours go to management and project management, which is to say they are wasted. :b
{-- Robert Cringely} :b
:p
[(308)] Committee: A group of men who individually can do nothing but as a group
decide that nothing can be done. :b
{-- Fred Allen} :b
:p
[(307)] Debugging is at least twice as hard as writing the program in the first
place. So if your code is as clever as you can possibly make it, then by
definition you're not smart enough to debug it. :b
{-- Brian Kernighan} :b
:p
[(306)] Hard work never killed anybody, but why take a chance? :b
{-- Charlie McCarthy} :b
:p
[(305)] The difference between this company and the Titanic is that the Titanic
had paying customers. :b
{-- Unknown} :b
:p
[(304)] On two occasions I have been asked by members of Parliament, "Pray, Mr.
Babbage, if you put into the machine wrong figures, will the right answers come
out?" I am not able rightly to apprehend the kind of confusion of ideas that
could provoke such a question. :b
{-- Charles Babbage} :b
:p
[(303)] Never mistake motion for action. :b
{-- Ernest Hemingway} :b
:p
[(302)] The need for accuracy must be weighed against the need for finality. :b
{-- Supreme Court, ruling on the 2000 presidential election} :b
:p
[(301)] Power Corrupts. PowerPoint Corrupts Absolutely. :b
{-- Unknown} :b
:p
[(300)] One of the criticisms that's been raised about PowerPoint is that it can
give the illusion of coherence and content when there really isn't very much
coherence or content. :b
{-- Edward Miller} :b
:p
[(299)] It's the opinion of some that crops could be grown on the moon. Which
raises the fear that it may not be long before we're paying somebody not to. :b
{-- Franklin Jones} :b
:p
[(298)] Perpetual optimism is annoying. It's a sign that you are not paying
attention. :b
{-- Maureen Dowd} :b
:p
[(297)] Your manuscript is both good and original, but the part that is good is
not original and the part that is original is not good. :b
{-- Samuel Johnson} :b
:p
[(296)] The generation of random numbers is too important to be left to chance. :b
{-- Robert Coveyou} :b
:p
[(295)] If I had 8 hours to chop down a tree, I'd spend 6 of them sharpening my
axe. :b
{-- Abraham Lincoln} :b
:p
[(294)] It takes 100s of years for deadwood to turn into mulch. :b
{-- Anonymous} :b
:p
[(293)] If everything seems under control, you're just not going fast enough. :b
{-- Mario Andretti} :b
:p
[(292)] No amount of genius can overcome a preoccupation with detail. :b
{-- Levy} :b
:p
[(291)] They laughed at Einstein. They laughed at the Wright Brothers. But they
also laughed at Bozo the Clown. :b
{-- Carl Sagan} :b
:p
[(290)] Computer science is the discipline that believes all problems can be
solved with one more layer of indirection. :b
{-- Dennis DeBruler} :b
:p
[(289)] Earth first! We'll mine the other planets later. :b
{-- Anonymous} :b
:p
[(288)] Brilliance is like four-wheel drive; it enables a person to get stuck in
even more remote places. :b
{-- Garrison Keillor} :b
:p
[(287)] I am guilty of the great crime of optimism. :b
{-- Edward Teller, asked about Star Wars} :b
:p
[(286)] What is research but a blind date with knowledge? :b
{-- Will Harvey} :b
:p
[(285)] If you don't know how to do something, you don't know how to do it with a
computer. :b
{-- Anonymous} :b
:p
[(284)] With the possible exception of veterans, farmers, and college students,
there is no group that squeals more loudly over a reduction of federal
subsidies than scientists. They are the quintessential special interest group,
and in effect, they make the oil industry look like a piker. :b
{-- OMB official} :b
:p
[(283)] DOE is updating a policy to prevent the unauthorized use of US nuclear
weapons and explosives. :b
{-- Tri-Valley Herald newspaper} :b
:p
[(282)] Being President is like running a cemetery. You've got a lot of people
under you, but nobody's listening. :b
{-- Bill Clinton} :b
:p
[(281)] A developer is someone who wants to build a house in the woods. An
environmentalist is someone who already owns a house in the woods. :b
{-- Dennis Miller} :b
:p
[(280)] Curiosity has its own reason for existence. One cannot help but be in awe
when one contemplates the mysteries of eternity, of life, of the marvelous
structure of reality. It is enough if one tries merely to comprehend a little
of this mystery each day. :b
{-- Albert Einstein} :b
:p
[(279)] We need to make the pie higher. :b
{-- George W. Bush} :b
:p
[(278)] The trouble with doing something right the first time is that nobody
appreciates how difficult it was. :b
{-- Unknown} :b
:p
[(277)] Heuristic methods don't work ... if they did, they would be called
algorithms. :b
{-- Unknown} :b
:p
[(276)] If a pig loses its voice, is it disgruntled? :b
{-- Unknown} :b
:p
[(275)] Success in life consists of going from one mistake to the next without
losing enthusiasm. :b
{-- Winston Churchill} :b
:p
[(274)] It takes a village to raise a child, but it takes a B-52 to raze a
village. :b
{-- Unknown} :b
:p
[(273)] To try to do something which is inherently impossible is always a
corrupting enterprise. :b
{-- Michael Oakshott} :b
:p
[(272)] If you live to be one hundred, you've got it made. Very few people die
past that age. :b
{-- George Burns} :b
:p
[(271)] Any sufficiently well-rigged demo is indistinguishable from advanced
technology. :b
{-- Unknown} :b
:p
[(270)] The trouble is, if any part of the DOE complex gets cancer, the whole
complex gets chemotherapy. :b
{-- Paul Robinson, Sandia president} :b
:p
[(269)] HPC is not leading edge anymore, it's lagging edge. :b
{-- Bill Camp} :b
:p
[(268)] The pure and simple truth is rarely pure and never simple. :b
{-- Oscar Wilde} :b
:p
[(267)] An expert is someone who doesn't know more than you, but uses vugraphs. :b
{-- Unknown} :b
:p
[(266)] If I had enough time, I could write less. :b
{-- Pascal} :b
:p
[(265)] If the brain were so simple we could understand it, we would be so simple
we couldn't. :b
{-- Lyall Watson} :b
:p
[(264)] Man is the best computer we can put aboard a spacecraft. And the only one
that can be mass-produced with unskilled labor. :b
{-- Wernher von Braun} :b
:p
[(263)] The sysadmin uncertainty principle: If you have a question the sysadmins
can answer, they won't be in their office. If they can't answer it, they'll be
there. :b
{-- Anonymous} :b
:p
[(262)] Computers make it easier to do a lot of things, but most of the things
they make it easier to do don't need to be done. :b
{-- Andy Rooney} :b
:p
[(261)] A grain of wisdom is worth an ounce of knowledge, which is worth a ton of
data. :b
{-- Neil Larson} :b
:p
[(260)] When dealing with management, you have to boxcar average over your boss's
temporal interest fluctations. :b
{-- Carl Sovinec} :b
:p
[(259)] Always tell the truth. That way, you don't have to remember what you
said. :b
{-- Mark Twain} :b
:p
[(258)] The intelligence of any discussion diminishes with the square of the
number of participants. :b
{-- Adam Walinsky} :b
And exponentially with the size of the bureaucracy. :b
{-- Sandia amendment} :b
:p
[(257)] To be a programmer is to develop a carefully managed relationship with
error. There's no getting around it. You either make your accomodations with
failure, or the work will become intolerable. :b
{-- Ellen Ullman} :b
:p
[(256)] I don't suffer from insanity, I enjoy every minute of it! :b
{-- Button} :b
:p
[(255)] Never be afraid to try something new. Remember, amateurs built the ark;
professionals built the Titanic. :b
{-- Unknown} :b
:p
[(254)] The purpose of most computer languages is to lengthen your resume by a
word and a comma. :b
{-- Larry Wall} :b
:p
[(253)] Psychotics are consistently inconsistent. The essence of sanity is to be
inconsistently inconsistent. :b
{-- Larry Wall} :b
:p
[(252)] New DOE policy: Scientists at the nation's nuclear weapons laboratories
must report any romantic liaison with a foreigner, unless it's a one-night
stand. :b
{-- Washington Post} :b
:p
[(251)] One of the symptoms of an approaching nervous breakdown is the belief
that one's work is terribly important. :b
{-- Bertrand Russell} :b
:p
[(250)] Never attribute to malice that which can be adequately explained by
stupidity. :b
{-- Robert Heinlein} :b
:p
[(249)] The nuclear weapons complex needs to be rescued from the Energy
Department. :b
{-- Senator Shelby} :b
:p
[(248)] Forty is the old age of youth; fifty is the youth of old age. :b
{-- Victor Hugo} :b
:p
[(247)] They call the CPlant machine Alaska because it's big, sparsely populated,
and lacks infrastructure. :b
{-- Kent Budge} :b
:p
[(246)] If Bill Gates had a nickel for every time Windows crashed, he'd be a
billionaire. :b
{-- Unknown} :b
:p
[(245)] The paperless office will happen soon after the paperless toilet. :b
{-- Unknown} :b
:p
[(244)] The statistics on sanity are that one out of every four Americans is
suffering from some form of mental illness. Think of your three best friends.
If they're okay, then it's you. :b
{-- Rita Mae Brown} :b
:p
[(243)] Basic research is like shooting an arrow into the air and where it lands,
painting a target. :b
{-- Homer Adkins} :b
:p
[(242)] Development is when you know the answer, but not how to get there.
Applied research is when you know the question, but not the answer. Pure
research is when you don't know the question. :b
{-- Nick MacLaren} :b
:p
[(241)] How could this be a problem in a country where we have Intel and
Microsoft. :b
{-- Al Gore, on the Y2K problem} :b
:p
[(240)] Truth is stranger than fiction, because fiction has to make sense. :b
{-- Unknown} :b
:p
[(239)] Always forgive your enemies, but never forget their names. :b
{-- John F. Kennedy} :b
:p
[(238)] Farming looks easy when your plow is a pencil and you're a 1000 miles
from a corn field. :b
{-- Dwight Eisenhower} :b
:p
[(237)] The greatest lesson in life is to know that even fools are right
sometimes. :b
{-- Winston Churchill} :b
:p
[(236)] Never insult an alligator until after you have crossed the river. :b
{-- Cordell Hull} :b
:p
[(235)] Football combines two of the worst things about American life. It is
violence punctuated by committee meetings. :b
{-- George Will} :b
:p
[(234)] Americans will always do the right thing ... after they have exhausted
all the other possibilities. :b
{-- Winston Churchill} :b
:p
[(233)] No good deed goes unpunished. :b
{-- Clare Booth Luce} :b
:p
[(232)] Do not look directly into laser beam with remaining eye. :b
{-- sign in Sandia lab} :b
:p
[(231)] I'll do business with anyone, but I'll only go sailing with gentlemen. :b
{-- J. P. Morgan} :b
:p
[(230)] You should never settle for the lesser of two weasels. :b
{-- Dilbert} :b
:p
[(229)] The search was like listening for a gnat's whisper in a hurricane. :b
{-- Frederick Reines, discoverer of the neutrino} :b
:p
[(228)] The EPA thinks it's better to pound on the wrong nail than not to pound
at all. :b
{-- Commentary on EPA radon rulings} :b
:p
[(227)] It is pretty hard to talk about responsibility unless you have exercised
it yourself. :b
{-- Bill Clinton, 1987.} :b
:p
[(226)] Nearly all men can stand adversity, but if you want to test a man's
character, give him power. :b
{-- Abraham Lincoln} :b
:p
[(225)] In the fight between you and the world, back the world. :b
{-- Franz Kafka} :b
:p
[(224)] The most serious idleness is to be busy about things that do not matter. :b
{-- Chinese proverb} :b
:p
[(223)] There is nothing so useless as doing efficiently that which should not be
done at all. :b
{-- Peter Drucker} :b
:p
[(222)] If you see a snake do not approach it. Sandia is negotiating a contract
for snake pick-up. :b
{-- Porcelain Press} :b
:p
[(221)] No science is immune to the infection of politics and the corruption of
power. :b
{-- Jacob Bronowski} :b
:p
[(220)] We can imagine scientific users with thoughtful looks on their faces,
surrounded by their data as they wander through their offices and hallways,
talking to the applications, listening to the results, and drawing on the
walls. :b
{-- Turner Whitted of Microsoft, on un-tethering graphics from the desktop} :b
:p
[(219)] Physics isn't a religion. If it were, we'd have a much easier time
raising money. :b
{-- Leon Lederman} :b
:p
[(218)] Pick battles big enough to matter, small enough to win. :b
{-- Jonathan Kozol} :b
:p
[(217)] In mythology, Janus = the two-faced God of Gateways. :b
{-- Al Hurd (Janus is the name of Sandia's Intel TFLOPS supercomputer)} :b
:p
[(216)] Computers are useless. They can only give you answers. :b
{-- Pablo Picasso} :b
:p
[(215)] By the time you kill and mount what you catch, it has lost that very
thing that made it worth having. I knew this only as a vague sense of
disappointment at age 10; not until later did I recognize it as a metaphor for
much of life. :b
{-- Anna Quindlen, on collecting butterflies} :b
:p
[(214)] The hallmark of science is an experiment that can be repeated. The
hallmark of psuedo-science is a headline that can be repeated. :b
{-- The Economist} :b
:p
[(213)] Originality is the fine art of remembering what you hear but forgetting
where you heard it. :b
{-- Lawrence Peter} :b
:p
[(212)] One World, One Web, One Program. :b
{-- Microsoft Promotional} :b
Ein Volk, Ein Reich, Ein Fuhrer. :b
{-- Adolf Hitler} :b
:p
[(211)] Windows 98 (n): 32-bit extensions and a graphical shell for a 16-bit
patch to an 8-bit operating system originally coded for a 4-bit microprocessor,
written by a 2-bit company that can't stand for 1 bit of competition. :b
{-- Stan Brown} :b
:p
[(210)] If you want ASCI funding, you have to go to Washington and kiss Gil
Weigand's ASCI ring. :b
{-- Anonymous} :b
:p
[(209)] I don't see Merced appearing on a mainstream desktop inside of a decade. :b
{-- Andy Grove, Intel} :b
:p
[(208)] The enormous volumes that Intel can generate with Merced will drive the
current RISC microprocessors off the desktops over the next 5 years. :b
{-- Larry Smarr, NCSA} :b
:p
[(207)] If it's not on the Web, it's not worth knowing. :b
{-- Steve Attaway} :b
:p
[(206)] A lot of people in physics are solving problems that don't need to be
solved. :b
{-- Steve Wolfram} :b
:p
[(205)] 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. :b
{-- Albert Einstein} :b
:p
[(204)] Internet gambling is the same as my last career, except the folks I work
with now are less sleazy. :b
{-- Jay Cohen, former stock trader} :b
:p
[(203)] Gambling is the future of the Internet; you can only look at so many
dirty pictures. :b
{-- Simon Noble, Intertops bookmaking} :b
:p
[(202)] It's based on science, so it's pretty accurate. :b
{-- Sandia spokesman Chris Miller on dinosaur noise simulations} :b
:p
[(201)] I like to keep an open mind, but not so open my brains fall out. :b
{-- Arthur Sulzberger, NY Times chairman} :b
:p
[(200)] Knowledge grows linearly, ignorance exponentially. :b
{-- Malthus Law of Research} :b
:p
[(199)] Boxing is like ballet, except there's no dancing, no choreography, and
the dancers hit each other. :b
{-- Unknown} :b
:p
[(198)] JAVA - write once, debug everywhere. :b
{-- Unknown} :b
:p
[(197)] The one serious conviction that a man should have is that nothing is to
be taken too seriously. :b
{-- Samuel Butler} :b
:p
[(196)] Complexity is not a goal. I don't want to be remembered as an engineer of
complex systems. :b
{-- David Parnas} :b
:p
[(195)] Increasingly, people seem to misinterpret complexity as sophistication,
which is baffling; the incomprehensible should cause suspicion rather than
admiration. :b
{-- Niklaus Wirth} :b
:p
[(194)] Even though this concept is implausible, the potential implications are
enormous. Can we not afford to invest a small amount in pursuit of this
question? :b
{-- NIH Office of Alternative Medicine, in Nature, defending research into
homeopathic claims that biological information can be stored in water} :b
:p
[(193)] You must be willing to bet your paycheck on a simulation. :b
{-- Russ Skocypek (since moved to new job) on ASCI fire simulations, in Science News} :b
:p
[(192)] The chief source of problems is solutions. :b
{-- Eric Sevareid} :b
:p
[(191)] In science, if the last 50 years were the age of physics, the next 50
years will be the age of biology. :b
{-- Bill Clinton} :b
:p
[(190)] Some problems don't go away until people retire. :b
{-- Dan Hitchcock, DOE} :b
:p
[(189)] I love deadlines. I like the whooshing sound they make as they fly by. :b
{-- Douglas Adams} :b
:p
[(188)] I can only please one person per day. Today is not your day. Tomorrow
isn't looking good either. :b
{-- Dave Morse} :b
:p
[(187)] If it doesn't have a badge, kill it. :b
{-- Lucille Verdugo} :b
:p
[(186)] Ride the synergy. :b
{-- David Greenberg, on Cplant.} :b
:p
[(185)] At Sandia we promise the world -- and deliver the 3rd world. :b
{-- Sandia manager} :b
:p
[(184)] Any clod can have the facts, but having opinions is an art. :b
{-- Charles McCabe, SF Chronicle} :b
:p
[(183)] If at first you don't succeed, skydiving's not for you. :b
{-- Unknown} :b
:p
[(182)] If you want to know what God thinks about money, just look at the people
He gives it to. :b
{-- Old Irish saying} :b
:p
[(181)] You can't get to overexposed, without going thru filthy rich first. :b
{-- Scott Adams} :b
:p
[(180)] An application area does not become devoid of intellectual challenge
simply because someone can make money from it. :b
{-- IBM manager} :b
:p
[(179)] Science is a wonderful thing, if one does not have to earn a living at
it. :b
{-- Albert Einstein} :b
:p
[(178)] ASCI is a Ponzi scheme. :b
{-- Gerry Yonas} :b
:p
[(177)] Reaching a teraflop is the single biggest computer science achievement in
two decades. Ten years ago, the most credible leaders in computing said it was
not possible. :b
{-- Gil Weigand} :b
:p
[(176)] If men can run the world, why can't they stop wearing neckties? How
intelligent is it to start every day by tying a little noose around your neck? :b
{-- Linda Ellerbee} :b
:p
[(175)] There are 3 kinds of mathematicians -- those who can count and those who
can't. :b
{-- Unknown} :b
:p
[(174)] It's not whether you win or lose, it's how you place the blame. :b
{-- Sandia motto} :b
:p
[(173)] When C++ is your hammer, every problem looks like your thumb. :b
{-- Preston Briggs} :b
:p
[(172)] If you've been pounding nails with your forehead for years, it may feel
strange the first time someone hands you a hammer. But that doesn't mean that
you should strap the hammer to a headband just to give your skull that old
familiar jolt. :b
{-- Off the Internet} :b
:p
[(171)] The more I watch television, the more I wonder why I'm not already
Supreme ruler of Earth. :b
{-- Dogbert} :b
:p