-
Notifications
You must be signed in to change notification settings - Fork 39
/
index.html
1502 lines (1480 loc) · 110 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 xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
<meta name="generator" content="Python script by [email protected]" >
<meta name="provider" content="program-think.blogspot.com" >
<script src="scripts/jquery.min.js" type="text/javascript"></script>
<script src="scripts/jquery-ui.min.js" type="text/javascript"></script>
<link href="scripts/jquery-ui.min.css" rel="stylesheet" >
<script src="scripts/base.js"></script>
<script type="text/javascript">window.rootNavigator = './' </script>
<link type="text/css" rel="stylesheet" href="css/program-think.css" >
<link rel="icon" type="image/x-icon" href="images/favicon/blogspot.ico">
<style>
.post-item {
padding-left: 0px;
margin-bottom: 20px;
text-indent: 0px;
padding-right: 20px;
}
.pagination {
display: -webkit-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-pack: end;
-ms-flex-pack: end;
-webkit-justify-content: flex-end;
justify-content: flex-end;
margin-top: 20px;
margin-bottom: 30px;
}
.page-number {
padding: 5px 10px;
border: 1px solid #ccc;
margin: 0 5px;
cursor: pointer;
}
.page-number.selected {
background-color: #ccc;
color: #fff;
border-color: #ccc;
}
</style>
<title>编程随想的博客</title>
</head>
<body>
<div id="outer-wrapper">
<div id="content-wrapper">
<div id="main" style="width:67%;">
<div class="widget Header" data-version="1" id="Header1">
<div id="header-inner">
<div class="titlewrapper">
<h1 class="title">
<a href="index.html">
编程随想的博客
</a>
</h1>
</div>
<div class="descriptionwrapper">
<p class="description"></p>
<hr>
</div>
</div>
</div>
<div class="post-content">
<div class="post-body">
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="202304097013561200"></a>
<h1 class="post-title entry-title"> <a href="2023/04/help-ruan-xiao-huan.html">阮晓寰案件,你可以做的几件事——如何支持和声援被捕者</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2023年4月9日 </span>
<span class="post-comment-link">
<a id="202304097013561200" class="comment-link" href="2023/04/help-ruan-xiao-huan.html#comments">0评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E8BDACE8BDBD.html" rel="tag">转载</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="202303298012560000"></a>
<h1 class="post-title entry-title"> <a href="2023/03/ruanxiaohuan.html">从阮晓寰到“编程随想”:一个普通公民和“极客”如何成了“国家的敌人”?</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2023年3月29日 </span>
<span class="post-comment-link">
<a id="202303298012560000" class="comment-link" href="2023/03/ruanxiaohuan.html#comments">0评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E8BDACE8BDBD.html" rel="tag">转载</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="329569519001390000"></a>
<h1 class="post-title entry-title"> <a href="2021/05/share-books.html">分享各类电子书(政治、IT、科普、历史、等,97本)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2021年5月9日 </span>
<span class="post-comment-link">
<a id="329569519001390000" class="comment-link" href="2021/05/share-books.html#comments">1195评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E7A791E699AE.html" rel="tag">科普</a>
<a href="tags/E58E86E58FB2.html" rel="tag">历史</a>
<a href="tags/E4B9A6E8AF842FE5BDB1E8AF84.html" rel="tag">书评/影评</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/IT.html" rel="tag">IT</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="5467820871462842098"></a>
<h1 class="post-title entry-title"> <a href="2021/04/weekly-share-152.html">每周转载:从“肿瘤黑幕”看天朝的“医患矛盾”(网文8篇以及俺的点评)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2021年4月25日 </span>
<span class="post-comment-link">
<a id="5467820871462842098" class="comment-link" href="2021/04/weekly-share-152.html#comments">849评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E8BDACE8BDBD.html" rel="tag">转载</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="9028051665011570908"></a>
<h1 class="post-title entry-title"> <a href="2021/04/security-news.html">近期安全动态和点评(2021年1季度)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2021年4月11日 </span>
<span class="post-comment-link">
<a id="9028051665011570908" class="comment-link" href="2021/04/security-news.html#comments">802评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/IT.html" rel="tag">IT</a>
<a href="tags/IT.E4BFA1E681AFE5AE89E585A8.html" rel="tag">IT.信息安全</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="7955102105402874651"></a>
<h1 class="post-title entry-title"> <a href="2021/03/weekly-share-151.html">每周转载:新疆棉花——从“人权争议”到“外交对抗”(外媒报道30多篇)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2021年3月29日 </span>
<span class="post-comment-link">
<a id="7955102105402874651" class="comment-link" href="2021/03/weekly-share-151.html#comments">546评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E5A496E4BAA4.html" rel="tag">外交</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E8BDACE8BDBD.html" rel="tag">转载</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="2781999363022286437"></a>
<h1 class="post-title entry-title"> <a href="2021/03/Computer-Networks-Overview.html">计算机网络通讯的【系统性】扫盲——从“基本概念”到“OSI 模型”</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2021年3月18日 </span>
<span class="post-comment-link">
<a id="2781999363022286437" class="comment-link" href="2021/03/Computer-Networks-Overview.html#comments">501评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/IT.E7BFBBE5A299.html" rel="tag">IT.翻墙</a>
<a href="tags/IT.E7BD91E7BB9C.html" rel="tag">IT.网络</a>
<a href="tags/IT.E4BFA1E681AFE5AE89E585A8.html" rel="tag">IT.信息安全</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="1346913090921971337"></a>
<h1 class="post-title entry-title"> <a href="2021/03/weekly-share-150.html">每周转载:3月3日,缅甸政变经历“最血腥一天”(外媒报道及现场照片,多图)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2021年3月5日 </span>
<span class="post-comment-link">
<a id="1346913090921971337" class="comment-link" href="2021/03/weekly-share-150.html#comments">547评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E8BDACE8BDBD.html" rel="tag">转载</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="8416685401817948316"></a>
<h1 class="post-title entry-title"> <a href="2021/02/Watergate-Scandal.html">尼克松下台的经过——“水门事件”简史</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2021年2月22日 </span>
<span class="post-comment-link">
<a id="8416685401817948316" class="comment-link" href="2021/02/Watergate-Scandal.html#comments">359评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E58E86E58FB2.html" rel="tag">历史</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E694BFE6B2BB.E6B395E588B6.html" rel="tag">政治.法制</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="9111176247622756031"></a>
<h1 class="post-title entry-title"> <a href="2021/01/weekly-share-149.html">每周转载:内卷的天朝,各阶层的众生相(网文17篇)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2021年1月31日 </span>
<span class="post-comment-link">
<a id="9111176247622756031" class="comment-link" href="2021/01/weekly-share-149.html#comments">463评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E69599E882B2.html" rel="tag">教育</a>
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E8BDACE8BDBD.html" rel="tag">转载</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="3739089848209510046"></a>
<h1 class="post-title entry-title"> <a href="2021/01/12-years-blogging.html">开博12周年庆,博文分类汇总</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2021年1月15日 </span>
<span class="post-comment-link">
<a id="3739089848209510046" class="comment-link" href="2021/01/12-years-blogging.html#comments">606评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E58D9AE5AEA2E9809AE5918A.html" rel="tag">博客通告</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="9216086342685787812"></a>
<h1 class="post-title entry-title"> <a href="2021/01/Security-News.html">近期安全动态和点评(2020年4季度)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2021年1月9日 </span>
<span class="post-comment-link">
<a id="9216086342685787812" class="comment-link" href="2021/01/Security-News.html#comments">408评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/IT.html" rel="tag">IT</a>
<a href="tags/IT.E4BFA1E681AFE5AE89E585A8.html" rel="tag">IT.信息安全</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="4916755245149919243"></a>
<h1 class="post-title entry-title"> <a href="2020/12/share-books.html">分享各类电子书(科普、政治、IT、历史、等,180本)——增加【科普】大类</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年12月22日 </span>
<span class="post-comment-link">
<a id="4916755245149919243" class="comment-link" href="2020/12/share-books.html#comments">454评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E7A791E699AE.html" rel="tag">科普</a>
<a href="tags/E58E86E58FB2.html" rel="tag">历史</a>
<a href="tags/E4B9A6E8AF842FE5BDB1E8AF84.html" rel="tag">书评/影评</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="4975230973197205514"></a>
<h1 class="post-title entry-title"> <a href="2020/12/Study-and-Life.html">学习与人生——700篇博文之感悟</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年12月4日 </span>
<span class="post-comment-link">
<a id="4975230973197205514" class="comment-link" href="2020/12/Study-and-Life.html#comments">653评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E69599E882B2.html" rel="tag">教育</a>
<a href="tags/E5BF83E79086E5ADA6.html" rel="tag">心理学</a>
<a href="tags/E5ADA6E4BC9AE6809DE88083.html" rel="tag">学会思考</a>
<a href="tags/E5ADA6E4B9A0E696B9E6B395.html" rel="tag">学习方法</a>
<a href="tags/E8818CE59CBAE782B9E6BBB4.html" rel="tag">职场点滴</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="826530568380295530"></a>
<h1 class="post-title entry-title"> <a href="2020/11/Game-Theory.html">博弈论入门教程——从基本概念到具体案例</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年11月18日 </span>
<span class="post-comment-link">
<a id="826530568380295530" class="comment-link" href="2020/11/Game-Theory.html#comments">451评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E7BB8FE6B58E.html" rel="tag">经济</a>
<a href="tags/E7A791E699AE.html" rel="tag">科普</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="818740395525334162"></a>
<h1 class="post-title entry-title"> <a href="2020/11/2020-USA-Presidential-Election.html">2020年美国大选的选情分析</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年11月2日 </span>
<span class="post-comment-link">
<a id="818740395525334162" class="comment-link" href="2020/11/2020-USA-Presidential-Election.html#comments">639评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="1426068017352133718"></a>
<h1 class="post-title entry-title"> <a href="2020/10/History-of-American-Political-Parties-1.html">美国政党简史(上)——从“邦联时期”到“南北战争前”</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年10月22日 </span>
<span class="post-comment-link">
<a id="1426068017352133718" class="comment-link" href="2020/10/History-of-American-Political-Parties-1.html#comments">417评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E58E86E58FB2.html" rel="tag">历史</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E694BFE6B2BB.E6B395E588B6.html" rel="tag">政治.法制</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="6947139670719374802"></a>
<h1 class="post-title entry-title"> <a href="2020/10/Security-News.html">近期安全动态和点评(2020年3季度)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年10月12日 </span>
<span class="post-comment-link">
<a id="6947139670719374802" class="comment-link" href="2020/10/Security-News.html#comments">484评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/IT.html" rel="tag">IT</a>
<a href="tags/IT.E4BFA1E681AFE5AE89E585A8.html" rel="tag">IT.信息安全</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="2697086722114101230"></a>
<h1 class="post-title entry-title"> <a href="2020/09/Academic-Scandals-in-China.html">二十年目睹之怪现状——中国学术界、科技界的“奇葩排行榜”</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年9月29日 </span>
<span class="post-comment-link">
<a id="2697086722114101230" class="comment-link" href="2020/09/Academic-Scandals-in-China.html#comments">645评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E69599E882B2.html" rel="tag">教育</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E694BFE6B2BB.E88590E8B4A5.html" rel="tag">政治.腐败</a>
<a href="tags/IT.html" rel="tag">IT</a>
<a href="tags/IT.E4B89AE7958CE8AF84E8AEBA.html" rel="tag">IT.业界评论</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="2327650320878009459"></a>
<h1 class="post-title entry-title"> <a href="2020/09/weekly-share-148.html">每周转载:半导体行业现状——华为全面断供、中芯前景堪忧、弘芯轰然倒塌(网文14篇)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年9月15日 </span>
<span class="post-comment-link">
<a id="2327650320878009459" class="comment-link" href="2020/09/weekly-share-148.html#comments">542评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E7BB8FE6B58E.html" rel="tag">经济</a>
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E5A496E4BAA4.html" rel="tag">外交</a>
<a href="tags/E8BDACE8BDBD.html" rel="tag">转载</a>
<a href="tags/IT.html" rel="tag">IT</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="6943783103856249452"></a>
<h1 class="post-title entry-title"> <a href="2020/08/Tor-Triple-Proxy.html">如何用 Tor 访问对 Tor 不友好的网站——扫盲“三重代理”及其它招数</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年8月31日 </span>
<span class="post-comment-link">
<a id="6943783103856249452" class="comment-link" href="2020/08/Tor-Triple-Proxy.html#comments">673评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/IT.html" rel="tag">IT</a>
<a href="tags/IT.E7BFBBE5A299.html" rel="tag">IT.翻墙</a>
<a href="tags/IT.E8BDAFE4BBB6E4BB8BE7BB8D.html" rel="tag">IT.软件介绍</a>
<a href="tags/IT.E7BD91E7BB9C.html" rel="tag">IT.网络</a>
<a href="tags/IT.E4BFA1E681AFE5AE89E585A8.html" rel="tag">IT.信息安全</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="2117565545312198035"></a>
<h1 class="post-title entry-title"> <a href="2020/08/weekly-share-147.html">每周转载:约瑟夫·奈谈“美国对华战略”(中英文对照及俺的点评)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年8月24日 </span>
<span class="post-comment-link">
<a id="2117565545312198035" class="comment-link" href="2020/08/weekly-share-147.html#comments">407评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E5A496E4BAA4.html" rel="tag">外交</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E8BDACE8BDBD.html" rel="tag">转载</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="7089095282301581394"></a>
<h1 class="post-title entry-title"> <a href="2020/08/weekly-share-146.html">每周转载:“中美对抗”进入【科技脱钩】阶段(网文7篇)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年8月11日 </span>
<span class="post-comment-link">
<a id="7089095282301581394" class="comment-link" href="2020/08/weekly-share-146.html#comments">512评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E5A496E4BAA4.html" rel="tag">外交</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E8BDACE8BDBD.html" rel="tag">转载</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="948276385551701616"></a>
<h1 class="post-title entry-title"> <a href="2020/07/june-fourth-incident-34.html">回顾六四系列[34]: 5月17日,“戒严令”出笼的经过</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年7月27日 </span>
<span class="post-comment-link">
<a id="948276385551701616" class="comment-link" href="2020/07/june-fourth-incident-34.html#comments">825评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E58E86E58FB2.html" rel="tag">历史</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="2711662214363983372"></a>
<h1 class="post-title entry-title"> <a href="2020/07/Security-News.html">近期安全动态和点评(2020年2季度)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年7月7日 </span>
<span class="post-comment-link">
<a id="2711662214363983372" class="comment-link" href="2020/07/Security-News.html#comments">673评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/IT.html" rel="tag">IT</a>
<a href="tags/IT.E4BFA1E681AFE5AE89E585A8.html" rel="tag">IT.信息安全</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="7033338751968961571"></a>
<h1 class="post-title entry-title"> <a href="2020/06/weekly-share-145.html">每周转载:超级富豪王振华性侵9岁女童(大量网友评论,多图)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年6月26日 </span>
<span class="post-comment-link">
<a id="7033338751968961571" class="comment-link" href="2020/06/weekly-share-145.html#comments">480评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E694BFE6B2BB.E6B395E588B6.html" rel="tag">政治.法制</a>
<a href="tags/E8BDACE8BDBD.html" rel="tag">转载</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="3967174577623470915"></a>
<h1 class="post-title entry-title"> <a href="2020/06/Linux-Logical-Volume-Manager.html">扫盲 Linux 逻辑卷管理(LVM)——兼谈 RAID 以及“磁盘加密工具的整合”</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年6月16日 </span>
<span class="post-comment-link">
<a id="3967174577623470915" class="comment-link" href="2020/06/Linux-Logical-Volume-Manager.html#comments">563评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/IT.html" rel="tag">IT</a>
<a href="tags/IT.E8BDAFE4BBB6E4BB8BE7BB8D.html" rel="tag">IT.软件介绍</a>
<a href="tags/IT.E4BFA1E681AFE5AE89E585A8.html" rel="tag">IT.信息安全</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="4450436763313025513"></a>
<h1 class="post-title entry-title"> <a href="2020/06/Common-Law.html">如何理解“英美法系”(普通法系)——从“英国古代史”聊到“香港国安法”</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年6月4日 </span>
<span class="post-comment-link">
<a id="4450436763313025513" class="comment-link" href="2020/06/Common-Law.html#comments">649评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E7BB8FE6B58E.html" rel="tag">经济</a>
<a href="tags/E58E86E58FB2.html" rel="tag">历史</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E694BFE6B2BB.E6B395E588B6.html" rel="tag">政治.法制</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="2365164728436239469"></a>
<h1 class="post-title entry-title"> <a href="2020/05/weekly-share-144.html">每周转载:朝廷推香港版《国安法》,【一国一制】降临(外媒报道8篇)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年5月24日 </span>
<span class="post-comment-link">
<a id="2365164728436239469" class="comment-link" href="2020/05/weekly-share-144.html#comments">974评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E8BDACE8BDBD.html" rel="tag">转载</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="2310840222985179456"></a>
<h1 class="post-title entry-title"> <a href="2020/05/Nuclear-Strategy-and-New-Cold-War.html">聊聊“核战略的博弈模型”与“中美新冷战”</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年5月13日 </span>
<span class="post-comment-link">
<a id="2310840222985179456" class="comment-link" href="2020/05/Nuclear-Strategy-and-New-Cold-War.html#comments">1717评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E5869BE4BA8B.html" rel="tag">军事</a>
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E5A496E4BAA4.html" rel="tag">外交</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="2666985008402548175"></a>
<h1 class="post-title entry-title"> <a href="2020/04/Government-and-System-Robustness.html">“政治体制”与“系统健壮性”——基于“复杂性科学”的思考</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年4月26日 </span>
<span class="post-comment-link">
<a id="2666985008402548175" class="comment-link" href="2020/04/Government-and-System-Robustness.html#comments">1513评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E7BB8FE6B58E.html" rel="tag">经济</a>
<a href="tags/E58E86E58FB2.html" rel="tag">历史</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E694BFE6B2BB.E5B8B8E8AF86.html" rel="tag">政治.常识</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="4527895049105819680"></a>
<h1 class="post-title entry-title"> <a href="2020/04/Security-News.html">近期安全动态和点评(2020年1季度)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年4月13日 </span>
<span class="post-comment-link">
<a id="4527895049105819680" class="comment-link" href="2020/04/Security-News.html#comments">975评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/IT.html" rel="tag">IT</a>
<a href="tags/IT.E4BFA1E681AFE5AE89E585A8.html" rel="tag">IT.信息安全</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="9041651979564055977"></a>
<h1 class="post-title entry-title"> <a href="2020/03/VirusTotal-Tricks.html">在线查毒工具 VirusTotal 的 N 种玩法——从“误报/漏报”聊到“攻击者对它的利用”</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年3月27日 </span>
<span class="post-comment-link">
<a id="9041651979564055977" class="comment-link" href="2020/03/VirusTotal-Tricks.html#comments">1027评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/IT.html" rel="tag">IT</a>
<a href="tags/IT.E4BFA1E681AFE5AE89E585A8.html" rel="tag">IT.信息安全</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="1424350059728313117"></a>
<h1 class="post-title entry-title"> <a href="2020/03/share-books.html">分享各类电子书(【英文版】专场,177本)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年3月17日 </span>
<span class="post-comment-link">
<a id="1424350059728313117" class="comment-link" href="2020/03/share-books.html#comments">963评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E7BB8FE6B58E.html" rel="tag">经济</a>
<a href="tags/E5869BE4BA8B.html" rel="tag">军事</a>
<a href="tags/E58E86E58FB2.html" rel="tag">历史</a>
<a href="tags/E4B9A6E8AF842FE5BDB1E8AF84.html" rel="tag">书评/影评</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="1244609151326739687"></a>
<h1 class="post-title entry-title"> <a href="2020/02/weekly-share-143.html">每周转载:武汉疫情众生相——【平民篇】(大量网友评论,多图)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年2月28日 </span>
<span class="post-comment-link">
<a id="1244609151326739687" class="comment-link" href="2020/02/weekly-share-143.html#comments">1121评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E694BFE6B2BB.E88590E8B4A5.html" rel="tag">政治.腐败</a>
<a href="tags/E8BDACE8BDBD.html" rel="tag">转载</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="4941821443853759094"></a>
<h1 class="post-title entry-title"> <a href="2020/02/weekly-share-142.html">每周转载:“武汉疫情”暴露中国官僚体制弊端(网文6篇)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年2月19日 </span>
<span class="post-comment-link">
<a id="4941821443853759094" class="comment-link" href="2020/02/weekly-share-142.html#comments">527评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E8BDACE8BDBD.html" rel="tag">转载</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="4376229828523970713"></a>
<h1 class="post-title entry-title"> <a href="2020/02/Wuhan-Coronavirus-Outbreak-Chernobyl-Moment-for-CCP.html">中共的“切尔诺贝利时刻”——武汉肺炎疫情随想</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年2月8日 </span>
<span class="post-comment-link">
<a id="4376229828523970713" class="comment-link" href="2020/02/Wuhan-Coronavirus-Outbreak-Chernobyl-Moment-for-CCP.html#comments">636评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E7BB8FE6B58E.html" rel="tag">经济</a>
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E694BFE6B2BB.html" rel="tag">政治</a>
<a href="tags/E694BFE6B2BB.E88590E8B4A5.html" rel="tag">政治.腐败</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="8117821332236130899"></a>
<h1 class="post-title entry-title"> <a href="2020/01/weekly-share-141.html">每周转载:“武汉疫情”爆发的时间线——【政府失职】堪比“非典/SARS”时期</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年1月24日 </span>
<span class="post-comment-link">
<a id="8117821332236130899" class="comment-link" href="2020/01/weekly-share-141.html#comments">850评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/E8BDACE8BDBD.html" rel="tag">转载</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="8508451833558951340"></a>
<h1 class="post-title entry-title"> <a href="2020/01/11-years-blogging.html">开博11周年庆,博文分类汇总</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年1月15日 </span>
<span class="post-comment-link">
<a id="8508451833558951340" class="comment-link" href="2020/01/11-years-blogging.html#comments">578评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E58D9AE5AEA2E9809AE5918A.html" rel="tag">博客通告</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="9082540150717038193"></a>
<h1 class="post-title entry-title"> <a href="2020/01/Security-News.html">近期安全动态和点评(2019年4季度)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2020年1月9日 </span>
<span class="post-comment-link">
<a id="9082540150717038193" class="comment-link" href="2020/01/Security-News.html#comments">1009评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E697B6E4BA8BE8AF84E8AEBA.html" rel="tag">时事评论</a>
<a href="tags/IT.html" rel="tag">IT</a>
<a href="tags/IT.E4BFA1E681AFE5AE89E585A8.html" rel="tag">IT.信息安全</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="4457275194674072144"></a>
<h1 class="post-title entry-title"> <a href="2019/12/Time-and-Life.html">时间与人生——跨入本世纪20年代的随想</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2019年12月26日 </span>
<span class="post-comment-link">
<a id="4457275194674072144" class="comment-link" href="2019/12/Time-and-Life.html#comments">933评论</a>
</span>
<span class="post-labels"> 标签:
<a href="tags/E69599E882B2.html" rel="tag">教育</a>
<a href="tags/E7BB8FE6B58E.html" rel="tag">经济</a>
<a href="tags/E5ADA6E4B9A0E696B9E6B395.html" rel="tag">学习方法</a>
<a href="tags/E8818CE59CBAE782B9E6BBB4.html" rel="tag">职场点滴</a>
</span>
</div>
</div>
</div>
<div class="post-item hentry uncustomized-post-template" style="font-size: 100%;"><a name="50969602888603567"></a>
<h1 class="post-title entry-title"> <a href="2019/12/weekly-share-140.html">每周转载:华为李洪元案——工作996、离职251、维权404(大量网友评论,多图)</a></h1>
<div class="post-header"><div class="post-header-line-1"></div></div>
<div class="post-body entry-content"><div style="clear: both;"></div></div>
<div class="post-footer" style="margin-bottom:50px;">
<div class="post-footer-line post-footer-line-1" style="display:none;">
<span class="post-author vcard"></span> <span class="reaction-buttons"></span> <span class="star-ratings"></span>
<span class="post-icons"></span> <span class="post-backlinks post-comment-link"></span>
</div>
<div class="post-footer-line post-footer-line-2 post-toolbar">
<span class="post-timestamp"> 2019年12月10日 </span>
<span class="post-comment-link">
<a id="50969602888603567" class="comment-link" href="2019/12/weekly-share-140.html#comments">568评论</a>
</span>
<span class="post-labels"> 标签: