-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathquotes.toml
More file actions
3805 lines (3010 loc) · 171 KB
/
Copy pathquotes.toml
File metadata and controls
3805 lines (3010 loc) · 171 KB
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
[pre-toml-1]
submitter = "segfault"
quote = "Don't worry if it doesn't work right. If everything did, you'd be out of a job."
attribution = "Mosher's Law of Software Engineering."
[pre-toml-2]
submitter = "IrrelevantSwack"
quote = "Never go to the same pub twice, it's how the spies find you."
attribution = "Oliver"
[pre-toml-3]
submitter = "segfault"
quote = "Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live."
attribution = "John F. Woods"
[pre-toml-4]
submitter = "segfault"
quote = "The trouble with programmers is that you can never tell what a programmer is doing until it's too late."
attribution = "Seymour Cray"
[pre-toml-9]
submitter = "Gnome"
quote = "Give someone a program, frustrate them for a day. Teach them to program, frustrate them for a lifetime."
attribution = "David Leinweber"
# 5
[pre-toml-10]
submitter = "Gnome"
quote = "The most disastrous thing that you can ever learn is your first programming language."
attribution = "Alan Kay"
[pre-toml-13]
submitter = "Gnome"
quote = "Without requirements or design, programming is the art of adding bugs to an empty text file."
attribution = "Louis Srygley"
[pre-toml-14]
submitter = "Gnome"
quote = "The best method for accelerating a computer is the one that boosts it by 9.8 m/s²."
attribution = "Unknown"
[pre-toml-15]
submitter = "Gnome"
quote = "If builders built buildings the way programmers wrote programs, then the first woodpecker that came along would destroy civilisation."
attribution = "Weinberg's Second Law"
[pre-toml-17]
submitter = "Gnome"
quote = "It's not a bug — it's an undocumented feature."
attribution = "Will J. Doors"
# 10
[pre-toml-18]
submitter = "Gnome"
quote = "A good programmer is someone who always looks both ways before crossing a one-way street."
attribution = "Doug Linder"
[pre-toml-19]
submitter = "Gnome"
quote = "If debugging is the process of removing software bugs, then programming must be the process of putting them in."
attribution = "Edsger W. Dijkstra"
[pre-toml-21]
submitter = "Gnome"
quote = "In order to understand recursion, one must first understand recursion."
attribution = "Various"
[pre-toml-23]
submitter = "Gnome"
quote = "There are 2 difficult things in Software Engineering; 1) Naming things 2) Cache Invalidation and 3) Off-by-one errors."
attribution = "Martin Fowler"
[pre-toml-24]
submitter = "Gnome"
quote = "C makes it easy to shoot yourself in the foot; C++ makes it harder, but when you do it blows your whole leg off."
attribution = "Bjarne Stroustrup"
# 15
[pre-toml-27]
submitter = "Gnome"
quote = "Vim has 2 modes. One that beeps at you, and another that ruins everything."
attribution = "Unknown"
[pre-toml-28]
submitter = "Gnome"
quote = "Profanity: The truly multi-platform programming language."
attribution = "Unknown"
[pre-toml-33]
submitter = "Gnome"
quote = "Programs must be written for people to read, and only incidentally for machines to execute."
attribution = "Harold Ableson"
[pre-toml-35]
submitter = "Gnome"
quote = "Beware of bugs in the above code; I have only proved it correct, not tried it."
attribution = "Donald E. Knuth"
[pre-toml-36]
submitter = "Gnome"
quote = "Copy and paste is a design error."
attribution = "David Parnas"
# 20
[pre-toml-39]
submitter = "Gnome"
quote = "I can't go to a restaurant and order food because I keep looking at the fonts on the menu."
attribution = "Donald E. Knuth"
[pre-toml-41]
submitter = "Gnome"
quote = "Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it."
attribution = "Brian Kernighan"
[pre-toml-42]
submitter = "Gnome"
quote = "Computers are good at following instructions, but not at reading your mind."
attribution = "Donald E. Knuth"
[pre-toml-43]
submitter = "Gnome"
quote = "Listen. Strange women lying in ponds distributing swords is no basis for a system of government. Supreme executive power derives from a mandate from the masses, not from some farcical aquatic ceremony."
attribution = "Dennis, Monty Python and the Holy Grail"
[pre-toml-45]
submitter = "Gnome"
quote = '`bad_ideas :: Time -> IO ()`'
attribution = "Kris"
# 25
[pre-toml-46]
submitter = "Gnome"
quote = "A programmer is a person who passes as an exacting expert on the basis of being able to turn out, after innumerable punching, an infinite series of incomprehensive answers, calculated with micrometric precisions from vague assumptions, based on debatable figures taken from inconclusive documents, and carried out on instruments of problematical accuracy, by persons of dubious reliability and questionable mentality, for the avowed purpose of annoying and confounding a hopelessly defenseless department, that was unfortunate enough to ask for the information in the first place."
attribution = "Unknown"
[pre-toml-50]
submitter = "Gnome"
quote = "The question of whether computers can think is like the question of whether submarines can swim."
attribution = "paraphrasing Edsger W. Dijkstra, Science fiction and science reality in computing, EWD 952"
[pre-toml-52]
submitter = "Gnome"
quote = "Never trust a computer you can't throw out a window."
attribution = "Steve Wozniak"
[pre-toml-54]
submitter = "Gnome"
quote = "They have computers, and they may have other weapons of mass destruction."
attribution = "Janet Reno"
[pre-toml-56]
submitter = "Gnome"
quote = "There are two major products that come out of Berkeley: LSD and UNIX. We don't believe this to be a coincidence."
attribution = "Jeremy S. Anderson"
# 30
[pre-toml-57]
submitter = "Gnome"
quote = "There are only two kinds of programming languages: those people always bitch about and those nobody uses."
attribution = "Bjarne Stroustrup"
[pre-toml-58]
submitter = "Gnome"
quote = "January 19th 2038 at 3:14:07 AM"
attribution = "The End of the World"
[pre-toml-59]
submitter = "Gnome"
quote = "January 1st 1970 at 00:00:00 AM"
attribution = "The Birth of the UNIX Epoch"
[pre-toml-62]
submitter = "Gnome"
quote = "Computers are useless. They can only give you answers."
attribution = "Pablo Picasso"
[pre-toml-63]
submitter = "Gnome"
quote = "Hello, World!"
attribution = "Brian Kernighan"
# 35
[pre-toml-64]
submitter = "Gnome"
quote = "We are Microsoft. Lower your Anti-Virus protection and prepare to be compromised. Resistance is futile. Your technological uniqueness will be copy pasted. You will be assimilated."
attribution = "Microsoft's Borg of Directors /s"
[pre-toml-66]
submitter = "Gnome"
quote = "Come to think of it, there are already a million monkeys on a million typewriters, and Discord is nothing like Shakespeare."
attribution = "Blair Houghton"
[pre-toml-69]
submitter = "Gnome"
quote = "The use of COBOL cripples the mind; its teaching should, therefore, be regarded as a criminal offence."
attribution = "Edsger W. Dijkstra, How do we tell truths that might hurt?, EWD498, 1975"
[pre-toml-70]
submitter = "Gnome"
quote = "If Java had true garbage collection, most programs would delete themselves upon execution."
attribution = "Robert Sewell"
[pre-toml-71]
submitter = "Gnome"
quote = "640K ought to be enough for anybody."
attribution = "Bill Gates, 1981 (oft claimed but uncited quote)"
# 40
[pre-toml-77]
submitter = "Gnome"
quote = "If you put it off long enough, it might go away."
attribution = "Various"
[pre-toml-80]
submitter = "Gnome"
quote = "I haven't lost my mind — it's backed up on tape somewhere."
attribution = "Unknown"
[pre-toml-83]
submitter = "Gnome"
quote = "Very few profundities can be expressed in less than 80 characters."
attribution = "Unknown"
[pre-toml-85]
submitter = "Gnome"
quote = "Genius is one percent inspiration and ninety-nine percent perspiration."
attribution = "Thomas Alva Edison"
[pre-toml-87]
submitter = "Gnome"
quote = "Alcoholics Anonymous is when you get to drink under someone else's name."
attribution = "Unknown"
# 45
[pre-toml-88]
submitter = "Gnome"
quote = "It'll be a nice world if they ever get it finished."
attribution = "Unknown"
[pre-toml-91]
submitter = "Gnome"
quote = "[Being a Vulcan] means to adopt a philosophy, a way of life which is logical and beneficial. We cannot disregard that philosophy merely for personal gain, no matter how important that gain might be."
attribution = "Spock, Star Trek: The Original Series, Journey to Babel, stardate 3842.4"
[pre-toml-92]
submitter = "Gnome"
quote = "Human beings were created by water to transport it uphill."
attribution = "Peter Wang"
[pre-toml-96]
submitter = "Gnome"
quote = "We have more to fear from the bungling of the incompetent than from the machinations of the wicked."
attribution = "Bill Davidsen"
[pre-toml-99]
submitter = "Gnome"
quote = "Where a calculator on the ENIAC is equipped with 18,000 vacuum tubes and weighs 30 tons, computers in the future may have only 1,000 vacuum tubes and perhaps weigh 1½ tons."
attribution = "Popular Mechanics, March 1949"
# 50
[pre-toml-102]
submitter = "Gnome"
quote = "Computers are not intelligent. They only think they are."
attribution = "Lara Martin"
[pre-toml-103]
submitter = "Gnome"
quote = "Dyslexia means never having to say that you're ysror."
attribution = "My creator, and other fellow Lysdexics"
[pre-toml-104]
submitter = "Gnome"
quote = "If a thing's worth doing, it is worth doing badly."
attribution = "G. K. Chesterton"
[pre-toml-105]
submitter = "Gnome"
quote = "Money doesn't talk, it swears."
attribution = "Bob Dylan"
[pre-toml-106]
submitter = "Gnome"
quote = "Experience is something you don't get until just after you need it."
attribution = "Oliver's Law"
# 55
[pre-toml-108]
submitter = "Gnome"
quote = "There is grandeur in this view of life, with its several powers, having been originally breathed into a few forms or into one; and that, whilst this planet has gone cycling on according to the fixed law of gravity, from so simple a beginning endless forms most beautiful and most wonderful have been, and are being, evolved."
attribution = "Charles Darwin"
[pre-toml-109]
submitter = "Gnome"
quote = "Time is an illusion, lunchtime doubly so."
attribution = "Douglas Adams, The Hitchhiker's Guide to the Galaxy"
[pre-toml-113]
submitter = "Gnome"
quote = "Don't force it; get a larger hammer."
attribution = "Anthony's Law of Force"
[pre-toml-114]
submitter = "Gnome"
quote = "Narcolepulacyi, n.: The contagious action of yawning, causing everyone in sight to also yawn."
attribution = "Various"
[pre-toml-117]
submitter = "Gnome"
quote = '`Question = ( to ) ? be : ! be;`'
attribution = "Apocryphal, adapted from William Shakespeare, Hamlet"
# 60
[pre-toml-119]
submitter = "Gnome"
quote = "Walk softly and carry a big stick."
attribution = "Theodore Roosevelt"
[pre-toml-120]
submitter = "Gnome"
quote = "Your reasoning is excellent — it's only your basic assumptions that are wrong."
attribution = "Ashleigh Brilliant"
[pre-toml-121]
submitter = "Gnome"
quote = "Absolutum obsoletum. (If it works, it's out of date.)"
attribution = "Stafford Beer"
[pre-toml-123]
submitter = "Gnome"
quote = "Try to get all of your posthumous medals in advance."
attribution = "Unknown"
[pre-toml-124]
submitter = "Gnome"
quote = "Got a dictionary? I want to know the meaning of life."
attribution = "Unknown"
# 65
[pre-toml-125]
submitter = "Gnome"
quote = "It is the quality rather than the quantity that matters."
attribution = "Lucius Annaeus Seneca (4 BCE – 65 CE)"
[pre-toml-126]
submitter = "Gnome"
quote = "You don't have to explain something you never said."
attribution = "Calvin Coolidge"
[pre-toml-127]
submitter = "Gnome"
quote = "1 1 was a race-horse, 2 2 was 1 2. When 1 1 1 1 race, 2 2 1 1 2."
attribution = "Unknown"
[pre-toml-128]
submitter = "Gnome"
quote = "No snowflake in an avalanche ever feels responsible."
attribution = "Stanislaw Jerzy Lec"
[pre-toml-130]
submitter = "Gnome"
quote = "In the strict scientific sense we all feed on death — even vegetarians."
attribution = "Spock, Star Trek: The Original Series, Wolf in the Fold, stardate 3615.4"
# 70
[pre-toml-131]
submitter = "Gnome"
quote = "In politics, stupidity is not a handicap."
attribution = "Napoleon Bonaparte"
[pre-toml-135]
submitter = "Gnome"
quote = "With/Without — and who'll deny it's what the fighting's all about?"
attribution = "Pink Floyd"
[pre-toml-136]
submitter = "Gnome"
quote = "If you explain so clearly that nobody can misunderstand, somebody will."
attribution = "Chisholm's Second Corollary"
[pre-toml-137]
submitter = "Gnome"
quote = "Please remain calm, it's no use both of us being hysterical at the same time."
attribution = "Unknown"
[pre-toml-138]
submitter = "Gnome"
quote = "Don't put off for tomorrow what you can do today because if you enjoy it today, you can do it again tomorrow."
attribution = "James A. Michener"
# 75
[pre-toml-140]
submitter = "Gnome"
quote = "Would it help if I got out and pushed?"
attribution = "Princess Leia Organa"
[pre-toml-141]
submitter = "Gnome"
quote = "Things are more like they are today than they ever were before."
attribution = "Dwight Eisenhower"
[pre-toml-142]
submitter = "Gnome"
quote = "Paranoia is just heightened awareness."
attribution = "Claude Steiner"
[pre-toml-145]
submitter = "Gnome"
quote = "The best defense against logic is ignorance."
attribution = "Blaise Pascal"
[pre-toml-147]
submitter = "Gnome"
quote = "Life, n.: A whim of several billion cells to be you for a while."
attribution = "Groucho Marx"
# 80
[pre-toml-149]
submitter = "Gnome"
quote = "Dammit Jim, I'm an actor, not a doctor."
attribution = "Misquoted misquote from Dr. Leonard McCoy"
[pre-toml-151]
submitter = "Artemis"
quote = "A QA engineer walks into a bar. Orders a beer. Orders 0 beers. Orders 99999999999 beers. Orders a lizard. Orders -1 beers. Orders a ueicbksjdhd. First real customer walks in and asks where the bathroom is. The bar bursts into flames, killing everyone."
attribution = "Brenen Keller"
[pre-toml-153]
submitter = "Victor"
quote = "The primary difference [...] is that the Java program will reliably and obviously crash, whereas the C Program will do something obscure."
attribution = "Java Language Tutorial"
[pre-toml-154]
submitter = "Victor"
quote = "Please skip to the bottom of this file if you ate lunch recently."
attribution = "Alan Cox, Linux kernel pre-2.1.91-1"
[pre-toml-155]
submitter = "Gnome"
quote = "Have you considered public execution? It works wonders for motivation."
attribution = "IrrelevantSwack, after a fan failed."
# 85
[pre-toml-157]
submitter = "Gnome"
quote = "Failure is not an option — it comes bundled with Windows."
attribution = "Unknown"
[pre-toml-158]
submitter = "Gnome"
quote = "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music."
attribution = "Marcus Brigstocke"
[pre-toml-159]
submitter = "Gnome"
quote = "We here at swack have declared ourselves as the official successor to the clearly dying and defunct ISO Technical Committee. Honestly, what have standards ever done for us anyway?"
attribution = "IrrelevantSwack"
[pre-toml-160]
submitter = "Gnome"
quote = "Artificial Intelligence usually beats natural stupidity."
attribution = "Unknown"
[pre-toml-163]
submitter = "Gnome"
quote = "If at first you don't succeed; call it version 1.0"
attribution = "Apocryphal"
# 90
[pre-toml-176]
submitter = "Gnome"
quote = "The only problem with troubleshooting is that sometimes trouble shoots back."
attribution = "Unknown"
[pre-toml-177]
submitter = "Gnome"
quote = "Crap... Someone knocked over my recycle bin... There's icons all over my desktop..."
attribution = "Unknown"
[pre-toml-179]
submitter = "Gnome"
quote = "I would like to apologise to anyone whom I haven't offended yet. Please be patient, I will get to you shortly."
attribution = "Unknown"
[pre-toml-181]
submitter = "Gnome"
quote = "If brute force doesn't solve your problems, then you aren't using enough."
attribution = "Sherrilyn Kenyon"
[pre-toml-183]
submitter = "Gnome"
quote = "Unix is user-friendly. It's just very selective about who its friends are."
attribution = "Various"
# 95
[pre-toml-184]
submitter = "Gnome"
quote = "Microsoft: You've got questions. We've got dancing paperclips."
attribution = "Unknown"
[pre-toml-185]
submitter = "Gnome"
quote = "I'm not anti-social; I'm just not user friendly."
attribution = "Various"
[pre-toml-191]
submitter = "Gnome"
quote = "Hardware: The parts of a computer system that can be kicked."
attribution = "Unknown"
[pre-toml-195]
submitter = "Gnome"
quote = "Keyboard not found... Press any key to continue."
attribution = "Unknown"
[pre-toml-196]
submitter = "Gnome"
quote = "General Failure is a superior of Major Malfunction, who is searching for Private Files."
attribution = "Unknown"
# 100
[pre-toml-198]
submitter = "Gnome"
quote = "The Internet? We are not interested in it."
attribution = "Bill Gates, 1993"
[pre-toml-199]
submitter = "Gnome"
quote = "Computers are like Air Conditioners, they stop working when you open Windows."
attribution = "Linus Torvalds"
[pre-toml-201]
submitter = "segfault"
quote = "Sorry I missed your comment of many months ago. I no longer build software; I now make furniture out of wood. The hours are long, the pay sucks, and there's always the opportunity to remove my finger with a table saw, but nobody asks me if I can add an RSS feed to a DBMS, so there's that :)"
attribution = "Eric Diven"
source = "https://github.com/docker/cli/issues/267#issuecomment-695149477"
[pre-toml-202]
submitter = "segfault"
quote = "We have knowingly and willingly built the architecture of a police state, just so companies can show us ads."
attribution = "Bruce Schneier"
[pre-toml-203]
submitter = "Gnome"
quote = "The factory of the future will have only two employees, a man, and a dog. The man will be there to feed the dog. The dog will be there to keep the man from touching the equipment."
attribution = "Warren G. Bennis"
# 105
[pre-toml-204]
submitter = "Gnome"
quote = "For a list of all the ways technology has failed to improve the quality of life, please press three."
attribution = "Alice Kahn"
[pre-toml-207]
submitter = "Gnome"
quote = "Never let a computer know you're in a hurry."
attribution = "Various"
[pre-toml-209]
submitter = "segfault"
quote = "Uh oh, found a duplicate quote."
attribution = "Gnome"
[pre-toml-211]
submitter = "Gnome"
quote = "Once a new technology rolls over you, if you're not part of the steamroller, you're part of the road."
attribution = "David Gardner"
[pre-toml-212]
submitter = "Gnome"
quote = "A computer lets you make more mistakes faster than any invention in human history — with the possible exceptions of handguns and tequila."
attribution = "Mitch Ratcliffe"
# 110
[2022-07-30-your-name]
submitter = "Victor"
quote = "I came to see you. It wasn't easy because you were so far away."
attribution = "Taki Tachibana, Your Name"
[2022-05-08-the-floor]
submitter = "Gnome"
quote = "Oh, floor, you're always there for me. So supportive. Not like walls and staircases, always getting in my way."
attribution = "Princess Bean, Disenchantment"
[pre-toml-213]
submitter = "Gnome"
quote = "The real danger is not that computers will begin to think like people, but that people will begin to think like computers."
attribution = "Sydney G. Harris"
[pre-toml-215]
submitter = "Gnome"
quote = "Technology is ruled by two types of people: those who manage what they do not understand, and those who understand what they do not manage."
attribution = "Putt's Law"
[pre-toml-216]
submitter = "Gnome"
quote = "Any sufficiently advanced technology is indistinguishable from magic."
attribution = "Arthur C. Clarke"
# 115
[pre-toml-217]
submitter = "Gnome"
quote = "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."
attribution = "Andy Rooney"
[pre-toml-218]
submitter = "Gnome"
quote = "It's not computer literacy that we should be working on, but sort of human literacy. Computers have to become human-literate."
attribution = "Nicholas Negroponte"
[pre-toml-220]
submitter = "Gnome"
quote = "It has become appallingly obvious that our technology has exceeded our humanity."
attribution = "Albert Einstein"
[pre-toml-221]
submitter = "Gnome"
quote = "One machine can do the work of 50 ordinary people. No machine can do the work of one extraordinary person."
attribution = "Elbert Hubbard"
[pre-toml-222]
submitter = "Gnome"
quote = "People are slow, sloppy and brilliant thinkers; machines are fast, accurate and stupid."
attribution = "William M. Kelly"
# 120
[pre-toml-224]
submitter = "Gnome"
quote = "The saddest aspect of life right now is that science gathers knowledge faster than society gathers wisdom."
attribution = "Isaac Asimov"
[pre-toml-226]
submitter = "segfault"
quote = "Why do people find DNS so difficult? It's just cache invalidation and naming things."
attribution = "Jeff Waugh"
[pre-toml-227]
submitter = "segfault"
quote = "I can tell you a UDP joke, but I'm not sure you'll get it."
attribution = "Unknown"
[pre-toml-228]
submitter = "segfault"
quote = "If you have an apple and I have an apple and we exchange apples then you and I will still each have one apple. But if you have an idea and I have an idea and we exchange these ideas, then each of us will have two ideas."
attribution = "George Bernard Shaw"
[pre-toml-229]
submitter = "Gnome"
quote = "Pro advice: don't get python jobs... You think it'll be a good time, it will not be a good time."
attribution = "Kris"
# 125
[pre-toml-230]
submitter = "Kris"
quote = "Computer people can't number, it's not our department."
attribution = "Gnome"
[pre-toml-231]
submitter = "Gnome"
quote = "My marble smooth brain comes up with the best takes."
attribution = "James"
[pre-toml-232]
submitter = "Gnome"
quote = "I have a professional interest in heads."
attribution = "SinDemon"
[pre-toml-233]
submitter = "unreturnable"
quote = "Ehh, soldering is one of those things that takes a million hours of practice."
attribution = "Gnome"
[pre-toml-234]
submitter = "Gnome"
quote = "In feb I set a phone on fire in the office and had to ya-yeet it off my desk. It left a small crater in the carpet while it burned out."
attribution = "Kris"
# 130
[pre-toml-235]
submitter = "Gnome"
quote = "And, in just a more general sense, this is swack. We know what's swackening. We even, if we're feeling daring, call each other swackers. We like tech and all the rest of that, and while we can have some heated swacker moments, I don't think anyone here is going to outright claim that they're absolutely right about everything and refuse to engage in a conversation meant to improve both parties' understanding? So, you know. We like this stuff a lot. Remember the human on the other side, however enthusiastic we might be about the subject."
attribution = "Artemis"
[pre-toml-236]
submitter = "Gnome"
quote = "Latin doesn't automatically mean \"I win this argument\""
attribution = "unreturnable"
[pre-toml-237]
submitter = "Gnome"
quote = "If a lightbulb said 100 lumen but then actually was 90 I'd take it back."
attribution = "unreternable"
[pre-toml-238]
submitter = "Gnome"
quote = "'tis the way of the world now, everyone thinks everything is a quick fix."
attribution = "crox"
[pre-toml-239]
submitter = "Gnome"
quote = '''```python
with open("data/day4.txt") as o: print(len([p for p in [eval('{"'+s.replace("\n", ",").replace(" ", ",").replace(":",'":"').replace(",",'","').strip()+'"}') for s in map(str.strip, o.read().strip().split("\n\n"))] if (len(p)==8 or (len(p)==7 and "cid" not in p)) and (1920<=int(p["byr"])<=2002) and (2010<=int(p["iyr"])<=2020) and (2020<=int(p["eyr"])<=2030) and (len(p["hgt"])>2 and ((150<=int(p["hgt"][:-2])<=193) if p["hgt"][-2:]=="cm" else (59<=int(p["hgt"][:-2])<=76))) and (len(p["hcl"])==7 and p["hcl"][0]=="#" and int(p["hcl"][1:],16)) and (p["ecl"] in set(["amb", "blu", "brn", "gry", "grn", "hzl", "oth"])) and (len(p["pid"])==9 and int(p["pid"]))]))
```'''
attribution = "segfault"
# 135
[pre-toml-240]
submitter = "Gnome"
quote = "... fuck"
attribution = "IrrelevantSwack"
[pre-toml-241]
submitter = "Gnome"
quote = "I have very nuanced opinions."
attribution = "James"
[pre-toml-242]
submitter = "Gnome"
quote = "RON's dream has finally come true."
attribution = "Victor"
[pre-toml-246]
submitter = "Gnome"
quote = "We should come up with a hall of fame for how badly people can mangle our name."
attribution = "James"
[pre-toml-247]
submitter = "unreturnable"
quote = "Pub? Pub? Pub!"
attribution = "a typical swan_hack conversation"
# 140
[pre-toml-248]
submitter = "Victor"
quote = """
Pipes... O how they are such inconsiderate little tubes of hope and fluid traversal, they offer so much for us and yet can deliver so little when you most depend upon them. It is with great unfortune and much aplomb that we have been forced to intake the unthinkable and inconceivable. To declare full and total dictatorship upon the pipes of this great civilisation, we shall not use them whilst they continue to mock us!
As a result of these tragic events, the circumstance we now find ourselves in and frankly, the wrong kind of indoor weather for a meeting. We have decided, henceforth declared and now ratified with the power vested upon us by yourselves, the people, the otherwise and absolute re-location of our societies Annual General Meeting to an as of yet unspecified, unknown and undecided upon number of orbital revolutions in your near futures.
This challenging task is not one that which we permit ourselves without difficulty to it's undertaking. The aforementioned task is entirely necessary for us to entrust to ourselves, your elected committee in this completely organized regime. In a manner not unbeffiting of our stance, the challenge in question shall be carried out steadfastly and without issue.
There is no need to disillusion thyselves becuase of, or as a result of these events, or the information they have provided us, all is indeed quite well in the camp we know as Swack. A normal, albeit limited service, an organised yet chaotic dictatorship, will shortly resume. Only allowing of course that the current indoor weather decides it no long wishes to be inconsiderate towards homo sapiens and alike.
If your earthly visage, or that of another, has been or may one day become afflicted by these events, or the news they have been forced to convey then, we will not, that is absolutely not, give any, or partake in the giving, or otherwise conveying of, any mammalian droppings, leavings, or faeces what so ever.
*mic drop*
"""
attribution = "Gnome, after a pipe burst in the Linux lab"
[pre-toml-249]
submitter = "segfault"
quote = '```(input.split(" ")[0].to_i < @buffer.length + 1) ? move_buffer(input.split(" ")[0].to_i) : error if input[0].to_i.is_a?(Integer)```'
attribution = "Gnome"
[pre-toml-251]
submitter = "Gnome"
quote = "I just followed the Arch wiki, it's like Stack Overflow, just plug in commands!"
attribution = "Bun"
[pre-toml-252]
submitter = "Gnome"
quote = "Both are valid because words are fake and language is just made up noises."
attribution = "SinDemon"
[pre-toml-253]
submitter = "Victor"
quote = '''A "goto" in Perl falls into the category of hard things that should be possible, not easy things that should be easy.'''
attribution = "Larry Wall, <199709041935.MAA27136@wall.org>"
# 145
[pre-toml-254]
submitter = "crox"
quote = "The amount of energy needed to refute bullshit is an order of magnitude larger than to produce it."
attribution = "Brandolini's Law"
[pre-toml-255]
submitter = "Victor"
quote = """
Is Windows a Virus?
No, Windows is not a virus. Here's what viruses do:
n1. They replicate quickly — okay, Windows does that.
n2. Viruses use up valuable system resources, slowing down the system as they do so — okay, Windows does that.
n3. Viruses will, from time to time, trash your hard disk — okay, Windows does that too.
n4. Viruses are usually carried, unknown to the user, along with valuable programs and systems. Sigh... Windows does that, too.
n5. Viruses will occasionally make the user suspect their system is too slow (see 2) and the user will buy new hardware. Yup, that's with Windows, too.
Until now it seems Windows is a virus but there are fundamental differences: Viruses are well supported by their authors, are running on most systems, their program code is fast, compact and efficient and they tend to become more sophisticated as they mature. So Windows is not a virus.
It's a bug.
"""
attribution = "Unknown"
[pre-toml-256]
submitter = "Gnome"
quote = "Thousands of pipes we can shout at each other down. If you shout down 80, it's normal. If you shout down 443, every time you want to say anything you have to shout code words at each other first"
attribution = "IrrelevantSwack"
[pre-toml-257]
submitter = "segfault"
quote = "Monads are useful only every other Tuesday."
attribution = "Unknown"
[pre-toml-258]
submitter = "Gnome"
quote = "Monads are easy to understand, they're just the crystallisation of: \"we're scared of side-effects so we sweep them under the rug and pretend they're not eating the floorboards\""
attribution = "segfault"
# 150
[pre-toml-259]
submitter = "segfault"
quote = "O(n^2) is the sweet spot of badly scaling algorithms: fast enough to make it into production, but slow enough to make things fall down once it gets there."
attribution = "Dawson's First Law of Computing"
source = "https://twitter.com/BruceDawson0xB/status/1120381406700429312"
[pre-toml-260]
submitter = "Victor"
quote = "Linux poses a real challenge for those with a taste for late-night hacking (and/or conversations with God)."
attribution = "Matt Welsh"
[pre-toml-261]
submitter = "Kris"
quote = '''```ruby
ls = File.read("history").split("\n"); m = ARGV.length; t = Array.new(m, 0); ls.each { |li| (0..m-1).each { |i| t[i] += 1 if li.start_with?(ARGV[i]) } }; puts "total #{ls.length}"; (0..m-1).each { |i| puts "#{ARGV[i]} #{t[i]}"}
```'''
attribution = "Gnome"
[pre-toml-263]
submitter = "IrrelevantSwack"
quote = '''Overloading, also known as "lets just make every single time you call that operator now unclear as to what exactly it does"'''
attribution = "Gnome"
[pre-toml-264]
submitter = "Gnome"
quote = "Overloading, aka \"you best hope your editor can figure out what this actually is when you're fifteen files deep, otherwise good luck\""
attribution = "segfault"
# 155
[pre-toml-265]
submitter = "Gnome"
quote = "Hey it's perfectly simple. It'll call the thing that calls the thing that maybe is the thing that once was an interface but now we changed it to a class that everything now has to extend from which calls the thing that in the end was just a Hashmap"
attribution = "unreturnable, in regards to overloading in Java"
[pre-toml-266]
submitter = "Victor"
quote = "It was great to meet those folks and work with them for a while. It'll take me some time to get the taste of C++ out of my mouth, though!"
attribution = "Drew DeVault on working with the KDE team"
[pre-toml-268]
submitter = "Gnome"
quote = "If it was built in Rust your corpse just melts away once it's done being used."
attribution = "unreturnable"
[pre-toml-269]
submitter = "Gnome"
quote = "I will build my body out of COBOL, I will exist past the heat death of the universe, but I'll be broke because I have to pay the one last COBOL dev to maintain me."
attribution = "Artemis"
[pre-toml-270]
submitter = "Gnome"
quote = "In C++ an exception was thrown during the destructor so a broken skeleton is left behind, in C you explode in a glorious segfault"
attribution = "segfault"
# 160
[pre-toml-272]
submitter = "Gnome"
quote = "The universe is running on Go and God gave the heap infinite memory. Your corpse is just dead code, forever lying in the heap"
attribution = "Artemis"
[pre-toml-273]
submitter = "Gnome"
quote = "Two possibilities exist: either we are alone in the Universe or we are not. Both are equally terrifying."
attribution = "Authur C. Clarke"
[pre-toml-274]
submitter = "Gnome"
quote = "I think one of the reasons why anthropogenic climate change is so difficult for a certain type of person to accept is that atmospheres seem ethereal and tenuous and incapable of trapping enough heat to modify the temperature on a planet significantly. For such people I suggest a trip to Venus, where they will be squashed and boiled and dissolved on the surface of Earth's twin."
attribution = "Brian Cox, The Planets"
[pre-toml-275]
submitter = "Gnome"
quote = "We need to shift our focus. We live in a solar system of wonders, of planets of storms and moons of ice, of landscapes and vistas that stir the imagination and enrich the soul — a system of limitless resources, limitless beauty, and limitless potential. If we don't go there, we'll never go anywhere. And if we go nowhere, then we'll have no future at all."
attribution = "Brian Cox, The Planets"
[pre-toml-276]
submitter = "segfault"
quote = "PHP is a minor evil perpetrated and created by incompetent amateurs, whereas Perl is a great and insidious evil perpetrated by skilled but perverted professionals."
attribution = "Jon Ribbens"
# 165
[pre-toml-278]
submitter = "Gnome"
quote = "There is nothing new to be discovered in physics now. All that remains is more and more precise measurement."
attribution = "paraphrasing of Philipp von Jolly and Albert A. Michelson, 1878 and 1894 CE resp., misattributed to Lord William T. Kelvin (1824–1907 CE) from his speech to the Royal Institution, 1900 CE, where he expressed the exact opposite claim"
[pre-toml-279]
submitter = "Gnome"
quote = "As a former committee member, I have experience in the swackening."
attribution = "meetowl"
[pre-toml-280]
submitter = "Gnome"
quote = "No."
attribution = "Various"
[pre-toml-281]
submitter = "Gnome"
quote = "aaaaaaacccccdeeeeeghiiiiiiillllmmnnnnnnnnnooooppqrrstttttuuuuu."
attribution = "Christiaan Huygens"
[pre-toml-282]
submitter = "Gnome"
quote = "I've seen things you people wouldn't believe. Attack ships on fire off the shoulder of Orion. I watched C-beams glitter in the dark near the Tannhäuser Gate. All those moments will be lost in time, like tears in rain. Time to die."
attribution = "Roy Batty, Blade Runner, ad-libbed by Rutger Hauer"
# 170
[pre-toml-283]
submitter = "Gnome"
quote = "The time will come when diligent research over long periods will bring to light things which now lie hidden. A single lifetime, even though entirely devoted to the sky, would not be enough for the investigation of so vast a subject, and so this knowledge will be unfolded only through long successive ages. There will come a time when our descendants will be amazed that we did not know things that are so plain to them ... Many discoveries are reserved for ages still to come, when memory of us will have been effaced. Our Universe is a sorry little affair unless it has in it something for every age to investigate ... Nature does not reveal her mysteries once and for all."
attribution = "Lucius Annaeus Seneca, Natural Questions (Book 7)"
[pre-toml-284]
submitter = "Gnome"
quote = "The known is finite, the unknown infinite; intellectually we stand on an islet in the midst of an illimitable ocean of inexplicability. Our business in every generation is to reclaim a little more land."
attribution = "T. H. Huxley, On the reception of the 'Origin of Species', 1887"
[pre-toml-285]
submitter = "Gnome"
quote = "Do there exist many worlds, or is there but a single world? This is one of the most noble and exalted questions in the study of Nature."
attribution = "Albertus Magnus (1200–1280 CE)"
[pre-toml-286]
submitter = "Gnome"
quote = "I literally borked the autograder with a puny infinite loop."
attribution = "Volanti"
[pre-toml-287]
submitter = "segfault"
quote = "Honestly, a lot of free software is free as in piano — It's right there. Nobody is stopping you. You could totally spend hours of painstaking labor getting it carried up your front steps or built from a clusterfuck of diffs and patches or whatever. Everyone knows you won't."
attribution = "Leah Velleman"
source = "https://twitter.com/leahvelleman/status/1377829865504833536"
# 175
[pre-toml-288]
submitter = "Victor"
quote = "There's never been a shortage of people predicting that C++ will be dead in 2 years."
attribution = "Bjarne Stroustrup"
[pre-toml-289]
submitter = "Victor"
quote = "I should have invented a 'C++ inside' sticker"
attribution = "Bjarne Stroustrup"
[pre-toml-290]
submitter = "segfault"
quote = "My fake plants died because I did not pretend to water them."
attribution = "Mitch Hedberg"
[pre-toml-291]
submitter = "meetowl"
quote = "In a certain sense, every program on Windows begins by asking itself the perennial question: am I the 1998 Barbie Riding Club game, or can I run the program normally?"
attribution = "Pwn All The Things"
[pre-toml-292]
submitter = "Victor"
quote = "Okay, Okay — I admit it. You didn't change that program that worked just a little while ago; I inserted some random characters into the executable. Please forgive me. You can recover the file by typing in the code over again, since I also removed the source."
attribution = "`fortune`"
# 180