-
Notifications
You must be signed in to change notification settings - Fork 6
/
petrov_day.tex
1641 lines (1286 loc) · 60.6 KB
/
petrov_day.tex
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
\documentclass{article}
% TODO: Make this different for two-sided printing than for two-up printing
% (two-up should have equal L/R margins)
\usepackage[paperwidth=5.5in, paperheight=8.5in, twoside, top=0.8in, bottom=0.8in, inner=0.6in, outer=1.0in]{geometry}
\usepackage{caption}
\usepackage{subcaption}
\usepackage{graphicx}
\begin{document}
\author{James Babcock ([email protected])}
\title{Petrov Day}
% Ideas to incorporate {{{
% X Move the Malthus bit to after three candles are lit (establishing the pattern)
% X Incorporate a tree of extinct human relatives, in the section about evolution
% Mention collapsed civilizations: Easter Island, that island hypothesized as being Atlantis, Mayans, etc
% Work in a mention of Moloch
% Discuss the post-WW2 measures as a way of ending on a positive note: formation of the UN, twinning, reaties
% - Mention abandonment of nuclear powered rockets
% Mention environmental successes
% }}}
% Quotes to maybe use {{{
%
% Through the years her work continued to yield surprising insights, such as
% the unsettling discovery that chimpanzees engage in primitive and brutal
% warfare. In early 1974, a “four-year war” began at Gombe, the first record
% of long-term “warfare” in nonhuman primates. Members of the Kasakela group
% systematically annihilated members of the “Kahama” splinter group. --Jane Goodall
% Most species do their own evolving, making it up as they go along, which is
% the way Nature intended. -–Terry Pratchett
% Most gods throw dice, but Fate plays chess, and you don’t find out til too
% late that he’s been playing with two queens all along. -–Terry Pratchett
% Man still bears in his bodily frame the indelible stamp of his lowly origin. –Charles Darwin
% }}}
\newcommand{\divider}{ %{{{
% From http://tex.stackexchange.com/questions/32711/totally-sweet-horizontal-rules-in-latex
\nointerlineskip \vspace{\baselineskip}
\hspace{\fill}\rule{0.5\linewidth}{.7pt}\hspace{\fill}
\par\nointerlineskip \vspace{\baselineskip}
} %}}}
\newcommand{\stagedir} [1] { %{{{
\begin{itshape}
#1
\end{itshape}
} %}}}
\newcommand{\blockquote} [2] { %{{{
\begin{center}
\parbox{3.5in}{
``#1''
\begin{flushright}
--- #2
\end{flushright}
}
\end{center}
} %}}}
\newcommand{\blockquoteUnattributed} [1] { %{{{
\begin{center}
\parbox{3.5in}{
``#1''
}
\end{center}
} %}}}
\newcommand{\blockspacing} [1] { %{{{
\begin{center}
\parbox{3.5in}{
#1
}
\end{center}
} %}}}
\newcommand{\blockquoteUnmarked} [2] { %{{{
\begin{center}
\parbox{3.5in}{
#1
\begin{flushright}
--- #2
\end{flushright}
}
\end{center}
} %}}}
\newcommand{\poem} [2] { %{{{
\begin{center}
\parbox{3.5in}{
#1
\begin{flushright}
--- #2
\end{flushright}
}
\end{center}
} %}}}
\newcommand{\page} [1] { %{{{
\divider
#1
\divider
\newpage
} %}}}
\newcommand{\pageNoBottomDiv} [1] { %{{{
\divider
#1
\newpage
} %}}}
\newcommand{\sidePage} [1] { %{{{
\vspace*{0.2in}
#1
\newpage
} %}}}
\newcommand{\candelabrum} [1] { %{{{
\begin{center}
\includegraphics[width=3in]{#1}
\end{center}
} %}}}
\newcommand{\candlePassing} { %{{{
\begin{center}
\includegraphics[width=2.5in]{images/candlepassing.png}
\end{center}
} %}}}
% Don't indent paragraphs
\setlength{\parindent}{0cm}
\setlength{\parskip}{\baselineskip}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Front Matter
% Title page {{{
\pagenumbering{gobble}
\sidePage{
\begin{flushright}
\parbox{3in}{
\begin{center}
\Huge{Petrov Day}\newline
\large{September 26}\newline
\large{By James Babcock}\newline
\end{center}
}
\end{flushright}
} % }}}
% What-is-this page 1 {{{
\pagenumbering{arabic}
\page{
Petrov Day is a yearly event on September 26 commemorating the anniversary of
the Petrov incident, where a false alarm in the Soviet early warning system
nearly set off a nuclear war. The purpose of the ritual is to make catastrophic
and existential risk emotionally salient, by putting it into historical context
and providing positive and negative examples of how it has been handled. This
is not for the faint of heart and not for the uninitiated; it is aimed at those
who already know what catastrophic and existential risk is, have some
background knowledge of what those risks are, and believe (at least on an
abstract level) that preventing those risks from coming to pass is important.
\divider
You will need:
\begin{itemize} \itemsep0pt \parskip0pt \parsep0pt
\item A printout of this booklet for each person
\item A table with enough chairs to seat everyone
\item A candle holder
\item 8 candles and a lighter
\item A fire extinguisher close enough to retrieve if needed
\item A deck of small index cards or a pad of post-it notes, and some pens
\end{itemize}
} % }}}
% What-is-this page 2 {{{
\page{
Version 1.3.
By James Babcock with content contributions by Ben Landau-Taylor, Adia Porter,
Daniel Speyer and Raymond Arnold, and quotations from many sources. Thanks to
Eliezer Yudkowsky for introducing the idea of commemorating Petrov Day, and to
all the testers, event organizers, and others who've made this possible.
\divider
\stagedir{Stage directions are written in italics, like this. All other text is
to be read aloud. Whenever there is a horizontal line, it becomes the next
person's turn to speak, going clockwise. When reading quotes, you don't need to
read the name and date at the end.}
This day, September 26, is Petrov Day. In 1983, the story of humanity nearly
ended. We're gathered here to remember that moment, and others like it. But to
really feel the magnitude of those events, we need to visit them in their
proper context. Let us begin the story of human history, starting from the
beginning.
} % }}}
% Introduction Section
% Intro page {{{
\page{
%\stagedir{Content warning: Engineered to evoke strong feelings of existential terror.}
\blockquote{In the beginning, the universe was created. This has made a lot of
people very angry, and been widely regarded as a bad move.}{Douglas Adams}
\divider
Let's fast forward over the thirteen billion year long prequel. Our story
begins in the age of myth, of fossils and legends. It starts with the invention
of fire.
} %}}}
% Prometheus quote: Light candle 1 {{{
\page{
\blockquote{I've hunted down and stolen, inside the hollow of a fennel's stalk,
the seed of fire, a gift that has proven itself to be the teacher of every craft
and the greatest resource for humans. Such is the crime I have committed and
this is the penalty I am to suffer: nailed and chained on this rock beneath the
open sky.}{Prometheus Bound}
\candelabrum{images/candelabrum1.png}
\stagedir{Light the left-most candle, to represent the invention of fire. Point
out the location of the nearest fire extinguisher, then dim or turn off all
other lights in the room.}
} %}}}
% Prehistory
% About Fire {{{
\page {
Depending which archaeologists you ask, fire was first used by either Homo
Erectus or Homo Ergaster, some time between 400 thousand and 1.7 million years
ago. Cooking is believed to have enabled larger, more energy-intensive brains,
allowing the evolution of increased intelligence, and language.
\divider
\blockquote{Most species do their own evolving, making it up as they go along,
which is the way Nature intended. And this is all very natural and organic and
in tune with mysterious cycles of the cosmos, which believes that there's
nothing like millions of years of really frustrating trial and error to give a
species moral fiber and, in some cases, backbone.}{Terry Pratchett}
} %}}}
% Family tree {{{
\sidePage {
\newcommand{\skull} [2] { %{{{
\parbox{1.3in}{
\begin{center}
\includegraphics[width=1.2in]{#1}
#2
\end{center}
}
} %}}}
\skull{images/H_ergaster.png}{Homo Ergaster}
\skull{images/H_erectus.png}{Homo Erectus}
\skull{images/H_florensiensis.png}{Homo Florensiensis}
\skull{images/H_habilis.png}{Homo Habilis}
\skull{images/H_heidelbergensis.png}{Homo Heidelbergensis}
\skull{images/H_neanderthalis.png}{Homo Neanderthalis}
\skull{images/H_rudolfensis.png}{Homo Rudolfensis}
} %}}}
% CUT: Fire and speech {{{
%\page {
%
%Estimates place the invention of fire somewhere from 400,000 to 1.7 million
%years ago, while anatomically modern humans did not appear until 200,000 years
%ago.
%
%Fire is not, by itself, of particularly great importance. It grants protection
%from the cold of winter, and access to foods that would otherwise be inedible;
%but if it had stopped there, then the story of genus homo would have been
%unremarkable. But fire enabled, and favored, creatures with larger brains, and
%some time after that - we don't know when - our ancestors began to speak.
%
%} % }}}
% The invention of language: Candle 2 {{{
\pageNoBottomDiv{
%\blockquote{It's perfectly obvious that there is some genetic factor that
%distinguishes humans from other animals and that it is language-specific. The
%theory of that genetic component, whatever it turns out to be, is what is
%called universal grammar.}{Noam Chomsky}
% Source: http://www.slate.com/articles/health_and_science/new_scientist/2012/03/noam_chomsky_on_linguistics_and_climate_change_.html
\blockquote{It certainly is not a true instinct, for every language has to be learnt. It
differs, however, widely from all ordinary arts, for man has an instinctive
tendency to speak, as we see in the babble of our young children; whilst no
child has an instinctive tendency to brew, bake, or write.}{Charles Darwin,
Descent of Man (1871)}
} %}}}
% Language: Candle 2 {{{
\sidePage {
\stagedir{Take the first candle, which represents the invention of fire. Use it
to light the second candle, which represents the evolution of language.}
\candlePassing
\stagedir{Pass the candle once all the way around the circle. When you hold the
candle, it is your turn to speak. What is your name, and when (what year) is
your earliest memory?
\candelabrum{images/candelabrum2.png}
When everyone has spoken, put the candle back in the candelabrum.}
\divider
}
% }}}
% Agriculture: Candle 3 {{{
\page{
Language is the first key to technology; with it, early humans could accumulate
knowledge, not just in genes, but also in sayings and traditions.
They gave names to people around them. They gave names to species of animals
and plants. They gave names to actions and to places and to strategies. They
called some of these good, and called some of them bad. They learned to share
their knowledge, and they learned to deceive each other. They built families
and communities.
They began the long, slow process of taming the wilderness. Their tribes grew
to cities. What became of them?
\stagedir{Take the second candle, which represents language. Use it to light
the third candle, which represents agriculture.}
\candelabrum{images/candelabrum3.png}
} %}}}
% Uplift {{{
\sidePage {
\stagedir{If you or someone else at the table knows the tune to this song, then
sing; if not, read normally.}
\begin{center}
\parbox{2in}{
\begin{large}Uplift\end{large}\newline
By Andrew Eigel
}
\end{center}
\blockspacing{
Hands chip the flint, light the fire, skin the kill\newline
Feet move the tribe track the herd with a will\newline
Mankind struggles in the cellar of history\newline
Time to settle down, time to grow, time to breed\newline
\newline
Plow tills the soil, plants the seed, pray for rain\newline
Scythe reaps the wheat, to the mill, to grind the grain\newline
Towns and cities spread to empire overnight\newline
Hands keep building as we chant the ancient rite}
\stagedir{Stop here. Go to the next page without reading or singing the rest of the song.}
\blockspacing{
Coal heats the steam, push the piston, turns the wheel\newline
Cogs spin the wool, drives the horses made of steel\newline
Lightning harnessed does our will and lights the dark\newline
Keep rising higher, set our goal, hit the mark.\newline
\newline
\-\hspace{0.5in}Crawl out of the mud,\newline
\-\hspace{0.5in}Ongoing but slow,\newline
\-\hspace{0.5in}For the path that is easy\newline
\-\hspace{0.5in}Ain't the one that lets us grow!\newline
\newline
Light to push the sails, read the data, cities glow\newline
Hands type the keys, click the mouse, out we go!\newline
Our voices carry round the world and into space\newline
Send us out to colonize another place¸\newline
\newline
Hands make the tools, build the fire, plant the grain.\newline
Feet track the herd, build a world, begin again.}
}
% }}}
% The Malthusian Trap {{{
\pageNoBottomDiv {
\blockquote{The power of population is so superior to the power of the earth to
produce subsistence for man, that premature death must in some shape or other
visit the human race. The vices of mankind are active and able ministers of
depopulation. They are the precursors in the great army of destruction, and
often finish the dreadful work themselves. But should they fail in this war of
extermination, sickly seasons, epidemics, pestilence, and plague advance in
terrific array, and sweep off their thousands and tens of thousands. Should
success be still incomplete, gigantic inevitable famine stalks in the rear, and
with one mighty blow levels the population with the food of the
world.}{Thomas Malthus (1798)}
} %}}}
% The Malthusian Trap {{{
\sidePage {
\stagedir{Take the third candle, which represents agricultural society. Pass it
around the circle.
\candlePassing
Blow it out. Then return it to its place in the candelabrum.}
\candelabrum{images/candelabrum3b.png}
\divider
}
% }}}
% Agriculture {{{
\page{
Mankind lived in equilibrium between growth and collapse, knowledge gained and
knowledge forgotten. In that world, stories would last only as long as memory,
monuments only as long as wood. For two hundred thousand years, nothing but
genes survived.
\divider
But that was enough. Though they could not preserve knowledge over generations,
they could preserve domesticated plants and animals. They saved the best, and
little by little, the world got easier. And then a select few humans started
writing, and the equilibrium between learning and forgetting was finally
broken.
Of that age, what memories remain?
%This raised the population density, but the Malthusian limit soon caught up.
%The equilibrium between growth and starvation was not broken. Worse, farming
%brought bad diets, poor health, and numerous social ills.
%
%
%\blockquote{Archaeologists studying the rise of farming have reconstructed a crucial stage
%at which we made the worst mistake in human history. Forced to choose between
%limiting population or trying to increase food production, we chose the latter
%and ended up with starvation, warfare, and tyranny.}{Jared Diamond (1987)}
%
%Agriculture did not lift humanity out of the Malthusian trap; it raised the
%population ceiling up, at the expense of peoples' health and well being.
%
%Despite its problems, farming enabled the growth of civilizations, and the
%rulers of some of these civilizations came to realize that they did not want to
%be forgotten. Some built monuments. About 5,000 years ago, some began to write.
\vspace{0.4in}
\stagedir{Using the second candle, which represents language, relight the third
candle to represent the invention of writing.
}
\candelabrum{images/candelabrum3.png}
}
%}}}
% Invention of writing: Candle 3 again; write names of family members {{{
\page{
\poem{
I met a traveller from an antique land\newline
Who said: Two vast and trunkless legs of stone\newline
Stand in the desert. Near them, on the sand,\newline
Half sunk, a shattered visage lies, whose frown,\newline
And wrinkled lip, and sneer of cold command,\newline
Tell that its sculptor well those passions read\newline
Which yet survive, stamped on these lifeless things,\newline
The hand that mocked them and the heart that fed:\newline
And on the pedestal these words appear:\newline
``My name is Ozymandias, king of kings:\newline
Look on my works, ye Mighty, and despair!''\newline
Nothing beside remains. Round the decay\newline
Of that colossal wreck, boundless and bare\newline
The lone and level sands stretch far away}{Percy Bysshe Shelley (1818)}
\stagedir{When you have finished reading, take a piece of paper and write down
the name of the oldest family member - living or dead - that you can identify.
When everyone has written something, continue to the next page.}
}
% }}}
% History
% Writing and The Rosetta Stone {{{
\page{
We know more about what the world was like after people started writing, but
not very much survived. One of the most important writings was discovered by
French soldiers in the wall of Fort Julien: the Rosetta Stone, important
because it was written in three languages, two previously untranslatable. After
a long string of honorifics and decrees about taxes and succession, it
declares: there shall be a new holiday!
\divider
\blockquote{On these days in every month, on which there shall be sacrifices
and libations and all the ceremonies customary at the other festivals, and the
offerings shall be given to the priests who serve in the temples. And a festival
shall be kept for King Ptolemy, the Ever-Living, the Beloved of Ptah, the God
Epiphanes Eucharistos, yearly in the temples throughout the land from the 1st
of Thoth for five days ... This decree shall be inscribed on a stela of hard
stone in hieroglyphic and demotic and Greek characters and set up in each of the
first, second, and third temples beside the image of the ever living
king.}{The Rosetta Stone (ca. 196 BC)}
} %}}}
% The Rosetta Stone image {{{
\sidePage{
\includegraphics[width=4in]{images/RosettaStone.png}
}
% }}}
% Scientific Method: Candle 4; write something surprising you learned {{{
\pageNoBottomDiv{
The majority of writing consisted of genealogies, legal codes, and fantastic
stories. But some writing represented progress in philosophy and mathematics,
eventually culminating in the invention of the scientific method.
\divider
\blockquote{Mathematics is the gate and key of the sciences... Neglect of
mathematics works injury to all knowledge, since he who is ignorant of it
cannot know the other sciences or the things of this world. And what is worse,
men who are thus Ignorant are unable to perceive their own ignorance and so do
not seek a remedy.}{Roger Bacon, Opus Majus (1266)}
} %}}}
% Scientific method {{{
\sidePage{
\stagedir{
Using the third candle, which represents writing, light the fourth candle to
represent the scientific method.
\candelabrum{images/candelabrum4.png}
% TODO: Replace this with a better written thing
Then, everyone write down something surprising you learned in the past week,
and put it in the middle, on top of the pile of ancestors' names. When everyone
has written something, continue to the next page.}
\divider
}
% }}}
% Black Death: Blow out candle 4 {{{
\page{
The scientific method, combined with writing and a university system, marked
the start of an accumulation of knowledge. This could have marked the beginning
of a slow transition into the modern era. Instead, 81 years after Roger Bacon,
history was derailed by a great plague.
\divider
\stagedir{Take the fourth candle, which represents the progress of science.
Hold it, while you read the quote.}
\blockquote{The seventh year after it began, it came to England and first began
in the towns and ports joining on the seacoasts, in Dorsetshire, where, as in
other counties, it made the country quite void of inhabitants so that there
were almost none left alive. ... But at length it came to Gloucester, yea even
to Oxford and to London, and finally it spread over all England and so wasted
the people that scarce the tenth person of any sort was left alive.}{Geoffrey
the Baker, Chronicon Angliae (1360)}
\stagedir{Blow out the candle. Then return it to its place on the candelabrum.}
\candelabrum{images/candelabrum4b.png}
} %}}}
% Black Death cont'd {{{
\page{
The plague killed about half the population of Europe during a four-year
period, and it recurred repeatedly throughout the next three centuries killing
double-digit percentages of the population each time. Between plagues, wars,
and famines, there was little time to build or preserve knowledge.
} %}}}
% Printing press: Re-light candle 4 {{{
\page{
Preserving knowledge required redundancy. In 1439, during the European
Renaissance, Gutenberg perfected a device to do just that.
\divider
\blockquoteUnmarked{``Pray, friend Martin, how many impressions can be made by
this press in a day?'' ``About three hundred, if we work it constantly.'' ``Is
it possible!'' exclaimed Peter. ``Now indeed will books multiply. What will the
plodding copyists say to this?''}{Emily Clemens Pearson, Gutenberg and the Art
of Printing (1870)}
\stagedir{Take the fourth candle, which represents the progress of science.
Touch it to each of the other three candles in turn, until it is lit. Then
return it to its place on the candelabrum.}
\candelabrum{images/candelabrum4.png}
} %}}}
% Age of Progress
% Galileo 1610, Halley/Newton 1687{{{
\page{
\stagedir{Take the fourth candle, which represents science. Hold it, while you
read the quote, then pass it directly to the next person. Repeat for each quote
in this section.}
\blockquote{By the aid of a telescope any one may behold this in a manner which so
distinctly appeals to the senses that all the disputes which have tormented
philosophers through so many ages are exploded at once by the indisputable
evidence of our eyes, and we are freed from wordy disputes upon this subject,
for the Galaxy is nothing else but a mass of innumerable stars planted together
in clusters.}{Galileo, The Starry Messenger (1610)}
% Footnote: Some words have been modernized. Sidereal->Starry, irrefragable->indisputable.
\divider
\blockquote{Matters that vexed the minds of ancient seers,\newline
And for our learned doctors often led\newline
to loud and vain contention, now are seen\newline
In reason's light, the clouds of ignorance\newline
Dispelled at last by science. Those on whom\newline
Delusion cast its gloomy pall of doubt,\newline
Upborne now on the wings that genius lends,\newline
May penetrate the mansions of the gods\newline
And scale the heights of heaven. O mortal men,\newline
Arise! And, casting off your earthly cares,\newline
Learn ye the potency of heaven-born mind,\newline
Its thought and life far from the herd withdrawn!}{Edmund Halley, preface to Newton's Principia Mathematica (1687)}
} %}}}
% Bayes 1763, Watt 1765 {{{
\page{
\blockquote{By calculations similar to these may be determined universally, what
expectations are warranted by any experiments, according to the different number
of times in which they have succeeded and failed; or what should be thought of
the probability that any particular cause in nature, with which we have any
acquaintance, will or will not, in any single trial, produce an effect that has
been conjoined with it.}{Rev. Thomas Bayes, An Essay towards solving a Problem
in the Doctrine of Chances (1763)}
\divider
\blockquote{I was thinking upon the engine at the time, and had gone as far as
the herd's house, when the idea came into my mind that as steam was an elastic
body it would rush into a vacuum, and if a communication were made between the
cylinder and an exhausted vessel it would rush into it, and might be there
condensed without cooling the cylinder. I then saw that I must get rid of the
condensed steam and injection-water if I used a jet as in Newcomen's engine.
Two ways of doing this occurred to me. ... I had not walked farther than the
golf-house when the whole thing was arranged in my mind.}{James Watt (1765)}
} %}}}
% Mendeleev 1864, Bell 1876, candle 5 {{{
\page{
\blockquote{I saw in a dream a table where all elements fell into place as
required. Awakening, I immediately wrote it down on a piece of paper, only in
one place did a correction later seem necessary.}{Dmitri Mendeleev (1864)}
\divider
\blockquote{I then shouted into the mouthpiece the following sentence: Mr.
Watson, Come here, I want to see you. To my delight he came and declared that
he had heard and understood what I said. I asked him to repeat the words. He
answered, ``You said, Mr. Watson come here I want to see you.''}{Alexander Graham Bell (1876)}
\divider
\blockquote{I speak without exaggeration when I say that I have constructed
3,000 different theories in connection with the electric light, each one of
them reasonable and apparently likely to be true. Yet only in two cases did my
experiments prove the truth of my theory. My chief difficulty was in
constructing the carbon filament. ... Every quarter of the globe was ransacked
by my agents, and all sorts of the queerest materials used, until finally the
shred of bamboo, now utilized by us, was settled upon.}{Thomas Edison (1890)}
} %}}}
% The urn of inventions {{{
\page{
\stagedir{Return the candle to the candelabrum.}
Take a minute to notice the time scale of these discoveries. Each one
significantly changed society, and each change was at least mostly for the
better.
\divider
\blockquote{If we continually sample from the urn of possible technological
discoveries before implementing effective means of global coordination,
surveillance, and/or restriction of potentially hazardous information, then we
risk eventually drawing a black ball: an easy-to-make intervention that causes
extremely widespread harm and against which effective defense is
infeasible}{Nick Bostrom (2013)}
\divider
As we enter the thirties and forties, many of the rules on which human society
was built have given way to science and industry. Prior to this point,
technological progress moved at the speed of civilization, and its effects were
mainly effects on societies. Each technology has a name attached, but those
names do not matter much.
} %}}}
% Industrial era
% CUT: Industrialization {{{
%\page{
%
%With reason and learning, with lightning and steel, humans built on a scale
%never before seen. As we created tools and infrastructure, small gains in
%efficiency compounded, and compounded, and compounded again, leading to yet
%better tools and yet more infrastructure. We built tractors that feed cities,
%railroads that span continents, and economies that coordinate thousands of
%millions of humans.
%
%\blockquote{If a device would save in time just 10 per cent. or increase results 10 per
%cent., then its absence is always a 10 per cent. tax. If the time of a person
%is worth fifty cents an hour, a 10 per cent. saving is worth five cents an
%hour. ... Save ten steps a day for each of twelve thousand employees and you will
%have saved fifty miles of wasted motion and misspent energy. Those are the
%principles on which the production of my plant was built up.}{Henry Ford, ``My Life and Work'' (1922)}
%
%\divider
%
%} % }}}
% Political Science {{{
\page{
% Sneaky quote
\blockquoteUnattributed{Those material inventions, beginning with the use of stones as
weapons, which led to the domestication of animals, the production of fire by
artificial means, down to the marvellous inventions of our own days, show
clearly that an individual was the originator in each case. The nearer we come
to our own time and the more important and revolutionary the inventions become,
the more clearly do we recognize the truth of that statement. All the material
inventions which we see around us have been produced by the creative powers and
capabilities of individuals.}
\divider
Each of the inventors mentioned so far has been basically a good person,
interested in finding truth, improving society or, at worst, making a business
for themself. Newton mastered calculus; Watt mastered steam; Edison mastered
electricity. History was changed by their inventions, but not by their
characters.
But in 1939, someone figured out \emph{power} - what we would now call political
science. He learned how to effectively use film and radio for propaganda, when
these were new. And this time, it matters a great deal who he was. He was the
writer of the last quote. And he is now widely considered the most evil man
ever to have lived.
} % }}}
% World War 2 {{{
\page{
\blockquote{I should like to call attention to the fact that the principle of
parliamentarian democracy, whereby decisions are enacted through the majority
vote, has not always ruled the world. On the contrary, we find it prevalent
only during short periods of history, and those have always been periods of
decline in nations and States.}{Adolf Hitler, Mein Kampf (1926)}
%\blockquote{In those days the following happened almost always: I presented
%myself before an assembly of men who believed the opposite of what I wished to
%say and who wanted the opposite of what I believed in. Then I had to spend a
%couple of hours in persuading two or three thousand people to give up the
%opinions they had first held, in destroying the foundations of their views
%with one blow after another and finally in leading them over to take their
%stand on the grounds of our own convictions and our philosophy of life.
%
%I learned something that was important at that time, namely, to snatch from
%the hands of the enemy the weapons which he was using in his reply. I soon
%noticed that our adversaries, especially in the persons of those who led the
%discussion against us, were furnished with a definite repertoire of arguments
%out of which they took points against our claims which were being constantly
%repeated. The uniform character of this mode of procedure pointed to a
%systematic and unified training. And so we were able to recognize the
%incredible way in which the enemy's propagandists had been disciplined, and I
%am proud today that I discovered a means not only of making this propaganda
%ineffective but of beating the artificers of it at their own work. Two years
%later I was master of that art.}{Adolf Hitler, Mein Kampf (1926)}
%
%\blockquote{The art of propaganda lies in understanding the emotional ideas of
%the great masses and finding, through a psychologically correct form, the way
%to the attention and thence to the heart of the broad masses. ... There was no
%end to what could be learned from the enemy by a man who kept his eyes open,
%refused to let his perceptions be ossified, and for four and a half years
%privately turned the stormflood of enemy propaganda over in his brain.}{Adolf Hitler, Mein Kampf (1926)}
\divider
Starting in 1939 and continuing until 1945, World War 2 killed about 60 million
people. Had it gone differently, it's likely that the entire world would have
fallen under a single totalitarian regime.
And so the world's greatest minds believed they had no choice. They had to
gather in secret, and create the atomic bomb - a weapon to destroy cities, or
the whole world.
} %}}}
% Manhattan Project: Take candle 5 {{{
\page{
\blockquote{Despite the vision and farseeing wisdom of our wartime heads of state, the
physicists have felt the peculiarly intimate responsibility for suggesting, for
supporting, and in the end, in large measure, for achieving the realization of
atomic weapons. Nor can we forget that these weapons as they were in fact used
dramatized so mercilessly the inhumanity and evil of modern war. In some sort
of crude sense which no vulgarity, no humor, no overstatement can quite
extinguish, the physicists have known sin; and this is a knowledge which they
cannot lose.}{J. Robert Oppenheimer (1947)}
%\stagedir{Take the fourth candle, which represents science. Hold it over the
%stack of papers until three drops of wax fall. Then use it to light the fifth
%candle, which represents industrialization.}
\stagedir{Using the fourth candle, which represents science, light the fifth
candle to represent industrialization.}
\candelabrum{images/candelabrum5.png}
} % }}}
% Postwar Progress {{{
\page{
After the war, things settled down - but the pace of progress continued.
In 1951, the first transistor.\newline
In 1952, the first hydrogen bomb.\newline
In 1953, the discovery of DNA's structure.\newline
In 1954, the first solar cell, model rocket, and nuclear submarine.\newline
In 1955, the Polio vaccine.\newline
In 1956, the first commercial nuclear power station.\newline
In 1957, Sputnik, the first orbital space flight.\newline
In 1958, the first integrated circuit.\newline
In 1959, Lunik 2, the first satellite to reach the moon.
\divider
As our technology took off - figuratively and literally - no one knew what we
would find. Predicting the future was left mostly to science fiction writers,
and their predictions were not especially accurate. But some scientists did
take important questions seriously. For example, would there be life in space?
The SETI project began in 1961, at the National Radio Astronomy Observatory in
West Virginia.
\divider
\blockquote{I wrote down all the things you needed to know to predict how hard
it's going to be to detect extraterrestrial life. And looking at them it became
pretty evident that if you multiplied all these together, you got a number, N,
which is the number of detectable civilizations in our galaxy.}{Frank Drake}
} % }}}
% Great Filter, Robin Hanson, Sandberg et al {{{
\page{
\blockquote{Humanity seems to have a bright future, i.e., a non-trivial chance
of expanding to fill the universe with lasting life. But the fact that space
near us seems dead now tells us that any given piece of dead matter faces an
astronomically low chance of begetting such a future. There thus exists a great
filter between death and expanding lasting life, and humanity faces the ominous
question: how far along this filter are we?}{Robin Hanson (1998)}
\divider
In 2018, the Future of Humanity Institute revisited the Fermi paradox, and
made a surprising realization: when you do the math correctly, there is a
substantial probability that we're alone in the galaxy, or in the universe;
there is no need for a great filter.
\divider
\blockquote{When the model is recast to represent realistic distributions of
uncertainty, we find a substantial ex ante probability of there being no other
intelligent life in our observable universe, and thus that there should be
little surprise when we fail to detect any signs of it. This result dissolves
the Fermi paradox, and in doing so removes any need to invoke speculative
mechanisms by which civilizations would inevitably fail to have observable
effects upon the universe.}{Anders Sandberg, Eric Drexler and Toby Ord (2018)}
%\divider
%
%The absence of observed alien life, taken together with our current best
%estimates of how unlikely it was for life to arise and to advance to the point
%where we are now, means that there must be some filter further in our future,
%which prevents most life from spreading through the stars. Therefore, either
%our model of the past or of the universe is very substantially wrong, or there
%is an obstacle in our future which most intelligent civilizations fail to pass.
%We have several ideas about what that obstacle might be.
} % }}}
% CUT: Dartmouth Conference 1956 {{{
%\page{
%
%One thing we did \textit{not} invent in the fifties, was artificial
%intelligence. But not entirely for lack of trying. Two years before the first
%integrated circuit and 15 years before the first microprocessor, John McCarthy
%organized the Dartmouth conference to study the problem of artificial
%intelligence.
%
%\divider
%
%\blockquote{We propose that a 2 month, 10 man study of artificial intelligence
%be carried out during the summer of 1956 at Dartmouth College in Hanover, New
%Hampshire. The study is to proceed on the basis of the conjecture that every
%aspect of learning or any other feature of intelligence can in principle be so
%precisely described that a machine can be made to simulate it. An attempt will
%be made to find how to make machines use language, form abstractions and
%concepts, solve kinds of problems now reserved for humans, and improve
%themselves. We think that a significant advance can be made in one or more of
%these problems if a carefully selected group of scientists work on it together
%for a summer.}{McCarthy et al, 1956}
%
%} % }}}
% CUT: SETI 1961, Drake equation {{{
%\page{
%
%In 1961, the Search for Extraterrestrial Intelligence (SETI) held its first
%conference at the National Radio Astronomy Observatory in West Virginia, to
%discuss what is now called the Drake Equation:
%
%In forty-odd years of searching, we have found no extraterrestrial life. Our
%best estimates for the Drake equation, however, suggest that there should be.
%This is the Fermi Paradox: where is everybody?
%
%} % }}}
% Cuban Missile Crisis 1962: Drip wax {{{
\page{
In 1962, the cold war between the United States and the Soviet Union reached a
crisis. US destroyers under orders to enforce a naval quarantine off Cuba did
not know that the submarines the Soviets had sent to protect their ships were
carrying nuclear weapons. So the Americans began firing depth charges to force
the submarines to the surface, a move the Soviets on board interpreted as the
start of World War III.
\divider
\blockquote{We're going to blast them now! We will die, but we will sink them
all. We will not disgrace our navy,}{Captain Valentin Grigorievitch Savitsky (1962)}
\stagedir{Take the fifth candle, which represents industry. Hold it over
the stack of papers, which represent our history, our knowledge, our lore,
our civilization...
Hold the flame close to the pile. Allow wax to fall. Keep the candle there as
the next section is read.}
\begin{center}
\includegraphics[width=3.0in]{images/dripwax.png}
\end{center}
} % }}}