-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2520 lines (1392 loc) · 94.2 KB
/
index.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
<!DOCTYPE html>
<html lang="en" dir="i18n_dir">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="robots" content="index, follow">
<title>🌟Edwardzcn blog</title>
<meta name="keywords" content="Rust zola blog, cela theme, edwardzcn">
<meta name="description" content="Promised land">
<meta name="author" content="edwardzcn-decade">
<link rel="canonical" href="https://www.edwardzcn.me/">
<link rel="stylesheet" href="https://www.edwardzcn.me/css/theme-vars.css">
<link rel="stylesheet" href="https://www.edwardzcn.me/css/theme-base.css">
<link rel="stylesheet" href="https://www.edwardzcn.me/css/theme-common.css">
<link rel="icon" href="https://www.edwardzcn.me/favicon.ico">
<link rel="icon" type="image/png" sizes="16x16" href="https://www.edwardzcn.me/favicon-16x16.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://www.edwardzcn.me/favicon-32x32.png">
<link rel="apple-touch-icon" href="https://www.edwardzcn.me/apple-touch-icon.png">
<meta name="theme-color" content="#2e2e33">
<meta name="msapplication-TileColor" content="#2e2e33">
<link rel="alternate" type="application/atom+xml" title="RSS" href="https://www.edwardzcn.me/atom.xml">
<noscript>
<style>
#theme-toggle,
.top-link {
display: none;
}
</style>
</noscript>
</head>
<body
class="list "
id="top">
<script>
if (localStorage.getItem("pref-theme") === "dark") {
document.body.classList.add("dark");
}
</script>
<header class="header">
<nav class="nav">
<div class="logo">
<a
href="https://www.edwardzcn.me"
accesskey="h"
title="Edwardzcn blog (Alt + H)"
>
<svg
id="cela-logo"
xmlns="http://www.w3.org/2000/svg"
height="30"
viewBox="0 0 50 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="butt"
stroke-linejoin="miter"
stroke-miterlimit="4"
stroke-opacity="1"
>
<path
style="fill: currentColor; stroke-width: 0.0479086"
d="M 12.270265,1.9966968 V 2.442102 h 10.985976 v 9.68036 H 12.50726 v 0.474769 h 10.748981 v 9.712398 H 1.3364433 V 1.9971379 H 0.86090326 V 22.751899 H 23.731004 V 1.9966869 Z"
/>
<path
style="fill: none; stroke-width: 0.574903"
d="M 32.198343,22.621669 40.600759,2.5585859 49.04204,22.613747"
/>
<path
style="fill: currentColor; stroke-width: 0.574903"
d="m 36.438812,12.346394 h 8.364306"
/>
<rect
style="fill: currentColor; stroke-width: 0.134146"
width="8.8630762"
height="0.4188053"
x="23.518629"
y="22.305271"
/>
<rect
style="fill: currentColor; stroke-width: 0.134146"
width="9.8420162"
height="0.4188053"
x="1.0488266"
y="1.9709774"
/>
</svg>
</a>
<div class="logo-switches">
<button id="theme-toggle" accesskey="t" title="(Alt + T)">
<svg
id="moon"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="18"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M21 12.79A9 9 0 1 1 11.21 3 7 7 0 0 0 21 12.79z"></path>
</svg>
<svg
id="sun"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="18"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<circle cx="12" cy="12" r="5"></circle>
<line x1="12" y1="1" x2="12" y2="3"></line>
<line x1="12" y1="21" x2="12" y2="23"></line>
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64"></line>
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78"></line>
<line x1="1" y1="12" x2="3" y2="12"></line>
<line x1="21" y1="12" x2="23" y2="12"></line>
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36"></line>
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22"></line>
</svg>
</button>
<ul class="lang-switch">
<li>en</li>
<li>zh</li>
</ul>
</div>
</div>
<ul id="menu">
<li>
<a href="https://www.edwardzcn.me/blog/reading" title="Reading">
<span>Reading</span></a>
</li>
<li>
<a href="https://www.edwardzcn.me/tags" title="Tags">
<span>Tags</span></a>
</li>
<li>
<a href="https://www.edwardzcn.me/categories" title="Categories">
<span>Categories</span></a>
</li>
<li>
<a href="https://www.edwardzcn.me#" title="Search">
<span>Search</span></a>
</li>
<li>
<a href="https://www.edwardzcn.me/robot" title="Robot">
<span>Robot</span>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" height=12 width=12>
<path d="M4 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6z"></path>
<circle cx="8" cy="12" r="1.5"></circle>
<circle cx="16" cy="12" r="1.5"></circle>
</a>
</li>
<li>
<a href="https://getzola.org/" title="Zola">
<span>Zola</span>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2"·
stroke-linecap="round" stroke-linejoin="round" height=12 width=12>
<path d="M18 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V8a2 2 0 012-2h6"></path>
<path d="M15 3h6v6"></path>
<path d="M10 14L21 3"></path>
</svg>
</a>
</li>
</ul>
</nav>
</header>
<main class="main">
<article class="first-entry home-info">
<header class="entry-header">
<h1>Edwardzcn blog</h1>
</header>
<div class="entry-content">
我的应许之地
</div>
<footer class="entry-footer">
<div class="social-icons">
<a href="https://github.com/edwardzcn-decade" target="_blank" rel="noopener noreferrer me" title="GitHub">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path
d="M9 19c-5 1.5-5-2.5-7-3m14 6v-3.87a3.37 3.37 0 0 0-.94-2.61c3.14-.35 6.44-1.54 6.44-7A5.44 5.44 0 0 0 20 4.77 5.07 5.07 0 0 0 19.91 1S18.73.65 16 2.48a13.38 13.38 0 0 0-7 0C6.27.65 5.09 1 5.09 1A5.07 5.07 0 0 0 5 4.77a5.44 5.44 0 0 0-1.5 3.78c0 5.42 3.3 6.61 6.44 7A3.37 3.37 0 0 0 9 18.13V22">
</path>
</svg>
</a>
<a href="https://scholar.google.com/" target="_blank" rel="noopener noreferrer me" title="Google Scholar">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 25" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path
d="M5.242 13.769L0.5 9.5 12 1l11.5 9-5.242 3.769C17.548 11.249 14.978 9.5 12 9.5c-2.977 0-5.548 1.748-6.758 4.269zM12 10a7 7 0 1 0 0 14 7 7 0 0 0 0-14z" />
</svg>
</a>
<a href="https://sg.linkedin.com/" target="_blank" rel="noopener noreferrer me" title="Linkedin">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path>
<rect x="2" y="9" width="4" height="12"></rect>
<circle cx="4" cy="4" r="2"></circle>
</svg>
</a>
<a href="mailto:[email protected]" target="_blank" rel="noopener noreferrer me" title="Email">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 21" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z"></path>
<polyline points="22,6 12,13 2,6"></polyline>
</svg>
</a>
<a href="https://www.wikipedia.org" target="_blank" rel="noopener noreferrer me" title="Wiki">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 80" fill="currentColor">
<path
d="M93.868704,0.909104 L93.868704,3.048056 C91.047359,3.549147 88.911824,4.435559 87.462095,5.707293 C85.385249,7.595808 82.936537,10.486281 81.33006,14.378719 L48.644587,81.09089 L46.469872,81.09089 L13.656938,13.511576 C12.12874,10.043075 10.051174,7.923395 9.424242,7.152531 C8.444628,5.957874 7.2397099,5.023288 5.8095009,4.34877 C4.3792666,3.674401 2.449446,3.24083 0.0200327,3.048056 L0.0200327,0.909104 L31.947914,0.909104 L31.947914,3.048056 C28.26456,3.394989 26.508521,4.011623 25.411397,4.89796 C24.31421,5.784446 23.765632,6.921365 23.765658,8.308721 C23.765632,10.235773 24.666866,13.241865 26.469366,17.327004 L50.70176,63.285559 L74.394451,17.905099 C76.236043,13.434562 77.763937,10.332122 77.764,8.597768 C77.763937,7.48019 77.195762,6.410715 76.059496,5.389341 C74.923078,4.368114 73.637249,3.645496 70.933604,3.221484 C70.737619,3.183021 70.404566,3.125211 69.934406,3.048056 L69.934406,0.909104 L93.868704,0.909104 Z" />
<path
d="M121.979968,0.909104 L121.979968,3.048056 C119.158628,3.549147 117.023098,4.435559 115.573368,5.707293 C113.496518,7.595808 111.047808,10.486281 109.441328,14.378719 L80.755855,81.09089 L78.581141,81.09089 L48.268207,13.511576 C46.740008,10.043075 44.662443,7.923395 44.035511,7.152531 C43.055896,5.957874 41.850979,5.023288 40.42077,4.34877 C38.990535,3.674401 37.694909,3.24083 35.265495,3.048056 L35.265495,0.909104 L66.559183,0.909104 L66.559183,3.048056 C62.875829,3.394989 61.11979,4.011623 60.022666,4.89796 C58.925479,5.784446 58.376901,6.921365 58.376926,8.308721 C58.376901,10.235773 59.278135,13.241865 61.080635,17.327004 L82.813029,63.285559 L102.505718,17.905099 C104.347308,13.434562 105.875208,10.332122 105.875268,8.597768 C105.875208,7.48019 105.307028,6.410715 104.170768,5.389341 C103.034348,4.368114 101.114328,3.645496 98.410678,3.221484 C98.214698,3.183021 97.881638,3.125211 97.411478,3.048056 L97.411478,0.909104 L121.979968,0.909104 Z" />
</svg>
</a>
<a href="https://www.edwardzcn.me/atom.xml" target="_blank" rel="noopener noreferrer me" title="RSS">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"
stroke-linecap="round" stroke-linejoin="round">
<path d="M4 11a9 9 0 0 1 9 9" />
<path d="M4 4a16 16 0 0 1 16 16" />
<circle cx="5" cy="19" r="1" />
</svg>
</a>
</div>
</footer>
</article>
<!-- Add home section pages (and transparent subsection pages)-->
<h1>2025</h1>
<article class="post-entry">
<header class="entry-header">
<h2>ArmSom-Sige5开发版使用Armbian——Cockpit面板</h2>
</header>
<div class="entry-content">
<p><p>接上一篇<a href="https://www.edwardzcn.me/blog/programming/armsom-sige5-armbian-cockpit/./ArmSom-Sige5%E5%BC%80%E5%8F%91%E7%89%88%E4%BD%BF%E7%94%A8Armbian%E2%80%94%E2%80%94%E5%9F%BA%E7%A1%80%E8%B7%AF%E7%94%B1.md">《ArmSom-Sige5开发版使用Armbian——基础路由》</a>,本文将介绍如何在 ArmSom-Sige5 开发板上安装 <a href="https://cockpit-project.org/">Cockpit</a> Web GUI 作为管理面板,监视其他服务器(包括 Homelab设备 和 VPS)。</p>
</p>
</div>
<footer class="entry-footer">
<span title="2025-01-27 00:00:00 +0000">2025-01-27</span> · 3 min · 512 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to ArmSom-Sige5开发版使用Armbian——Cockpit面板" href="https://www.edwardzcn.me/blog/programming/armsom-sige5-armbian-cockpit/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>ArmSom-Sige5开发版使用Armbian——基础路由</h2>
</header>
<footer class="entry-footer">
<span title="2025-01-18 00:00:00 +0000">2025-01-18</span> · 21 min · 4126 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to ArmSom-Sige5开发版使用Armbian——基础路由" href="https://www.edwardzcn.me/blog/programming/armsom-sige5-armbian-basic-router/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>「我在泰缅边境调查电诈产业200天」</h2>
</header>
<div class="entry-content">
<p><p>转自 伍勤 <a href="https://mp.weixin.qq.com/s/t8y7yMyFfs7LI33zyXRMzw">正面连接</a></p>
<p>泰缅边境成为了一片“法外之地”。</p>
<p>军阀割据创造出治理真空,泰国成为交通枢纽,当地华人铺平道路——泰国华人打通移民局、警察局和边防军,缅甸华人打通“民地武”(民族地区武装)的门路,搞到园区用地。</p>
<p>这些统一构成了逃避统治的基础设施,让电诈产业得以发展壮大。</p>
<p>全球资本主义中“<strong>残余</strong>”的人被吸引或诱拐至此。</p>
</p>
</div>
<footer class="entry-footer">
<span title="2025-01-16 00:00:00 +0000">2025-01-16</span> · 55 min · 10956 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to 「我在泰缅边境调查电诈产业200天」" href="https://www.edwardzcn.me/blog/reading/wo-zai-tai-mian-bian-jing-diao-cha-dian-zha-chan-ye-200tian/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>Blog Migration to Zola</h2>
</header>
<div class="entry-content">
<p><p>2025-01 博客网站重启。模版引擎替换为 <a href="https://getzola.org">Zola</a>,主题使用 <a href="https://github.com/edwardzcn-decade/cela">Cela</a>。</p>
</p>
</div>
<footer class="entry-footer">
<span title="2025-01-10 00:00:00 +0000">2025-01-10</span> · 1 min · 29 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to Blog Migration to Zola" href="https://www.edwardzcn.me/blog/blog-migration/"></a>
</article>
<h1>2023</h1>
<article class="post-entry">
<header class="entry-header">
<h2>「我躲在虹桥的卫生间,不知道去哪」</h2>
</header>
<div class="entry-content">
<p><p>原文链接 aHR0cHM6Ly9tcC53ZWl4aW4ucXEuY29tL3MvcFoxQm10SGVkUjByeEJaa3FON0ZTQQ==</p>
<p>文字藏于节点之间,记得那些撰写的人。</p>
</p>
</div>
<footer class="entry-footer">
<span title="2023-11-21 00:00:00 +0000">2023-11-21</span> · 15 min · 2859 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to 「我躲在虹桥的卫生间,不知道去哪」" href="https://www.edwardzcn.me/blog/reading/wo-duo-zai-hong-qiao-de-wei-sheng-jian-bu-zhi-dao-qu-na/"></a>
</article>
<h1>2022</h1>
<article class="post-entry">
<header class="entry-header">
<h2>《台北人》摘录</h2>
</header>
<div class="entry-content">
<p><blockquote>
<p>《孽子》中的“孽子”二字实在抓住了中华文化中的“孝”这一部分以及在现代社会中这种“要求”与自我发现中的冲突感。有这二字,这本书便已经吸引我有着读下去的期待 —— Yu</p>
</blockquote>
</p>
</div>
<footer class="entry-footer">
<span title="2022-08-08 00:00:00 +0000">2022-08-08</span> · 10 min · 1922 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to 《台北人》摘录" href="https://www.edwardzcn.me/blog/reading/tai-bei-ren-zhai-lu/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>《我承认我不曾经历沧桑》摘录</h2>
</header>
<div class="entry-content">
<p><p>记录本身,已是反抗</p>
</p>
</div>
<footer class="entry-footer">
<span title="2022-07-26 00:00:00 +0000">2022-07-26</span> · 15 min · 2962 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to 《我承认我不曾经历沧桑》摘录" href="https://www.edwardzcn.me/blog/reading/wo-cheng-ren-wo-bu-ceng-jing-li-cang-sang-zhai-lu/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>《必有人重写爱情》摘录</h2>
</header>
<footer class="entry-footer">
<span title="2022-07-17 00:00:00 +0000">2022-07-17</span> · 5 min · 894 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to 《必有人重写爱情》摘录" href="https://www.edwardzcn.me/blog/reading/bi-you-ren-zhong-xie-ai-qing-zhai-lu/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>《奶奶的星星》摘录</h2>
</header>
<footer class="entry-footer">
<span title="2022-05-19 00:00:00 +0000">2022-05-19</span> · 5 min · 981 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to 《奶奶的星星》摘录" href="https://www.edwardzcn.me/blog/reading/nai-nai-de-xing-xing-zhai-lu/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>《北岛作品》摘录</h2>
</header>
<div class="entry-content">
<p><p>必将有人重写生活,还这世间一个清白。</p>
<p>北岛的诗,凡以月份开头,总带着些历史的厚重感。有机器(人)言:“一月的夜晚像一封信,藏着无法送达的秘密”。</p>
</p>
</div>
<footer class="entry-footer">
<span title="2022-05-17 00:00:00 +0000">2022-05-17</span> · 11 min · 2127 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to 《北岛作品》摘录" href="https://www.edwardzcn.me/blog/reading/a-bei-dao-reader-excerpt/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>《蛤蟆先生去看心理医生》摘录</h2>
</header>
<div class="entry-content">
<p><p>尝试和解,学会拒绝,懂得愤怒。</p>
</p>
</div>
<footer class="entry-footer">
<span title="2022-05-12 00:00:00 +0000">2022-05-12</span> · 10 min · 1981 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to 《蛤蟆先生去看心理医生》摘录" href="https://www.edwardzcn.me/blog/reading/ha-ma-xian-sheng-qu-kan-xin-li-yi-sheng-zhai-lu/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>《法治的细节》摘录</h2>
</header>
<div class="entry-content">
<p><p>序言部分真的写太好了,如果你还在费力找寻读此书的意义,先看序言。<br>
唯愿公平如大水滚滚,使公义如江河滔滔。</p>
</p>
</div>
<footer class="entry-footer">
<span title="2022-05-10 00:00:00 +0000">2022-05-10</span> · 8 min · 1462 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to 《法治的细节》摘录" href="https://www.edwardzcn.me/blog/reading/fa-zhi-de-xi-jie-zhai-lu/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>《病隙随笔》摘录</h2>
</header>
<div class="entry-content">
<p><p>古园寂寥,我求一心安定。</p>
</p>
</div>
<footer class="entry-footer">
<span title="2022-04-29 00:00:00 +0000">2022-04-29</span> · 2 min · 374 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to 《病隙随笔》摘录" href="https://www.edwardzcn.me/blog/reading/bing-xi-sui-bi-zhai-lu/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>《美国的反智传统》摘录</h2>
</header>
<footer class="entry-footer">
<span title="2022-04-25 00:00:00 +0000">2022-04-25</span> · 19 min · 3720 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to 《美国的反智传统》摘录" href="https://www.edwardzcn.me/blog/reading/mei-guo-de-fan-zhi-chuan-tong-zhai-lu/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>《暴力拓扑学》摘录</h2>
</header>
<div class="entry-content">
<p><h2 id="dao-yan">导言</h2>
<blockquote>
<p>P2 “暴力拓扑学首先要面对暴力的那些宏观表象,它们以排斥的形式登台亮相,即是说,它们在诸如自我与他我、内在与外在、朋友与敌人等两极化的紧张关系中得以发展,其表达方式通常都是表现式的、爆炸式的、群体式的、战争式的。远古的流血牺牲式暴力,嫉妒和复仇女神的神话暴力,统治者的杀戮暴力,刑讯暴力,皆属此类。宏观物理学上的暴力还采取一种更为精密的形式,比如通过语言暴力表现出来。”</p>
</blockquote>
<p>宏观表象往往是以“排斥性暴力”的显现,但书中还提到“扩张性暴力”,脚注里也提及这二者亦译作否定性暴力和肯定性暴力。过于嘈杂的信息和交流压迫,即便不来源于他人的否定和对抗,也是一种暴力,而这种暴力在现代社会愈发变成主流。</p>
<blockquote>
<p>P2 “伤害性语言所具有的暴力同物理(生理)暴力一样,向来以排斥性为基础,因为它具有污蔑性,它损人脸面,降人身份,或者夺人权利。排斥性暴力(negative Gewalt)与扩张性暴力(positive Gelwalt)是不同的,后者源于垃圾语言、过度交流和过多信息,即来自语言、交际和信息的成群积聚.”</p>
</blockquote>
<blockquote>
<p>P3 “今天的社会总是一再抹去他者或陌生人身上的排斥性。全球化进程恰恰加速了边界和差异的消失。排斥性的日益消除却并不等同于暴力的消失,因为除了排斥性暴力,还存在着扩张性暴力。实施扩张性暴力不需要敌对和统治关系。暴力不仅仅是过度的排斥,而且还意味着过度的扩张,也就是扩张性成群,它表现为过度的绩效、过度的生产和过度的交际,过量的关注和过分的积极主动。**扩张性暴力可能比排斥性暴力更为致命,因为它缺乏任何可视性和显见性,而由于其积极扩张,它还摆脱了免疫抵抗。**传染、病菌入侵和渗透这些排斥性暴力的典型特征,如今让位给了梗阻。”</p>
</blockquote>
<blockquote>
<p>P3 “后现代的绩效主体之所以是自由的,因为它不受迫于一个自身之外的统治机关。事实上,它同服从主体一样不自由。外在的胁迫是克服了,可却产生了内在的压力。绩效主体发展出一种抑郁。<strong>暴力一直存在,分毫未减。它只是转移到了内心层面。君权社会里的斩首制度,规训社会里的畸变,绩效社会里的抑郁,都是暴力拓扑学变迁的不同阶段。暴力将会愈益内在化、心理化,并由此隐遁其形。它一再剥除他者或敌人身上的排斥性,变为直指自身。</strong>”</p>
</blockquote>
<h2 id="di-yi-bu-bao-li-de-hong-guan-wu-li-xue">第一部 暴力的宏观物理学</h2>
<h3 id="bao-li-de-tuo-bu-xue">暴力的拓扑学</h3>
<blockquote>
<p>P10 “在血腥的戏剧里,君主的权力化身舞台上剑的权力,角斗表演于是成为帝王崇拜的一个本质组成部分。对杀戮暴力的夸张演绎,宣示了统治者的权力和荣耀......暴力在此毫无遮掩,它明显可见,它毫无羞耻,既不悄寂无声也不公然赤裸,而是意味深长,影响深远。无论在远古文化还是古希腊罗马时代,演绎暴力都是社会交往中一个不可或缺的核心组成部分。”</p>
</blockquote>
<blockquote>
<p>P11 “前线代的君权社会是血亲社会,它的结束令暴力经受了一场拓扑式转变。如今它不再是政治交际和社会交往的一部分,它退回到次交际的、皮下的、毛细的、内在心灵的空间。它从可见转为不可见,从直接转为暗示,从生理转为心理,从战争式的转为居间的,从正面直击转为病毒性渗入。”</p>
</blockquote>
<blockquote>
<p>P14 “后现代的绩效主体不屈从于任何人。它本来就不再是一个屈服顺从的主体。它积极扩张自己,解放自己,成为一个投射物(Project)。这种主体向投射物的转变其实并没有导致暴力的消失。取代外部强迫的,是自诩为自由意志的自我强迫。”</p>
</blockquote>
<p>分析其发展</p>
<blockquote>
<p>P14 “这种发展与资本主义生产关系密不可分。自从生产达到一定的水平,自我剥削就远比受人剥削更有效果,功能更为强大,因为,与自我剥削相伴的是,<strong>感觉自己是自由的</strong>。”</p>
</blockquote>
<h3 id="bao-li-de-kao-gu-xue">暴力的考古学</h3>
<p>弗洛伊德认为死本能会制造出破坏性冲动,勒内·吉拉尔将暴力归因于模仿性对抗。韩举了竞争水和财欲两个例子来驳斥吉拉尔的观点。认为吉拉尔的“模仿性对抗”概念并没有把握暴力的本质。</p>
<blockquote>
<p>P16 “竞争者之所以渴望水,并不是别人也喜欢水。暴力犯罪首先发生在对物的争夺上,这些物并非因为模仿性欲求才有价值,而是因为它们具有一种内在固有的价值。被争夺之物都是能够满足基本需求之物。吉拉尔的模仿理论用在财欲上也是说不通的。我想有钱,并不是因为别人也想有钱,并非模仿的欲求才让钱有了价值。钱是一个特殊的客体,因为它就是价值......模仿首先涉及的是象征层面,比如语言或行为模式,所以并不一定会引发暴力冲突。”</p>
</blockquote>
<p>暴力与宗教</p>
<blockquote>
<p>P18 “暴力很可能是人类第一个宗教体验。”</p>
</blockquote>
<blockquote>
<p>P19 “远古宗教是一种情结,是同(在外向化至神圣高度之后的)暴力彼此互动的结果。献祭就是最为重要的互动形式之一......在远古文化中,暴力扮演了宗教交流的主要媒介。与此同时,人们就在暴力的媒介中同暴力之神交流。一旦暴力被当作神性体验,那么与暴力的关系就迥然不同于从前了。”</p>
</blockquote>
<p>惩罚是对复仇的合理化</p>
<blockquote>
<p>P24 “惩罚是对复仇的合理化,禁止了复仇的雪崩式膨胀,因为那会令复仇变得万劫不复。在远古社会,对暴力做出的唯一可能的反应就是以暴制暴。一个激进的的范式转移将惩罚体系同复仇体系区别开来。前者把暴力变成一种由个人承担的行为。它不再是非人格化的、以暴制暴的事件;它脱离了权力关系,被置于一个罪责关联当中。”</p>
</blockquote>
<blockquote>
<p>P25 “惩罚性暴力(Strafgewalt)放弃了远古复仇中典型的不审而判,不再令暴力逍遥于一切监管之外。审判和定向(Richten und Richtung)彼此决定。惩罚体系遵循的并不是复仇逻辑,而是调解逻辑,而调解逻辑产生于客观的法律关系。就此而言,惩罚体系阻止了暴力肆意蔓延膨胀,因为它不同于复仇体系,它意不在制造暴力,而在预防暴力。”</p>
</blockquote>
<blockquote>
<p>P26 “在现代社会,远古的暴力经济学并没有轻易消失。核军备竞赛遵循的正是远古的暴力经济学。潜在的毁灭力量像曼纳一样越积越多,为的是制造出力大无比和坚不可摧的感觉。从深层心理学层面看,远古时代的信仰——通过积蓄杀戮能力来逃避死亡——仍然奏效。”</p>
</blockquote>
<p>巧合的是资本经济也显现出惊人的相似性,流进对于流血,大量财富聚集类比曼纳的手机。人们试图通过不断印刷钞票来逃避一些事情,比如经济危机。而拥有越多,人们就会有越多妄想,并认为自己掌控了越多能力来对抗死亡。</p>
<blockquote>
<p>P27 “就连资本经济学也显示出同远古暴力经济学的惊人相似,不是制造流血,而是制造流金。在鲜血与金钱之间存在着一种相似的本质。资本的运作方式就像现代曼纳一样,你拥有的越多,就越强大,越坚不可摧,甚至越妄想长生不死。金钱从词源上就已经点明献祭和狂热崇拜之间的关系......于是乎,金钱也好,资本也罢,都成为一种对抗死亡的手段。”</p>
</blockquote>
<p>亚里士多德提示人们,纯然的追求资本应该受到谴责,因为那样做只为求生存,而不求美好生活。</p>
<blockquote>
<p>P29 “资本主义经济学把活下来编程绝对原则,不关心生活是否美好。滋养资本主义经济学的是一种幻象,即资本越多,生机越多,生存能力越大。将生与死蛮横地一刀切开,会为生活本身蒙上一件僵硬的幽灵外套。本该关注如何过上美好生活,却因担心活不下去而患了魔怔,或曰怕死癔病。<strong>把生活简化成生物的、生命机能的过程,让生活本身变得赤裸。</strong>”</p>
</blockquote>
<blockquote>
<p>P30 “一个被怕死癔病笼罩的社会,是一个活死人社会,既不能生,也无法死。弗洛伊德也清楚这种致命的幸存辩证法,所以会用这样一句话为《合乎时代的战争与死亡》一文作结:‘<strong>如果你想生,那么就先面对死。</strong>’”</p>
</blockquote>
</p>
</div>
<footer class="entry-footer">
<span title="2022-04-25 00:00:00 +0000">2022-04-25</span> · 52 min · 10288 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to 《暴力拓扑学》摘录" href="https://www.edwardzcn.me/blog/reading/topology-of-violence-excerpt/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>《走吧——给L》北岛</h2>
</header>
<div class="entry-content">
<p><p>走吧,<br>
落叶吹进山谷,<br>
歌声却没有归宿。<br></p>
<p>走吧,<br>
冰上的月光,<br>
已从河床上溢出。<br></p>
<p>走吧,<br>
眼睛望着同一块天空,<br>
心敲击着暮色的鼓。<br></p>
<p>走吧,<br>
我们没有失去记忆,<br>
我们去寻找生命的湖。<br></p>
<p>走吧,<br>
路呵路,<br>
飘满了红罂粟。<br></p>
</p>
</div>
<footer class="entry-footer">
<span title="2022-04-19 00:00:00 +0000">2022-04-19</span> · 1 min · 94 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to 《走吧——给L》北岛" href="https://www.edwardzcn.me/blog/reading/zou-ba-gei-l-bei-dao/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>《鼠疫》摘录</h2>
</header>
<footer class="entry-footer">
<span title="2022-03-30 00:00:00 +0000">2022-03-30</span> · 2 min · 224 words · edwardzcn-decade
</footer>
<a class="entry-link" aria-label="post link to 《鼠疫》摘录" href="https://www.edwardzcn.me/blog/reading/shu-yi-zhai-lu/"></a>
</article>
<article class="post-entry">
<header class="entry-header">
<h2>《一个叫欧维的男人决定去死》摘录</h2>
</header>
<div class="entry-content">
<p><p>生命会是彩色的。</p>
</p>
</div>
<footer class="entry-footer">