-
Notifications
You must be signed in to change notification settings - Fork 97
/
zh-CN.html
1582 lines (1234 loc) · 52.2 KB
/
zh-CN.html
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
<!--
THE WISDOM AND/OR MADNESS OF CROWDS
by Nicky Case | apr 2018
- - - - - - - - - - -
FAN TRANSLATION GUIDE:
https://github.com/ncase/crowds#how-to-translate-this-thing
Hello fan-translaters! Thank you so, so much for your help.
I hope you know what you've gotten yourself into.
There's about 3600+ WORDS to translate, including
the Bonus Boxes and References.
To make things easier (or less painful, anyway) I've marked
what needs to be translated and how with big "TRANSLATE" comments.
Ctrl+F for "TRANSLATE" in uppercase to see what needs to be translated!
BUT BEFORE YOU TRANSLATE ANYTHING, DO THIS:
1) Look up the two-letter code of the language you're translating to:
https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes
2) *COPY* index.html, and name the copy [two-letter-code].html
For example: de.html, ar.html, zh.html, etc...
3) Translate *THAT* page. Do NOT modify the original index.html!
And once you're done, go to "translations.txt", and follow the
instructions there to let this game "know" your translation exists.
Good luck, and thanks again!
<3,
~ Nicky Case
-->
<!DOCTYPE html>
<html lang="zh-CN"> <!-- lang="(TRANSLATE: set your language code here, same as the page name!) e.g: es, es-ES, pt-BR, ja, it, fr-CA, de, ..." -->
<head>
<!-- Meta Info -->
<title>群体的智慧与愚蠢</title> <!-- <title>(TRANSLATE this part only)</title> -->
<meta name="description" content="人际网络互动指南"/> <!-- content="(TRANSLATE this part only)" -->
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<meta charset="utf-8">
<link rel="icon" type="image/png" href="favicon.png">
<link rel="alternate" href="http://ncase.me/crowds/" hreflang="en">
<link rel="alternate" href="http://ncase.me/crowds/cs.html" hreflang="cs">
<link rel="alternate" href="http://ncase.me/crowds/es.html" hreflang="es-ES">
<link rel="alternate" href="http://ncase.me/crowds/es-MX.html" hreflang="es-MX">
<link rel="alternate" href="http://ncase.me/crowds/fr.html" hreflang="fr">
<link rel="alternate" href="http://ncase.me/crowds/it.html" hreflang="it">
<link rel="alternate" href="http://ncase.me/crowds/ja.html" hreflang="ja">
<link rel="alternate" href="http://ncase.me/crowds/pt.html" hreflang="pt">
<link rel="alternate" href="http://ncase.me/crowds/ru.html" hreflang="ru">
<link rel="alternate" href="http://ncase.me/crowds/uk.html" hreflang="uk">
<link rel="alternate" href="http://ncase.me/crowds/vi.html" hreflang="vi">
<link rel="alternate" href="http://ncase.me/crowds/zh-CN.html" hreflang="zh-CN">
<link rel="alternate" href="http://ncase.me/crowds/zh-TW.html" hreflang="zh-TW">
<!-- Sharing -->
<meta itemprop="name" content="群体的智慧与愚蠢"> <!-- content="(TRANSLATE this part only)" -->
<meta itemprop="description" content="人际网络互动指南"> <!-- content="(TRANSLATE this part only)" -->
<meta itemprop="image" content="http://ncase.me/crowds/social/thumb.png">
<meta name="twitter:title" content="群体的智慧与愚蠢"> <!-- content="(TRANSLATE this part only)" -->
<meta name="twitter:description" content="人际网络互动指南"> <!-- content="(TRANSLATE this part only)" -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@ncasenmare">
<meta name="twitter:creator" content="@ncasenmare">
<meta name="twitter:image" content="http://ncase.me/crowds/social/thumb.png">
<meta property="og:title" content="群体的智慧与愚蠢"> <!-- content="(TRANSLATE this part only)" -->
<meta property="og:description" content="人际网络互动指南"> <!-- content="(TRANSLATE this part only)" -->
<meta property="og:type" content="website">
<meta property="og:url" content="http://ncase.me/crowds/zh-CN.html">
<meta property="og:image" content="http://ncase.me/crowds/social/thumb.png">
<!-- Styles -->
<link rel="stylesheet" type="text/css" href="css/index.css?v=7">
<style>
/* ZcoolHappy(站酷快乐体): http://www.zcool.com.cn/special/zcoolfonts/#5thpage */
@font-face {
font-family: "ZcoolHappy-Subset";
font-style: normal;
font-weight: 400;
src: url(css/zh-CN-ZcoolHappy-Subset.ttf?v=1) format('truetype');
}
body{
font-family: "PatrickHand", "ZcoolHappy-Subset", "Microsoft Yahei", "微软雅黑", STXihei, "华文细黑", Helvetica, Arial;
}
</style>
</head>
<body>
<!-- THE SLIDESHOW -->
<div id="container">
<!-- Simulation(s) in background -->
<div id="simulations_container">
<div id="simulations"></div>
</div>
<!-- Slideshow: words & buttons -->
<div id="slideshow_container">
<div id="slideshow"></div>
</div>
<!-- Scratch Transition -->
<canvas id="scratch" width="711" height="400"></canvas>
<!-- Skip -->
<div id="skip">跳过 ></div> <!-- TRANSLATE -->
<!-- Modal -->
<div id="modal_container">
<div id="modal_bg"></div>
<div id="modal">
<div id="modal_close">⨯</div>
<div id="modal_content_container">
<div id="modal_content"></div>
</div>
</div>
</div>
</div>
<!-- Navigation: Audio, Contents, Share, Translations -->
<div id="navigation_container">
<div id="sound" mute="no">
<div id="sound_icon"></div>
<span id="sound_on">开</span> <!-- TRANSLATE -->
<span id="sound_off">关</span> <!-- TRANSLATE -->
</div>
<div id="sharing">
<a id="fb" target="_blank" href="TODO"></a>
<a id="tw" target="_blank" href="TODO"></a>
<a id="em" target="_blank" href="TODO"></a>
<span id="share_title">
群体的智慧与愚蠢 <!-- TRANSLATE -->
</span>
<span id="share_desc">
<!-- TRANSLATOR: keep this on ONE LINE or the social sharing will break! -->
为什么群体时而理智,时而愚蠢,时而善良,时而残忍?人际网络的互动指南: <!-- TRANSLATE -->
</span>
</div>
<div id="navigation">
<!-- The chapters -->
<!-- TRANSLATE all the Chapter names! -->
<div chapter="Introduction">
<span>0</span>
<span>0. 介绍</span>
</div>
<div chapter="Networks">
<span>1</span>
<span>1. 连接</span>
</div>
<div chapter="Simple">
<span>2</span>
<span>2. 传播</span>
</div>
<div chapter="Complex">
<span>3</span>
<span>3. 复杂传播</span>
</div>
<div chapter="BB">
<span>4</span>
<span>4. 内聚 & 桥接</span> <!-- note: & is html for the "and" sign -->
</div>
<div chapter="SmallWorld">
<span>5</span>
<span>5. 小世界网络</span>
</div>
<div chapter="Conclusion">
<span>6</span>
<span>6. 总结...</span>
</div>
<div chapter="Credits">
<span>7</span>
<span>7. 致谢</span>
</div>
<div chapter="Sandbox">
<span>★</span>
<span>★ 沙盒模式 ★</span>
</div>
<!-- A divider -->
<span class="nav_divider"></span>
<!-- Bonus Notes & References -->
<div modal="bonus">
<span>?</span>
<span>点心盒子</span> <!-- TRANSLATE -->
</div>
<div modal="references">
<span style="margin-top: 7px; font-size: 35px;">*</span>
<span>链接 & 参考文献</span> <!-- TRANSLATE -->
</div>
<div modal="translations">
<span style="margin-top:5px; position:relative;"><span style="
position: absolute;
top: -8px;
left: 6px;
">A</span><span style="
position: absolute;
font-size: 16px;
top: -1px;
left: 16px;
">あ</span></span>
<span>翻译</span> <!-- TRANSLATE -->
</div>
<!-- The hover bubble -->
<span id="nav_bubble"></span>
</div>
<div id="translations"></div>
<div id="social"></div>
</div>
<!-- The Pencil -->
<div id="pencil_container">
<canvas id="pencil"></canvas>
</div>
<!-- Preloader -->
<div id="pre_preloader">
<div>载入中...</div> <!-- TRANSLATE -->
</div>
</body>
</html>
<!-- - - - - -->
<!-- SCRIPTS -->
<!-- - - - - -->
<script src="js/lib/helpers.js"></script>
<script src="js/lib/minpubsub.src.js"></script>
<script src="js/lib/howler.min.js"></script>
<script src="js/lib/Key.js"></script>
<script src="js/lib/Mouse.js"></script>
<script src="js/lib/Sprite.js"></script>
<script src="js/slideshow/Slideshow.js"></script>
<script src="js/slideshow/Pencil.js"></script>
<script src="js/slideshow/Boxes.js"></script>
<script src="js/slideshow/Scratch.js"></script>
<script src="js/slideshow/Navigation.js"></script>
<script src="js/slideshow/SimUI.js"></script>
<script src="js/slideshow/SandboxUI.js"></script>
<script src="js/slideshow/Modal.js"></script>
<script src="js/slideshow/Preloader.js"></script>
<script src="js/slideshow/Translations.js?v=2"></script>
<script src="js/sim/Peep.js?v=2"></script>
<script src="js/sim/Connection.js"></script>
<script src="js/sim/ConnectorCutter.js"></script>
<script src="js/sim/Simulations.js"></script>
<script src="js/chapters/A_Preloader.js"></script>
<script src="js/chapters/B_Introduction.js"></script>
<script src="js/chapters/C_Networks.js"></script>
<script src="js/chapters/D_Simple_Contagion.js"></script>
<script src="js/chapters/E_Complex_Contagion.js"></script>
<script src="js/chapters/F_Bonding_And_Bridging.js"></script>
<script src="js/chapters/G_Small_World.js"></script>
<script src="js/chapters/H_Conclusion.js"></script>
<script src="js/chapters/I_Credits.js"></script>
<script src="js/chapters/J_Sandbox.js?v=2"></script>
<script src="js/main.js"></script>
<!-- - - - - - - - - - - - -->
<!-- THE SLIDESHOW'S WORDS -->
<!-- - - - - - - - - - - - -->
<!--
This is the bulk of what you need to TRANSLATE!
Translate just the text that's within the <tag></tags>
If you're using a code editor (like Sublime Text https://www.sublimetext.com/),
it should automatically highlight what the text is (usually in white).
-->
<span style="display:none">
<!-- Preloader -->
<words id="preloader_title">
<div style="font-size: 30px;">
<span style="font-size: 100px;line-height: 80px;position: relative; display:block;">群体</span>
<span>的</span>
<br>
<span style="font-size: 60px;letter-spacing: 4px;">智慧</span>
<span style="position:relative;top: -10px;">与/或</span>
<span style="font-size: 60px;">愚蠢</span>
<br>
</div>
<div style="color:#999; margin-top: 10px;">
<!-- TRANSLATE note: comment out the line below... -->
<!--playing time: 30 min • by nicky case, april 2018-->
<!-- ...and UN-comment + TRANSLATE this line! -->
<!-- by nicky case • translated by [your name] • <a href='/'>original in English</a> -->
游戏时长: 30 min • 原作: nicky case • 2018 年 4 月<br>
翻译: olOwOlo • foxiee • lxdlam • ekse • antfu • <a href='./'>English</a>
</div>
</words>
<words id="preloader_button">
<next></next>
</words>
<words id="preloader_loading">
载入中...
</words>
<words id="preloader_play">
开始 <div class="rarr"></div>
</words>
<!-- Introduction -->
<!--
TRANSLATE note: to make the text stay in a circle, I added lots of <br> breaks.
You may have to re-arrange the <br>'s in order to do your translation.
It shouldn't look too bad if they're slightly off, though!
Also, <b></b> bolds a word/phrase, and <i></i> italicizes a word/phrase.
-->
<words id="intro">
<br><br>
可以肯定的说,艾萨克·牛顿爵士
<br>
是个聪明蛋。我的意思是,在发明了微积分
<br>
和牛顿万有引力定律之后,他应该已经足够聪明
<br>
以应对金融投资了,对吧?尽管如此,长话短说,
<br>
他在 1720 年的全国性投机狂潮南海泡沫事件中
<br>
损失了 460 万美元(以现价计)。
<br><br>
正如牛顿之后所说:<i>“我能计算出天体运行的轨道,
<br>
但无法计算人性的疯狂。”</i>
<next>为他默哀 <div class="rarr"></div> </next>
</words>
<words id="intro_2">
<div style="height:0.5em"></div>
当然,市场,机构,甚至
<br>
是整个民主国家的失控也并非只有
<br>
这一次— 群体的<i>愚蠢</i>。然而,当你对人类
<br>
失去希望时,你会看到公民们在飓风中协调互救,
<br>
社区为疑难杂症创造解决方案,为更美好的世界
<br>
而奋斗的人们 — 群体的<i>智慧</i>!
<div style="height:0.9em"></div>
<b>那么<i>为什么</i>群体时而愚蠢疯狂,时而富有智慧呢?</b>
<br>
没有理论可以解释这一切,但我认为一个新的研究领域,
<br>
<b>网络科学</b>可以指导我们!它的核心思想是:
<br>
理解群体,我们不应该关注<i>个人</i>,而是...
<next>...<i>他们之间的联系</i>。 <div class="rarr"></div> </next>
</words>
<!-- Networks -->
<words id="networks_tutorial_start">
<b>让我们来绘制一个网络!</b>
<br>
每一条连线代表两个人之间的友谊:
</words>
<words id="networks_tutorial_connect">
绘制连接
</words>
<words id="networks_tutorial_disconnect">
擦除 连接
</words>
<words id="networks_tutorial_end">
如果你玩够了,
<next wiggle>让我们继续 <div class="rarr"></div> </next>
</words>
<words id="networks_threshold">
现如今,社交不仅仅只是为了制作漂亮的图片。
人们<i>期望</i> 他们的朋友能够理解自己。
例如,人们期望他们的朋友发现酗酒者在
<b>朋友中所占的百分比</b>(不计算他们自己)。
<icon name="yellow"></icon>
</words>
<words id="networks_threshold_instruction">
<b>试试看绘制/擦除连接!<div class="rarr"></div> </b>
</words>
<words id="networks_threshold_end">
<next>明白了</next>
</words>
<words id="networks_pre_puzzle">
然而,社交网络会<i>欺骗</i> 人们。
正如“不识庐山真面目,只缘身在此山中”所言,
人们可能会因为他们<i>处于社会之中</i> 而对社会产生错误的认知。
</words>
<words id="optional_reading">
<div style="position:absolute; top:5px;">
<i>可选的</i> 额外的小点心 ↑
</div>
<div style="position:absolute; left:216px; top:10px;">
↓ 相关链接与参考文献
</div>
</words>
<words id="networks_pre_puzzle_2">
<bon id="books"></bon>
<br>
例如,1991 年的一项研究<ref id="drunk"></ref>
表明,“几乎所有[大学]学生都说他们的朋友喝酒比他们自己要更多。”
但这似乎不可能!怎么可能?那么,你即将通过绘制网络自己解开疑惑。接下来...
<next>欺骗所有人 <div class="rarr"></div> </next>
</words>
<words id="networks_puzzle">
<b style="font-size:2em">解谜时间!</b>
<br>
欺骗<i>所有人</i>让他们认为朋友中的大部分(不少于 50%)都是酗酒者 <icon name="yellow"></icon>
(即使酗酒者只占总数的 1/3 !)
</words>
<words id="networks_puzzle_metric">
<b>被欺骗者:</b>
</words>
<words id="networks_puzzle_metric_2">
距离 9 个人
</words>
<words id="networks_puzzle_end">
恭喜!你操纵了一群学生让他们相信,
一个令人难以置信的不健康的社会行为准则正在盛行!做得好!
<next wiggle>emm...谢谢?</next>
</words>
<words id="networks_post_puzzle">
你刚刚创建的东西叫做多数错觉(Majority Illusion<ref id="majority"></ref>),
这也解释了为什么人们认为他们的政治观点是共识,为什么极端主义似乎比实际情况更普遍。
<i>愚蠢。</i>
<bon id="connections"></bon>
但人们不只是被动地<i>接受</i> 别人的思想和行为,他们积极的
<i>传播</i> 它们。那么现在,让我们来看看这个被网络科学家们如此称呼的东西...
<next>“传播!”<div class="rarr"></div> </next>
</words>
<!-- Simple Contagions -->
<words id="simple_simple">
<i>让我们先暂时忽略“临界值”。</i>如下:我们有个小红脸
<icon name="red"></icon> 以及一些信息。一些<i>错误</i>
信息。“假新闻”,就像那些酷小孩说的那样。每一天,这个人都会将谣言像病毒一样传播给他们的朋友。
然后他的朋友们再将它传播给他们的朋友。如此反复。
<br>
<b>
开始模拟!<div class="darr"></div>(附:模拟进行时你不能进行绘制)
</b>
</words>
<words id="simple_simple_2">
注意:尽管这是个消极的名称(译注:原文 contagion 一般指疾病的接触传染),“传播”可能是好的或坏的(或中性或不明确的)。
有强有力的统计数据 <ref id="contagion"></ref>
显示,抽烟、健康、幸福<br>指数、投票倾向以及默契度都具有“传播性” --
甚至<br>一些证据表明自杀 <ref id="suicides"></ref>
和大规模枪击 <ref id="shootings"></ref> 也是如此。
</words>
<words id="simple_simple_end">
<next wiggle>真令人沮丧 <div class="rarr"></div> </next>
</words>
<words id="simple_cascade">
的确如此。
不管怎样,<b>解谜时间!</b>
<br>
绘制网络 & 运行模拟,让每个人受到“传播”的影响。
<br>
(新规则:你无法斩断<i>粗连接</i>)
</words>
<words id="simple_cascade_end">
<next wiggle>精彩 <div class="rarr"></div> </next>
</words>
<words id="simple_post_cascade">
这种疯狂扩散被称为<b>“信息级联(information cascade)”</b>。
牛顿爵士在 1720 年被这样的级联击倒。
2008 年,全球的金融机构被这样的级联击倒<ref id="subprime"></ref>。
<br><br>
然而:<i>这样的模拟是错误的。</i>
大多数思想<i>不会</i>
像病毒那样扩散。对于许多信仰和行为,为了“受到感染”,你需要不止一次被暴露给“传播”。
所以,网络科学家提出了一种新的,更好的方式来描述思想/行为如何扩散,他们称之为...
<next wiggle>“<i>复杂传播</i>!”<div class="rarr"></div> </next>
</words>
<!-- Complex Contagions -->
<words id="complex_complex">
让我们回忆起“临界值”和酗酒者 <icon name="yellow"></icon> 的例子!当你第一次玩这个游戏时,人们并没有改变他们的行为。
<br><br>
现在,让我们来模拟<i>当有 50% 以上的朋友开始饮酒时</i>,人们也会开始饮酒,这时会发生什么!
<b>在开始模拟之前,问问自己你认为<i>应该</i> 会发生什么。</b>
<br><br>
<b>现在,运行模拟,看看实际发生了什么!<div class="rarr"></div> </b>
</words>
<words id="complex_complex_2">
<span style="line-height:1.3em; display:block;">
与我们之前的“假新闻” <icon name="red"></icon> 传播不同,这种传播 <icon name="yellow"></icon>
并<i>没有</i> 扩散给每个人!前几个人受到“感染”是因为虽然他们只暴露于一位酗酒者,但这位酗酒者却占了他们朋友总数的
50%。(是的,他们的朋友很少)相比之下,接近尾部的人<i>没有</i>
受到“感染”,因为当他们暴露于酗酒者时,并没有达到 50% 这个临界值。
<div style="height:0.75em"></div>
“受感染”朋友的<i>相对</i> 百分比很重要。<i>这是</i> <b>复杂传播(complex contagion)</b>理论
<ref id="complex"></ref> 和我们天真的“它传播的就像病毒”的<b>简单传播(simple contagion)</b>理论之间的区别。
(你可以说“简单传播”只是一种感染临界值为 0% 的传播)
<div style="height:0.75em"></div>
然而,传播并不一定是糟糕的 —
关于群体的<i>愚蠢</i> 已经介绍了很多了,那么...
<next>...群体的<i>智慧?</i> </next>
</span>
</words>
<words id="complex_complex_3">
现在,我们有一个小蓝人 <icon name="blue"></icon> 立志于...救民于天灾,在贫困地区支教,或者一些类似于拯救世界这样的事。
关键是,这是一个“好”的传播。但是,这一次我们假设临界值只有 25% —
只要有 25% 以上的朋友这样做,人们也会愿意做这样的志愿者。嗨,善意需要一些社会的鼓励。
<br><br>
<b>← 让每个人被好的氛围“感染”!</b>
</words>
<words id="complex_complex_3_end">
<span style="line-height:1.3em; display:block;">
<b>注意:</b>志愿行为只是众多复杂传播中的其中<i>一</i>
种!其他还包括:选民投票率,生活习惯,挑战你的信仰,花时间深入了解一个问题 —
任何需要超过一次被“暴露”的事情。复杂传播<i>不一定</i> 是理智的,但理智的传播一定是复杂传播。
<div style="height:0.75em"></div>
(那么什么是现实生活中的<i>简单</i> 传播?通常是一些花边新闻,比如“负鼠有 13 个乳头”<ref id="possum"></ref>)
<bon id="contagions"></bon>
现在,为了<i>真正</i> 展现复杂传播的力量和古怪,让我们重温...
<next>...之前的谜题 <div class="rarr"></div> </next>
</span>
</words>
<words id="complex_cascade">
还记得这个吗?这次,伴随着<i>复杂</i> 传播 <icon name="blue"></icon>,它会变得更加艰难。
<br>
<b>试着在复杂传播的条件下“感染”每一个人!<div class="darr"></div> </b>
</words>
<words id="complex_cascade_feel_free">
(随意点击“开始”,如你所想的<i>尝试</i> 多种解法)
</words>
<words id="complex_cascade_end">
<next wiggle>棒极了 <div class="rarr"></div> </next>
</words>
<words id="complex_post_cascade">
现在,你可能会认为你只需要不断增加连接就可以扩散任何“复杂”或“简单”,好或坏,理智或疯狂的传播。
<br>但是,真的如此吗?好的,让我们重温...
</words>
<words id="complex_post_cascade_end">
<next wiggle>...另一个之前的谜题 <div class="rarr"></div> </next>
</words>
<words id="complex_prevent">
如果你点击了下面的“开始”,复杂传播 <icon name="blue"></icon> 会扩散给每一个人。正如你所想,并没有什么惊喜。
但是现在,让我们做与之前所做的一切<i>相反</i> 的事情:<b>绘制网络来<i>阻止</i> 传播!<div class="darr"></div></b>
</words>
<words id="complex_prevent_2">
你看见了吧?
虽然更多的连接会帮助扩散<i>简单的</i> 思想,
<b>但更多的连接也会阻止<i>复杂</i> 思想的扩散!</b>
(是不是让你想起了互联网,嗯哼?)
这不仅仅是一个理论上的问题。 这可能是...
</words>
<words id="complex_prevent_end">
<next wiggle>...生死攸关的 <div class="rarr"></div> </next>
</words>
<words id="complex_groupthink">
美国航空航天局(NASA)的人员都是聪明蛋。 我的意思是,他们用牛顿的理论让我们登上了月球。
无论如何,再次长话短说,1986 年,<i>尽管工程师发出了警告</i>,他们仍然发射了<i>挑战者号</i>,
结果是,爆炸导致机上 7 名机组人员无一幸免。直接原因:早上太冷了。
<div style="height:0.9em"></div>
相对间接的原因:管理人员忽视了工程师的警告。为什么? 因为 <b>团体迷思</b>
<ref id="groupthink"></ref>。当一个团队<i>过于</i>
紧密,(因为他们往往是机构的顶端)他们会抵制挑战自己信仰或自尊的复杂思想。
<div style="height:0.9em"></div>
总之,这就是机构如何陷入了群体的愚蠢与疯狂。那么我们怎样“设计”才能使群体富有<i>智慧</i> 呢? 简而言之,两个词:
<next>内聚 & 桥接 <div class="rarr"></div> </next>
</words>
<!-- Bonding & Bridging -->
<words id="bonding_1">
← 连接太少,想法扩散不出去。
<br>
连接太多,造成了团体迷思。 <div class="rarr"></div>
</words>
<words id="bonding_2">
<b>
绘制一个到达最佳状态的网络:
刚好有足够的连接来把一个复杂的想法扩散出去!
<div class="darr"></div>
</b>
</words>
<words id="bonding_end">
很简单吧!
那些<i>在组内</i> 的连接的数量被叫做 <b>内聚型社会资本</b><ref id="social_capital"></ref>.
但是关于那些...
<next wiggle>...<i>在组间</i> 的连接呢?</next>
</words>
<words id="bridging_1">
和你猜的差不多,那些<i>在组间</i>
的连接的数量被叫做<b>桥接型社会资本</b>。这很重要,因为它帮助每个组来打破他们孤立的回音室效应!
<br>
<b>建造一座桥来让复杂的智慧“感染”每一个人:</b>
</words>
<words id="bridging_end">
和内聚类似,桥接也有一个最佳的状态。<ref id="bridge"></ref>
(额外挑战:尝试绘制一座更粗的桥来让复杂的传播过程
<i>不能</i> 通过它!)现在我们知道怎样去“设计”<i>在组内</i> 和<i>在组间</i> 的连接, 让我们...
<next wiggle>...同时设计这两种!</next>
</words>
<words id="bb_1">
<b style="font-size:2em">最后的挑战!</b>
<br>
在团体内和团体之间画上分别表示内聚和桥接的连线,
将智慧传播到整个群体:
</words>
<words id="bb_2">
恭喜,你已经完成了一个非常特殊的网络!正确的混合内聚和桥接对于网络来说是相当重要的,他们被称作...
<next wiggle>“小世界网络”<div class="rarr"></div> </next>
</words>
<words id="bb_small_world_1">
<i>“合而不同”、“异而不离”、“合众为一”。</i>
<br>
无论如何描述,各个时代和文化背景下的人总归会达成同一个智慧的共识:
<b>一个健康的社会在群体内和群体之间都需要存在一个最佳状态。</b>
那就是:
</words>
<words id="bb_small_world_2">
不是这个...
<br>
(因为想法不能传播)
</words>
<words id="bb_small_world_3">
也不是这个...
<br>
(因为这会变得团体迷思)
</words>
<words id="bb_small_world_4">
...而是<i>它:</i>
</words>
<words id="bb_small_world_5">
现在网络科学家对这种古老的智慧已有一个精确的定义:<b>小世界网络</b>
<ref id="small_world"></ref>。这种内聚和桥接的完美组合描述了我们的神经元是如何连接
<ref id="swn_neurons"></ref>,如何培养集体创造力 <ref id="swn_creativity"></ref> 如何解决问题
<ref id="swn_social_physics"></ref>,甚至曾(勉强)帮助美国总统肯尼迪避免了核战争!<ref id="swn_jfk"></ref>
是的,小世界网络是一个大帮手。
</words>
<words id="bb_small_world_end">
<next>让我们来总结一下... <div class="rarr"></div> </next>
</words>
<!-- Sandbox -->
<words id="sandbox_caption">
(嘘... 跟你说个秘密?<ref id="sandbox"></ref>)
</words>
<words id="sandbox_contagion">
传播临界值:
</words>
<words id="sandbox_contagion_simple">
简单
</words>
<words id="sandbox_contagion_complex">
复杂
</words>
<words id="sandbox_color_chooser">
传播的颜色:
</words>
<words id="sandbox_tool_chooser">
选个工具:
</words>
<words id="sandbox_tool_pencil">
绘制网络
</words>
<words id="sandbox_tool_add">
添加小人
</words>
<words id="sandbox_tool_add_infected">
添加“传染源”
</words>
<words id="sandbox_tool_move">
拖动小人
</words>
<words id="sandbox_tool_delete">
删除小人
</words>
<words id="sandbox_tool_clear">
<b>全部清除</b>
</words>
<words id="sandbox_shortcuts_label">
(...或者使用快捷键!)
</words>
<words id="sandbox_shortcuts">
[1]: 添加小人 [2]: 添加“传染源”
<br>
[空格]: 拖动 [退格键]: 删除
</words>
<!-- Conclusion -->
<words id="conclusion_1">
<div style="font-size: 30px;">
总而言之: 这一切都是关于...
</div>
<div style="
width: 100%;
position: absolute;
font-size: 66px;
top: 20px;
line-height: 100px; display:block;
">
传播 & 连接
</div>
<div style="
width: 710px;
position: absolute;
top: 125px;
left: 250px;
">
<b>传播:</b>就像神经元在大脑里传递信号一样,人们在社会中传递信念和行为。我们不仅仅会影响我们的朋友,
我们也会影响我们朋友的朋友,甚至朋友的朋友的朋友!<ref id="three_degrees"></ref>
(诸如“欲变世界,先变其身”此类)但是,就像神经元一样,这不仅仅是信号的问题,这也是...
</div>
<div style="
width: 710px;
position: absolute;
top: 275px;
left: 250px;
">
<b>连接:</b>太少的连接会使得复杂的想法无法传播。太<i>多</i>
的连接会导致复杂的想法被群体思维所破坏。这里的窍门在于构建一个小世界网络,
使用最佳的内聚和桥接的组合:<i>e pluribus unum</i>(合众为一)。
</div>
<div style="
width: 350px;
position: absolute;
top: 410px;
left: 220px;
text-align: center;
color: #999;
">
(你想要自己模拟一下吗?<br>试试沙盒模式,点击下面<br>的(★)按钮就行!)
</div>
<div style="
width: 400px;
position: absolute;
top: 395px;
right: 0px;
text-align: right;
">
那么,关于我们一开始提出的问题
<br>
为什么有些群体<i>变得</i>...
</div>
<div style="
width: 300px;
position: absolute;
top: 460px;
right: 0px;
">
<next>...智慧 并且/或 愚蠢?</next>
</div>
</words>
<words id="conclusion_2">
<span style="line-height:1.4em; display:block;">
<div style="height:0.5em"></div>
从牛顿到 NASA 到网络科学,
<br>
我们今天谈了很多东西。长话短说,
<br>
群体的愚蠢没有必要归咎于<i>独立的个人</i>,
<br>
而应该归咎于我们所深陷的这个社交网络。
<br>
<div style="height:0.9em"></div>
这<i>并不</i> 意味着要抛弃个人的责任,因为我们也是
<br>
这张网的<i>编织者</i>。所以,改善你的面对传播的想法:
<br>
对于奉承你的话要抱持怀疑态度 <ref id="flatter"></ref>,同时花点时间来
<br>
理解复杂的想法。与此同时,改善你面对连接的态度:
<br>
不要只与价值观相同的人抱团内聚,也要跨越文化与
<br>
政治立场的鸿沟与不同群体建立沟通的桥梁。
<div style="height:0.9em"></div>
我们可以一同创建一个智慧
<br>
的群体。是的,这的确比在屏幕上
<br>
涂画几条线要难得多 ...
<next>...但这是如此的值得。</next>
</span>
</words>
<words id="conclusion_3">
<i>
“人世间大多数的伟大胜利和惨烈悲剧的产生并不是因为人的本性是善良或邪恶,只是因为人之为人而已”
</i>
<br>
<span style="position:relative; top:5px">~</span> Neil Gaiman & Terry Pratchett
<div style="height:0.8em"></div>
<next small><3</next>
</words>
<!-- Credits -->
<words id="credits">
<div style="text-align:center; color:#fff; letter-spacing: 1px; font-size: 24px; line-height: 27px;">
<span style="color:#777; position:relative; top:5px;">
制作者</span>
<div style="font-size: 3em; line-height: 1.0em;">
NICKY CASE</div>
<a target="_blank" href="http://ncase.me" style="text-decoration:none">
玩一玩我的其他作品</a> ·
<a target="_blank" href="https://twitter.com/ncasenmare" style="text-decoration:none">
关注我的推特儿</a>
<br><br>
<span style="color:#777; position:relative; top:5px; display: inline-block; margin-top: 15px;">
十分,非常以及特别感谢:</span>
<div style="font-size: 3em; line-height: 1.0em; margin: 5px 0;">
我的 PATREON 支持者们</div>
<a onclick='publish("reference/show", ["supporters"]);'>
看看支持者们的名字 & 他们的画</a> ·
<a onclick='publish("reference/show", ["playtesters"]);'>
看看测试的好朋友们</a>
<br>
<a target="_blank" href="https://www.patreon.com/ncase" style="text-decoration:none">
帮助我来做出更多这样的作品! <3</a>
<br><br>
<span style="display: inline-block; margin-top: 15px;">
♫ 音乐是
<a target="_blank" href="http://freemusicarchive.org/music/Komiku/Tale_on_the_Late/" style="text-decoration:none">
"Friends 2018" 和 "Friends 2068"</a>
,来自 Komiku
<br>
</> <i>Crowds</i> 是
<a target="_blank" href="https://github.com/ncase/crowds" style="text-decoration:none">
完全开源的</a>
</span>
<br>
<bon id="further_reading"></bon>
</div>
</words>
<!-- x. misc -->
<words id="WIN">
WIN
</words>
<words id="sim_start">
开始模拟
</words>