-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
1043 lines (1019 loc) · 88.9 KB
/
.gitignore
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
*
## source files and directories
!/.eslint*
!/.gitignore
!/.gitattributes
!/*.html
!/jest*
!/package.json
!/nodemon.json
!/README.md
!/tsconfig*
!/webpack.config.js
!/yarn.lock
!/untracked.sh
!/git.sh
!/build/**/*
!/dist/**/*
!/src/**/*
!/test/**/*
## include all subdirectories
!*/
## ignore git repo in subdirectories
node_modules/
res/math/algebra/linear/The-Art-of-Linear-Algebra
res/course/UCB CS294 Virtual Machines and Managed Runtimes/prj
res/cs/people/1938 Knuth.高德纳/texbook-notes
res/distributed/perfbook
res/game/d2/diablo2-single-player-item-pack
res/game/d2/diablo2-tools-utilities
res/game/people/Carmack.卡马克/john-carmack-plan-archive
res/hack/re/RE-for-beginners
res/http-server/book/JavaLambdaInternals
res/links
res/music/music
res/pl/clojure/cn-clojure-meetup
res/pl/cpp/core/CppCoreGuidelines
res/pl/smalltalk/wolczko/st
res/network/unp/src/unpv13e/
res/network/protocol/tls/implementing_ssl_gcc
res/gpu/web/webgpu_book
## directories or files not included in index.html
!/res/images/**/*
!/res/**/wa/**/*
!/res/std/man/**/*
!/res/std/rfc/**/*
## files below will be committed
!res/cfa/2022 CFA Program Curriculum Level I Box Set.pdf
!res/thinking/神逻辑_不讲道理的人怎么总有理.html
!res/thinking/有毒的逻辑_为何有说服力的话反而不可信.html
!res/thinking/A Rulebook for Arguments.论证是一门学问.18.html
!res/thinking/A Rulebook for Arguments.18.html
!res/db/neo4j/The Neo4j Cypher Manual.v4.4.html
!res/linguistics/简明语言学史.Robins1967.ocr.pdf
!res/pl/groovy/Groovy in Action_Covers Groovy 2.4.2nd.html
!res/pl/groovy/Groovy Language Documentation.v4.0.1.html
!res/pl/groovy/paper/2020 A History of the Groovy Programming Language.pdf
!res/pl/groovy/paper/2011 Scripting an IDE for EDSL awareness.pdf
!res/plt/paper/1998 Growing a Language.Steele.pdf
!res/pl/scheme/The Scheme Programming Language.4th.Dybvig2009.html
!res/strategy/Freedman/Strategy_A History.战略_一部历史.Freedman2013.html
!res/math/lambda/1936 An Unsolvable Problem of Elementary Number Theory.pdf
!res/math/lambda/2006 History of Lambda-calculus and Combinatory Logic.pdf
!res/math/lambda/The Calculi of Lambda-Conversion.Church1941.pdf
!res/math/lambda/The Calculi of Lambda-Conversion Annotated Notes and Ramblings of a Tired Student.pdf
!res/math/logic/形式化_现代逻辑的发展.朱水林.ocr.pdf
!res/math/recursive/Recursive Function Theory.Stone2011.pdf
!res/math/Kleene/1981 Origins of Recursive Function Theory.pdf.ocr.pdf
!res/math/course/cmu_15-317_Constructive Logic/Lecture Notes on Constructive Logic.Pfenning2017.pdf
!res/math/logic/Proofs and Algorithms_An Introduction to Logic and Computability.Dowek.pdf
!res/linguistics/paper/2016 Linguistics_Sound and Meaning in the World's Languages.pdf
!res/law/basics/The Case of the Speluncean Explorers.Suber.洞穴奇案.html
!res/law/X许章润/坐待天明.许章润.html
!res/law/basics/裁判的方法.梁慧星.2nd.html
!res/law/basics/西窗法雨.刘星.html
!res/cs/paper/2014 Loop Invariants_Analysis, Classification, and Examples.pdf
!res/cs/paper/1982 A Note on a Standard Strategy for Developing Loop Invariants and Loops.Gries.pdf
!res/cs/paper/1966 Proof of Algorithms by General Snapshots.Naur.pdf
!res/cs/paper/2005 Bringing Mathematics Education into the Algorithmic Age.Greenleaf.pdf
!res/math/logic/Logic for Computer Scientists.Schöning1989.pdf
!res/pl/prolog/Endriss/An Introduction to Prolog Programming.Endriss2021.notes.pdf
!res/mythology/greek/Words from the Myth.Asimov1961.pdf
!res/hack/paper/2015 How Hackers Think.pdf
!res/cg/processing/Learning Processing.Shiffman2015.2nd.pdf
!res/sw/sa/Software Design Decoded_66 Ways Experts Think.Petre2016.html
!res/history/china/中国朝代顺序表.html
!res/sf/theory/星空的旋律_世界科幻小说简史.萧星寒2011.html
!res/sf/theory/The Cambridge Companion to Science Fiction.James2003.剑桥科幻文学史.pdf
!res/sf/Masterpieces_The Best Science Fiction of the Century.大师的盛宴_二十世纪最佳科幻小说选.html
!res/psychology/Kelly/在文字之前,人们如何回忆过去?.html
!res/translate/people/1949 Yzn.叶子南/高级英汉翻译理论与实践.叶子南2008.2e.pdf
!res/psychology/memory/Moonwalking with Einstein_The Art and Science of Remembering Everything.Foer2011.与爱因斯坦月球漫步_美国记忆力冠军教你记忆一切.html
!res/psychology/memory/Your Memory_How It Works and How to Improve It.Higbee1977.2e.如何高效记忆.html
!res/mythology/china/中国妖怪故事全集.张云2020.pdf
!res/cn/说文解字/细说汉字_1000个汉字的起源与演变.左民安2005.pdf
!res/literature/people/M木心/paper/2014 木心文学创作中的“文本再生”现象研究_卢虹贝.pdf
!res/literature/people/M木心/paper/2015 诗歌符号学视阈下的木心诗歌研究.周恩宏.pdf
!res/psychology/memory/paper/2020 记忆术的图像.巨若星.pdf
!res/calligraphy/theory/中国书法理论体系.熊秉明2002.html
!res/calligraphy/paper/2009 书法美学意象研究.谢建军.pdf
!res/literature/chinese/易经/2005 《易经》对中华文化的影响.杨振宁.pdf
!res/cn/paper/2011 汉字结构研究.刘靖年.pdf
!res/psychology/memory/Remember, Remember_Learn the Stuff You Thought You Never Could.Cooke2008.cn.html
!res/vis/paper/1984 A System for Algorithm Animation.Brown.pdf
!res/vis/paper/2016 算法可视化软件设计中关键问题的研究.余雨.pdf
!res/vis/paper/2015 基于学习者视角的算法可视化系统研究综述.李晓鸿.pdf
!res/vis/paper/1993 A Principled Taxonomy of Software Visualization.Price.pdf
!res/vis/paper/2009 A Comprehensive Taxonomy of Algorithm Animation Languages.Karavirta.pdf
!res/literature/chinese/中国古典小说藏本:全25种52册(1).html
!res/literature/chinese/中国古典小说藏本:全25种52册(2).html
!res/literature/chinese/中国古典小说藏本:全25种52册(3).html
!res/literature/chinese/山海经/山海经_中华第一部奇幻诡秘的创世之书.王海燕2009.pdf
!res/literature/chinese/山海经/paper/2020 基于《山海经》妖怪文化的游戏美术设计研究与创作.张冬鸣.pdf
!res/psychology/gestalt/The Principles of Gestalt Psychology.Koffka1935.格式塔心理学原理.html
!res/art/The Art Spirit.Henri1923.艺术精神.html
!res/literature/novel/Flatland/Flatland.Abbott1884.平面国.html
!res/literature/novel/Fahrenheit 451.Bradbury1953.华氏451.html
!res/art/color/Color_A Natural History of the Palette.Finlay2002.颜色的故事_调色板的自然史.pdf
!res/art/color/The Secret Lives of Colour.Clair2016.色彩的秘密生活.html
!res/cn/词典/古汉语常用字字典.王力2011.4e.html
!res/publish/pdf/spec/PDF Reference.v1.0.pdf
!res/publish/font/Just My Type.Garfield2010.字体故事.html
!res/publish/people/Kobayashi.小林章/西文字体_字体的背景知识和使用方法.小林章2005.pdf
!res/publish/paper/2007 汉字印刷字体发展、设计与应用研究.刘钊.pdf
!res/art/color/中国色彩简史.郭廉夫2021.html
!res/pl/cpp/现代C++语言核心特性解析.谢丙堃2021.html
!res/geology/岁月菁华_化石档案与故事.中科院古生所2017.html
!res/geology/The Whole History of the Earth.白尾元理2011.地球全史_讲述地球46亿年的故事.pdf
!res/geology/普通地质学.舒良树2010.3e.pdf
!res/geology/The Story of Earth.Hazen2012.地球的故事_从一粒星尘到充满生命的世界,45亿年的地球演化史诗.html
!res/geology/Autobiography of Earth.Bradley1935.46亿年的地球物语.html
!res/pl/scheme/Software Design for Flexibility_How to Avoid Programming Yourself into a Corner.Hanson2021.html
!res/pl/scheme/sicp/Structure and Interpretation of Computer Programs.Sussman1996.2e.pdf
!res/pl/scheme/sicp/Structure and Interpretation of Computer Programs_JavaScript.Sussman2022.html
!res/chemistry/How the World Works_The Periodic Table_From Hydrogen to Oganesson.Rooney2019.元素简史_从炼金术到元素周期表.html
!res/chemistry/自然的音符_118种化学元素的故事.Nature2019.html
!res/chemistry/化学元素狂想曲.中二的化学君2020.html
!res/astronomy/Origins_The Story of the Beginning of Everything.Mobasher2018.起源_NASA天文学家的万物解答.html
!res/game/中国游戏风云.王亚晖2018.html
!res/game/engine/Game Engine Black Book_Wolfenstein 3D.Sanglard2017.html
!res/game/engine/Game Engine Architecture.Gregory2009.游戏引擎架构(1).pdf
!res/game/engine/Game Engine Architecture.Gregory2009.游戏引擎架构(2).pdf
!res/web/svg/SVG Essentials.Royds2014.2e.SVG精髓.pdf
!res/game/people/Carmack.卡马克/Masters of Doom_How Two Guys Created an Empire and Transformed Pop Culture.Kushner2003.DOOM启示录.html
!res/cg/history/Image Objects_An Archaeology of Computer Graphics.Gaboury2021.p1.cn.html
!res/cg/history/Image Objects_An Archaeology of Computer Graphics.Gaboury2021.p2.cn.html
!res/pl/cpp/stl/The C++ Standard Library.Grimm2020.3e.html
!res/pl/cpp/template/C++ Templates_The Complete Guide.Josuttis2003.C++ Templates 全覽.侯捷.pdf
!res/pl/cpp/C++ Move Semantics_The Complete Guide.Josuttis2020.html
!res/pl/cpp/template/C++ Templates_The Complete Guide.Josuttis2018.2e.html
!res/en/Collins/Collins COBUILD English Grammar.4th.html
!res/linux/paper/2007 What Every Programmer Should Know About Memory.Drepper.html
!res/linux/paper/2007 What Every Programmer Should Know About Memory.Drepper.cn.html
!res/en/Collins/Collins COBUILD Advanced Learner’s Dictionary.2014.8e.html
!res/pl/cpp/concurrency/C++ Concurrency in Action.Williams2017.C++并发编程.陈晓伟.html
!res/hack/people/Levy/Hackers Heroes of the Computer Revolution.Levy1984.黑客_计算机革命的英雄.html
!res/hack/A Hacker Manifesto.Wark2004.html
!res/hack/people/Assange.阿桑奇/Cypherpunks_Freedom and Future of Internet.Assange2012.密码朋克_自由与互联网的未来.html
!res/hack/people/Assange.阿桑奇/Unauthorized Autobiography.Assange2011.阿桑奇自传_不能不说的秘密.html
!res/hack/story/黑客简史.刘创2014.html
!res/sw/Coders_The Making of a New Tribe and the Remaking of the World.Thompson2019.天才程序员_技术狂人如何改变世界.html
!res/sw/程序之美系列套装.团队、项目管理、架构、数据、测试、安全.html
!res/hack/A History of Cybersecurity Attacks_1980 to Present.Middleton2017.pdf
!res/hack/Ethical Hacking_A Hands-on Introduction to Breaking In.Graham2021.html
!res/web/security/API安全技术与实战.钱君生2021.html
!res/web/security/Password Authentication for Web and Mobile Apps.Chestnykh2020.html
!res/web/security/API Security in Action.Madden2020.html
!res/bd/surveillance/The Age of Surveillance Capitalism_The Fight for a Human Future at the New Frontier of Power.Zuboff2019.監控資本主義時代.html
!res/bd/Designing Data-Intensive Applications.Kleppmann2017.数据密集型应用系统设计.html
!res/speak/Do You Talk Funny_7 Comedy Habits to Become a Better (and Funnier) Public Speaker.Nihill2015.如何成为讲话有趣的人.html
!res/algorithm/interview/LeetCode题解.Soulmachine2016.pdf
!res/sw/programming/Code Complete.McConnell2009.2e.html
!res/literature/tales/Grimms' Fairy Tales/令人战栗的格林童话.桐生操1998.html
!res/literature/tales/Grimms' Fairy Tales/格林童话210.html
!res/literature/tales/公主走進黑森林_榮格取向的童話分析.呂旭亞2017.html
!res/history/people/Kiryu.桐生操/残酷的处刑史.桐生操2006.html
!res/literature/tales/童话里隐藏的世界史.朴信英2019.html
!res/literature/tales/公主走进黑森林_用荣格的观点探索童话世界.吕旭亚2017.html
!res/hack/Coding Democracy_How Hackers Are Disrupting Power, Surveillance, and Authoritarianism.Webb2020.cn.html
!res/hack/people/Assange.阿桑奇/Julian Assange in His Own Words.Sharpe2021.html
!res/erotic/Histoire de la Litterature Erotique.西洋情色文學史.Alexandrian2008.pdf
!res/literature/history/世界文学史.张德明2006.html
!res/literature/people/1832 Carroll.卡罗尔/Alice's Adventures in Wonderland.Carroll1865.爱丽丝梦游仙境.html
!res/literature/people/1265 Dante.但丁/Divine Comedy.Dante1320.神曲.html
!res/literature/people/1943 Eagleton.伊格尔顿/How to Read Literature.Eagleton2013.文学的读法.html
!res/literature/people/1944 Winchester.文思淼/The Professor and the Madman.Winchester1998.天才、瘋子、大字典家.html
!res/sports/people/1973 Dyp.邓亚萍/心力.邓亚萍2021.html
!res/literature/people/1927 Mx.木心/木心全集.html
!res/literature/people/1930 Bloom.布鲁姆/How to Read and Why.Bloom2000.如何读,为什么读.html
!res/literature/people/1930 Bloom.布鲁姆/The Western Canon.Bloom1994.西方正典_伟大作家和不朽作品.html
!res/history/greece/伯罗奔尼撒战争史.修昔底德_历史.希罗多德_希腊史.色诺芬_希腊史纲.狄奥多罗斯.html
!res/literature/people/1932 Kapuscinski.卡普钦斯基/Travels with Herodotus.Kapuściński2004.与希罗多德一起旅行.html
!res/literature/people/1911 Miłosz.米沃什/The Captive Mind.Miłosz1953.被禁锢的头脑.html
!res/literature/people/1821 Baudelaire.波德莱尔/Les Fleurs du mal.Baudelaire1857.恶之花.文爱艺.html
!res/history/people/1885 Durant.杜兰特/The Story of Civilization/The Story of Civilization.Durant.文明的故事(1-6).html
!res/history/people/1885 Durant.杜兰特/The Story of Civilization/The Story of Civilization.Durant.文明的故事(7-11).html
!res/history/world/The History of the World in Bite-Sized Chunks.Marriott2012.世界文明5000年_一幅包罗万象的世界文明索引图.html
!res/sf/people/1928 Dick.迪克/菲利普迪克中短篇全集.html
!res/sf/people/1928 Dick.迪克/菲利普迪克科幻精选_高城堡里的人_少数派报告_流吧!我的眼泪_尤比克_仿生人会梦见电子羊吗.html
!res/sf/people/1904 Gibson.吉布森/Neuromancer Trilogy.Gibson1984.神经漫游者三部曲.html
!res/sf/people/1904 Gibson.吉布森/The Difference Engine.Gibson1990.差分机.html
!res/history/people/1866 Wells.韦尔斯/A Short History of the World.Wells1922.世界简史.html
!res/history/greece/Parallel Lives.Plutarch.希腊罗马名人传.席代岳.html
!res/linguistics/Empires of the Word_A Language History of the World.Ostler2005.语言帝国_世界语言史.pdf
!res/linguistics/Empires of the Word_A Language History of the World.Ostler2005.cn.2.html
!res/pl/java/concurrency/Java Concurrency in Practice.Goetz2006.html
!res/network/protocol/tls/Bulletproof SSL and TLS.Ristić2014.HTTPS权威指南_在服务器和Web应用上部署SSL, TLS和PKI.html
!res/network/protocol/tls/Implementing SSL and TLS Using Cryptography and PKI.Davies2011.html
!res/history/people/1964 Applebaum.阿普尔鲍姆/Iron Curtain_The Crushing of Eastern Europe, 1944-1956.Applebaum2012.cn.2.html
!res/politics/nazi/Parvenüs und Profiteure_Korruption in der NS-Zeit.Bajohr2001.纳粹德国的腐败与反腐.html
!res/network/unp/UNIX Network Programming.vol1_The Sockets Networking API.Stevens2003.3e.html
!res/network/unp/UNIX Network Programming.vol2_Interprocess Communications.2e.UNIX网络编程卷2_进程间通信.html
!res/biology/gene/人类六万年_基因中的人类历史.张振2013.html
!res/history/people/1900 Butterfield.巴特菲尔德/The Whig Interpretation of History.历史的辉格解释.Butterfield1931.pdf
!res/history/people/1866 Wells.韦尔斯/The Outline of History.Wells1920.世界史纲_生物和人类的简明史.html
!res/history/people/1948 Ansary.安萨利/The Invention of Yesterday_A 50000 Year History of Human Culture, Conflict, and Connection.Ansary2019.人类文明史_什么撬动了世界的沙盘.html
!res/write/创意写作书系经典系列.t36.html
!res/literature/people/1924 Jy.金庸/金庸全集.三联版.html
!res/history/chronology/中外历史对比年表.陈会颖2016.html
!res/linguistics/rhetoric/修辞学发凡.陈望道1932.html
!res/philosophy/people/__384 Aristotle.亚里士多德/诗学.修辞学.Aristotle.html
!res/geography/Introduction to Geography.Getis2006.11e.地理学与生活.html
!res/history/people/1889 Toynbee.汤因比/汤因比著作集.t7.html
!res/history/people/1895 Qm.钱穆/钱穆国学作品集.t10.html
!res/literature/people/1904.Lns.罗念生/罗念生全集.html
!res/politics/people/1952 Kaplan.卡普兰/The Revenge of Geography.Kaplan2012.即将到来的地缘战争_无法回避的大国冲突及对地理宿命的抗争.html
!res/history/museum/A History of the World in 100 Objects.MacGregor2010.大英博物馆世界简史.html
!res/war/people/1848 Delbrück.德尔布吕克/History of the Art of War.战争艺术史.Delbrück1920.html
!res/history/people/1979 Lsy.罗三洋/欧洲民族大迁徙史话.罗三洋2015.html
!res/science/通识_学问的门类.茂木健一郎2016.html
!res/literature/people/1927 Mx.木心/An Empty Room.木心.豹变.童明编选.html
!res/history/people/1947 Yzt.易中天/易中天中华史.13-24.html
!res/history/people/1947 Yzt.易中天/易中天中华史.01-12.html
!res/history/theory/历史学家的作坊.邓文初2018.html
!res/literature/people/1881 Lx.鲁迅/鲁迅全集.html
!res/literature/people/1980 Xwl.谢旺霖/转山.谢旺霖2008.html
!res/literature/people/1564 Shakespeare.莎士比亚/莎士比亚全集.人民文学出版社2014.纪念版.html
!res/math/history/Computation, Proof, Machine_Mathematics Enters a New Age.Dowek2007.计算进化史_改变数学的命运.html
!res/philosophy/people/1952 Cjy.陈嘉映/语言哲学.陈嘉映2003.html
!res/web/electron/Electron实战_入门、进阶与性能优化.刘晓伦2020.html
!res/sw/people/1957 Raymond.雷蒙德/The Cathedral and the Bazaar.Raymond1999.大教堂与集市.html
!res/network/tor/The Dark Net_Inside the Digital Underworld.Bartlett2014.暗网.html
!res/literature/people/1903 Orwell.奥威尔/奥威尔作品全集.Orwell.html
!res/sw/people/1957 Raymond.雷蒙德/The Art of UNIX Programming.Raymond2003.UNIX编程艺术.html
!res/sw/people/1931 Brooks.布鲁克斯/The Mythical Man-Month_Essays on Software Engineering.Brooks1975.人月神话.html
!res/sw/lead/The Manager’s Path/The Manager’s Path_A Guide for Tech Leaders Navigating Growth and Change.Fournier2017.cn.2.html
!res/sw/people/1952 Martin.马丁/Clean Architecture.Martin2017.架构整洁之道.html
!res/body/brain/Spark_The Revolutionary New Science of Exercise and the Brain.Ratey2008.运动改造大脑.html
!res/pl/cpp/people/1950 Stepanov.斯捷帕诺夫/From Mathematics to Generic Programming.Stepanov2014.数学与泛型编程_高效编程的奥秘.pdf
!res/body/Stretching Anatomy.Nelson2014.2e.拉伸运动系统训练.html
!res/sw/people/1952 Martin.马丁/Agile Principles,Patterns,and Practices in CSharp.Martin2006.敏捷软件开发_原则、模式与实践.html
!res/sw/lead/Adrenaline Junkies and Template Zombies_Understanding Patterns of Project Behavior.Demarco2008.项目百态.html
!res/literature/chinese/唐诗/唐诗三百首全解.赵昌平2006.html
!res/history/people/1967 Szonyi.宋怡明/The Art of Being Governed.被统治的艺术_中华帝国晚期的日常政治.Szonyi2017.html
!res/cn/people/1922 Wl.王力/古代汉语/古代漢語.王力2018.4e.html
!res/cn/people/1922 Wl.王力/诗词格律.王力.html
!res/sw/lead/Peopleware/Peopleware_Productive Projects and Teams.DeMarco2013.3e.人件.html
!res/philosophy/people/1889 Wittgenstein.维特根斯坦/维特根斯坦读本.陈嘉映2010.html
!res/literature/novel/One Flew Over the Cuckoo's Nest.Kesey1962.飞越疯人院.html
!res/sw/people/1933 Weinberg.温伯格/Understanding the Professional Programmer.Weinberg1982.cn.2.html
!res/sw/people/1933 Weinberg.温伯格/The Psychology of Computer Programming.Weinberg1971.cn.2.html
!res/speak/voice/Voice and Speaking Skills For Dummies.Apps2012.cn.2.html
!res/psychology/Music, Language, and the Brain.Patel2007.cn.2.html
!res/linguistics/phonetics_phonology/English Phonetics and Phonology_An Introduction.Carr2013.cn.2.html
!res/research/The Craft of Research.Booth2003.2e.研究是一门艺术.html
!res/read/people/1902 Adler.艾德勒/How to Read A Book.Adler1972.如何阅读一本书.html
!res/read/people/1902 Adler.艾德勒/How to Read A Book.Adler1972.cn.2.html
!res/pl/javascript/Effective JavaScript_68 Specific Ways to Harness the Power of JavaScript.Herman2012.html
!res/web/css/Every Layout_Relearn CSS Layout by Example.Pickering2022.3e.cn.2.html
!res/sw/lead/Talking with Tech Leads_From Novices to Practitioners.Kua2014.cn.2.html
!res/sw/people/1933 Weinberg.温伯格/Becoming a Technical Leader_An Organic Problem-Solving Approach.Weinberg1986.cn.2.html
!res/sw/people/1952 Martin.马丁/Clean Agile_Back to Basics.Martin2020.cn.2.html
!res/sw/people/1952 Martin.马丁/Clean Craftsmanship_Disciplines, Standards, and Ethics.Martin2021.cn.2.html
!res/sw/people/1952 Martin.马丁/Clean Code_A Handbook of Agile Software Craftsmanship.Martin2008.代码整洁之道.html
!res/sw/people/Coders at Work_Reflections on the Craft of Programming.Seibel2009.cn.2.html
!res/sw/dp/Dependency Injection Principles, Practices, and Patterns.Seemann2019.cn.2.html
!res/research/The Craft of Research.Booth2016.4e.cn.2.html
!res/sw/api/The Design of Web APIs.Lauret2019.cn.2.html
!res/sw/api/API Design Patterns.Geewax2021.cn.2.html
!res/write/nonfiction/On Writing Well.Zinsser1976.cn.2.html
!res/write/The Elements of Style/The Elements of Style.Strunk1918.英文寫作聖經.html
!res/en/chinglish/The Translator's Guide to Chinglish.Pinkham2000.中式英语之鉴.html
!res/algorithm/CLRS/Introduction to Algorithms.CLRS2022.4e.html
!res/read/The Reading Mind_A Cognitive Approach to Understanding How the Mind Reads.Willingham2017.心智与阅读.html
!res/read/How to Read Journal Articles in the Social Sciences_A Very Practical Guide for Students.Shon2012.会读才会写.html
!res/publish/pdf/PDF Explained.Whitington2011.cn.2.html
!res/bussiness/Understanding Business.Nickels2019.12e.认识商业.html
!res/bussiness/The Personal MBA_Master the Art of Business.Kaufman2010.cn.2.html
!res/bussiness/The Ten-Day MBA.Silbiger2012.4e.cn.2.html
!res/bussiness/Business Made Simple.Miller2020.cn.2.html
!res/literature/theory/Beginning Theory_An Introduction to Literary and Cultural Theory/Beginning Theory_An Introduction to Literary and Cultural Theory.Barry2009.3e.cn.2.html
!res/pl/javascript/JavaScript_The Definitive Guide.Flanagan2020.7e.html
!res/literature/people/1952 Isaacson.艾萨克森/The Innovators_How a Group of Hackers, Geniuses, and Geeks Created the Digital Revolution.Isaacson2014.创新者.html
!res/web/wa/index.html
!res/mgmt/wa/index.html
!res/philosophy/people/__428 Plato.柏拉图/The Republic.Plato_390.理想国.郭斌和.html
!res/sw/people/1962 Beck.贝克/Refactoring_Improving the Design of Existing Code.Fowler2018.2e.重构_改善既有代码的设计.html
!res/sw/people/1962 Beck.贝克/Implementation Patterns.Beck2007.实现模式.html
!res/web/react/test/Test-Driven Development with React_Apply Test-Driven Development in Your Applications.Qiu2021.html
!res/sw/sa/Software Architecture for Developers.Brown2015.程序员必读之软件架构.html
!res/sw/wa/index.html
!res/web/react/reactdocs-v18.2.0.html
!res/cm/The True Believer_Thoughts on the Nature of Mass Movements.Hoffer1951.狂热分子.html
!res/sw/agile/Continuous Integration_Improving Software Quality and Reducing Risk.Duvall2007.持续集成.html
!res/sw/agile/Continuous Delivery_Reliable Software Releases Through Build, Test, and Deployment Automation.Humble2010.cn.2.html
!res/sf/people/1963 Lcx.刘慈欣/三体.刘慈欣2008.The Three-Body Problem.cn.2.html
!res/sf/people/1963 Lcx.刘慈欣/刘慈欣作品集.html
!res/sw/story/Specification by Example_How Successful Teams Deliver the Right Software.Adzic2011.实例化需求_团队如何交付正确的软件.html
!res/sw/story/User Stories Applied.Cohn2004.cn.2.html
!res/sw/story/User Story Mapping_Discover the Whole Story, Build the Right Product.Patton2014.cn.2.html
!res/sw/story/Agile Estimating and Planning.Cohn2005.pdf
!res/sw/ddd/复杂软件设计之道_领域驱动设计全面解析与实战.彭晨阳2020.html
!res/sw/ddd/Domain-Driven Design_Tackling Complexity in the Heart of Software.Evans2003.领域驱动设计.html
!res/politics/people/1923 Kissinger.基辛格/Leadership_Six Studies in World Strategy.Kissinger2022.cn.2.html
!res/politics/geopolitics/The End of the World is Just the Beginning.Zeihan2022.cn.2.html
!res/economics/people/1944 Dixit.迪克西特/Thinking Strategically_The Competitive Edge in Business, Politics, and Everyday Life.Dixit1991.策略思维.html
!res/strategy/On Grand Strategy.Gaddis2018.论大战略.html
!res/history/china/资治通鉴/通鉴纪事本末(01-21).袁枢.html
!res/history/china/资治通鉴/通鉴纪事本末(22-42).袁枢.html
!res/history/china/资治通鉴/资治通鉴直解.张居正.html
!res/math/people/1932 Thorp.索普/Beat the Dealer_A Winning Strategy for the Game of Twenty-One.Thorp1962.击败庄家_21点的有利策略.html
!res/math/people/1932 Thorp.索普/A Man for All Markets_From Las Vegas to Wall Street, How I Beat the Dealer and the Market.Thorp2017.战胜一切市场的人.html
!res/physics/people/1904 Gamow.伽莫夫/One Two Three ... Infinity.Gamow1961.从一到无穷大.html
!res/physics/people/1904 Gamow.伽莫夫/The Great Physicists from Galileo to Einstein.Gamow1961.物理大师.html
!res/physics/people/1904 Gamow.伽莫夫/The New World of Mr Tompkins.Gamov1999.物理世界奇遇记.html
!res/physics/people/1918 Feynman.费曼/The Feynman Lectures on Physics.费曼物理学讲义1.Feynman.html
!res/physics/people/1918 Feynman.费曼/The Feynman Lectures on Physics.费曼物理学讲义2.Feynman.html
!res/physics/people/1918 Feynman.费曼/The Feynman Lectures on Physics.费曼物理学讲义3.Feynman.html
!res/economics/The Technology Trap_Capital, Labor, and Power in the Age of Automation.Frey2019.技術陷阱.html
!res/economics/The Technology Trap_Capital, Labor, and Power in the Age of Automation.Frey2019.技术陷阱.html
!res/mgmt/Masters of Management.Wooldridge2011.管理大师_那些让世界变得更好或更糟的管理大师与管理思想.html
!res/mgmt/people/1909 Drucker.德鲁克/管理大师德鲁克经典收藏版.html
!res/mgmt/The Witch Doctors_Making Sense of the Management Gurus.Wooldridge1996.cn.2.html
!res/mgmt/people/1943 Robbins.罗宾斯/Supervision Today.Robbins2012.7e.管理学.html
!res/science/people/1955 Poundstone.庞德斯通/Prisoner's Dilemma_John von Neumann, Game Theory, and the Puzzle of the Bomb.Poundstone1992.囚徒的困境.html
!res/math/people/1903 Neumann.诺伊曼/Prisoner's Dilemma_John von Neumann, Game Theory, and the Puzzle of the Bomb.Poundstone1992.囚徒的困境.html
!res/mgmt/High Output Management.Grove1983.格鲁夫给经理人的第一课.html
!res/ai/nlp/自然语言处理简明教程.冯志伟2012.html
!res/ai/people/1951 Levesque.莱韦斯克/Common Sense, the Turing Test, and the Quest for Real AI.Levesque2017.人工智能的进化.html
!res/ai/ps/人工智能简史.刘韩2017.html
!res/ai/ps/The Fall of the Human Empire, Memoirs of a Robot.常博逸2017.人类帝国的覆灭_一个机器人的回忆录.html
!res/ai/ps/Humans Need Not Apply_A Guide to Wealth and Work in the Age of Artificial Intelligence.Kaplan2015.人工智能时代.html
!res/bussiness/people/1960 Godin.高汀/Tribes_We Need You to Lead Us.Godin2008.cn.2.html
!res/politics/people/1923 Kissinger.基辛格/The Age of AI_And Our Human Future.Kissinger2021.cn.2.html
!res/ai/ps/The Age of AI_And Our Human Future.Kissinger2021.cn.2.html
!res/economics/people/1950 Xcg.许成钢/探索的历程.许成钢2021.html
!res/cs/people/1936 Pearl.珀尔/The Book of Why_The New Science of Cause and Effect.Pearl2018.为什么.html
!res/sw/uml/The Unified Modeling Language User Guide.Booch2005.2e.UML用户指南.html
!res/sw/uml/A UML Pattern Language.Evitts1999.cn.2.html
!res/philosophy/people/1889 Wittgenstein.维特根斯坦/Ludwig Wittgenstein_The Duty of Genius.Monk1990.维特根斯坦传_天才之为责任.html
!res/philosophy/people/1889 Wittgenstein.维特根斯坦/维特根斯坦文集.html
!res/sw/oo/Applying UML and Patterns_An Introduction to Object-Oriented Analysis and Design and Iterative Development.Larman2004.3e.cn.2.html
!res/sw/people/1955 Booch.布奇/Object-Oriented Analysis and Design with Applications.Booch2007.3e.面向对象分析与设计.html
!res/sw/people/1962 Beck.贝克/Planning Extreme Programming.Beck2000.cn.2.html
!res/sw/people/1963 Fowler.福勒/Patterns of Enterprise Application Architecture.Fowler2002.企业应用架构模式.html
!res/sw/people/1963 Fowler.福勒/Analysis Patterns_Reusable Object Models.Fowler1996.cn.2.html
!res/sw/test/Agile Testing_A Practical Guide for Testers and Agile Teams.Crispin2008.cn.2.html
!res/sw/test/不测的秘密_精准测试之路.TMQ精准测试实践团队2017.html
!res/sw/test/软件测试实战_微软技术专家经验总结.史亮2014.html
!res/sw/test/软件测试技术实战_设计、工具及管理.顾翔2016.html
!res/politics/Chimpanzee Politics_Power and Sex Among Apes.Waal1982.黑猩猩的政治_猿类社会中的权力与性.html
!res/linguistics/people/1906 Hayakawa.早川一会/Language in Thought and Action.Hayakawa1990.5e.语言学的邀请.txt.html
!res/science/people/1960 Page.佩奇/The Model Thinker_What You Need to Know to Make Data Work for You.Page2018.模型思维.html
!res/bussiness/people/1924 Munger.芒格/Seeking Wisdom_From Darwin to Munger.Bevelin2007.3e.cn.2.html
!res/ai/people/1956 Norvig.诺维格/Artificial Intelligence_A Modern Approach.Norvig2020.4e.1.cn.2.html
!res/ai/people/1956 Norvig.诺维格/Artificial Intelligence_A Modern Approach.Norvig2020.4e.2.cn.2.html
!res/ai/people/1951 Levesque.莱韦斯克/Machines Like Us_Toward AI with Common Sense.Levesque2022.cn.2.html
!res/sw/programming/A Philosophy of Software Design.Ousterhout2018.cn.2.html
!res/web/react/深入React技术栈.陈屹2016.html
!res/web/react/React 17 Design Patterns and Best Practices.Roldán2021.html
!res/philosophy/Continental Philosophy_A Very Short Introduction.Critchley2001.解读欧陆哲学.html
!res/philosophy/hermeneutics/西方诠释学史.潘德荣2013.html
!res/philosophy/phenomenology/Introduction to Phenomenology.Sokolowski2000.cn.2.html
!res/pl/typescript/Effective TypeScript_62 Specific Ways to Improve Your TypeScript.Vanderkam2019.cn.2.html
!res/pl/typescript/Programming with Types Examples in TypeScript.Riscutia2019.cn.2.html
!res/pl/javascript/Secrets of the JavaScript Ninja.Resig2016.2e.JavaScript忍者秘籍.html
!res/literature/chinese/诸子百家系列.t20.html
!res/literature/people/1895 Lyt.林语堂/林语堂作品.t25.html
!res/literature/theory/文心雕龙.刘勰501/文心雕龙精读.杨明2006.html
!res/cs/people/1928 Davis.戴维斯/Engines of Logic_Mathematicians and the Origin of the Computer.Davis2000.逻辑的引擎.html
!res/philosophy/history/The Great Philosophers_From Socrates to Foucault.Garvey2005.极简西方哲学史.html
!res/cognitive/Minds, Brains, Computers.Harnish2000.心智、大脑与计算机_认知科学创立史导论.html
!res/philosophy/people/1724 Kant.康德/Kritik der reinen Vernunft.Kant1781.康德三大批判.html
!res/tool/git/Pro Git.Chacon2014.2e.cn.html
!res/math/stat/The Lady Tasting Tea_How Statistics Revolutionized Science in the Twentieth Century.Salsburg2001.女士品茶_20世纪统计怎样变革了科学.html
!res/math/stat/The Seven Pillars of Statistical Wisdom.Stigler2016.统计学七支柱.html
!res/cn/说文解字/新编说文解字大全集.2011.html
!res/sw/ddd/Learning Domain-Driven Design Aligning Software Architecture and Business Strategy.Khononov2022.cn.2.html
!res/math/ps/数学女孩.结城浩.t4.html
!res/crypto/The Code Book_How to Make It, Break It, Hack It, Crack It.Singh1999.码书_编码与解码的战争.html
!res/crypto/people/1963 Schneier.施奈尔/A Hacker's Mind_How the Powerful Bend Society's Rules, and How to Bend them Back.Schneier2023.cn.2.html
!res/crypto/应用密码学.胡向东2011.2e.html
!res/crypto/图解密码技术.结城浩2015.pdf
!res/crypto/Introduction to Cryptography with Coding Theory.Trappe2020.3e.html
!res/sw/people/1933 Weinberg.温伯格/Perfect Software and Other Illusions About Testing.Weinberg2008.cn.2.html
!res/linguistics/History of Writing.Fischer2001.书写的历史.html
!res/cn/people/1910 Shirakawa.白川静/汉字的世界_中国文化的原点.白川静1976.html
!res/cn/people/1941 Xjx.许进雄/文字小讲.许进雄2014.html
!res/video/How Video Works_From Broadcast to the Cloud.Weynand2016.3e.cn.2.html
!res/video/Decode to Encode_Master Complex Concepts Faster, Bridge Gaps and Be Expert in Video Coding.Ramachandran2019.cn.2.html
!res/video/攻克视频技术.极客时间.html
!res/physics/people/1940 Nahin.纳欣/An Imaginary Tale_The Story of √-1.Nahin1998.cn.2.html
!res/math/ps/The Joy of X_A Guided Tour of Math.Strogatz2012.X的奇幻之旅.html
!res/publish/tex/LaTeX Beginner's Guide.Kottwitz2021.2e.cn.2.html
!res/math/ps/数学简史.蔡天新2017.html
!res/math/analysis/Analysis.Tao2016.3e.陶哲轩实分析.html
!res/math/analysis/The Calculus Lifesaver_All the Tools You Need to Excel at Calculus.Banner2007.普林斯顿微积分读本.html
!res/math/algebra/Unknown Quantity_A Real and Imaginary History of Algebra.Derbyshire2006.代数的历史_人类对未知量的不舍追踪.html
!res/math/people/1888 Courant.柯朗/What Is Mathematics_ An Elementary Approach to Ideas and Methods.Courant1995.2e.什么是数学.html
!res/math/ps/A Most Elegant Equation_Euler’s Formula and the Beauty of Mathematics.Stipp2017.cn.2.html
!res/sw/test/ut/Unit Testing Principles, Practices, and Patterns.Khorikov2019.cn.2.html
!res/cs/people/1915 Hamming.汉明/The Art of Doing Science and Engineering_Learning to Learn.Hamming1997.cn.2.html
!res/learning/Ultralearning_Master Hard Skills, Outsmart the Competition, and Accelerate Your Career.Young2019.超级学习者.html
!res/std/IEEE Std 1003.1-2004.html
!res/std/man/man.html
!res/math/people/1887 Pólya.波利亚/How to Solve It_A New Aspect of Mathematical Method.Pólya1957.2e.cn.2.html
!res/math/analysis/Burn Math Class_And Reinvent Mathematics for Yourself.Wilkes2016.烧掉数学书_重新发明数学.html
!res/sw/devops/docker/Docker Deep Dive. Poulton2017.深入浅出Docker.html
!res/pl/rust/The Rust Programming Language.Klabnik2019.Rust权威指南.html
!res/literature/people/1920 Zal.张爱玲/张爱玲合集.html
!res/literature/people/1953 Cdq.陈丹青/张岪与木心.陈丹青2019.html
!res/math/people/1916 Shannon.香农/1948 A Mathematical Theory of Communication.Shannon.通信的数学理论.pdf
!res/web/perf/High Performance Browser Networking.Grigorik2013.Web性能权威指南.html
!res/math/analysis/The Calculus Gallery_Masterpieces from Newton to Lebesgue.Dunham2005.微积分的历程_从牛顿到勒贝格.html
!res/network/wa/index.html
!res/network/图解网络硬件.三轮贤一2012.html
!res/network/general/Computer Networks_A Systems Approach.Peterson2022.6e.cn.2.html
!res/db/paper/2007 Architecture of a Database System.Hellerstein.pdf
!res/sw/dp/gof/Design Patterns_Elements of Reusable Object-Oriented Software.Gamma1994.设计模式_可复用面向对象软件的基础.html
!res/speak/李诞脱口秀工作手册.李诞.html
!res/film/comedy/The Hidden Tools of Comedy_The Serious Business of Being Funny.Kaplan2013.超棒喜剧这样写_好莱坞喜剧教父编剧技艺大解密.html
!res/film/comedy/The Comic Hero's Journey_Serious Story Structure for Fabulously Funny Films.超棒喜剧再解剖_鲁蛇如何变英雄?喜剧的独特叙事结构大拆解.Kaplan2019.html
!res/linux/kernel/Understanding the Linux Kernel.Bovet2008.3e.cn.2.html
!res/network/impl/Understanding Linux Network Internals.Benvenuti2005.cn.2.html
!res/linux/device/Linux Device Drivers.Corbet2005.3e.cn.2.html
!res/network/sdn/Software Defined Networks_An Authoritative Review of Network Programmability Technologies.Nadeau2013.软件定义网络_SDN与OpenFlow解析.html
!res/literature/people/1980s.Chen.陈德平/Land of Big Numbers.Chen2021.cn.2.html
!res/network/sdn/2008 OpenFlow_Enabling Innovation in Campus Networks.Mckeown.pdf
!res/network/sdn/2023 Advancing SDN from OpenFlow to P4_A Survey.Liatifis.cn.2.html
!res/network/sdn/深度解析SDN_利益、战略、技术、实践.张卫峰2013.html
!res/network/general/Foundations of Modern Networking_SDN, NFV, QoE, IoT, and Cloud.Stallings2015.cn.2.html
!res/network/general/Computer Networking Problems and Solutions.White2017.cn.2.html
!res/network/theory/Navigating Network Complexity_Next-generation Routing with SDN, Service Virtualization, and Service Chaining.White2015.cn.2.html
!res/distributed/Distributed Systems for Fun and Profit.Takada2013.cn.2.html
!res/distributed/Foundations of Scalable Systems_Designing Distributed Architectures.Gorton2022.cn.2.html
!res/cs/people/1941 Lamport.兰波特/The Writings of Leslie Lamport.cn.2.html
!res/bd/Designing Data-Intensive Applications.Kleppmann2017.cn.2.html
!res/db/sqlite/Inside SQLite.Haldar.2007.cn.2.html
!res/db/Making Databases Work_The Pragmatic Wisdom of Michael Stonebraker.Brodie2018.cn.2.html
!res/db/Database Internals_A Deep Dive Into How Distributed Data Systems Work.Petrov2019.cn.2.html
!res/game/poker/The Theory of Poker.Sklansky2001.4e.cn.2.html
!res/game/go/围棋阶梯培训教程_入门教程.王宁2015.html
!res/math/game/Game Theory 101_The Complete Textbook.Spaniel2011.cn.2.html
!res/history/china/00.商周/翦商_殷周之变与华夏新生.李硕2022.html
!res/history/china/00.商周/煌煌商周.高虫二2021.html
!res/history/theory/Historical Dynamics_Why States Rise and Fall.Turchin2003.历史动力学_国家为何兴衰.html
!res/history/theory/Secular Cycles.Turchin2009.cn.2.html
!res/history/theory/Ultra Society_How 10,000 Years of War Made Humans the Greatest Cooperators on Earth.Turchin2015.超级社会.html
!res/history/theory/Reading Like a Historian_Teaching Literacy in Middle and High School History Classrooms.Wineburg2012.cn.2.html
!res/politics/geopolitics/Move_The Forces Uprooting Us.Khanna2021.cn.2.html
!res/history/people/1886 Bloch.布洛赫/历史学家的技艺.Bloch1949.html
!res/history/theory/Weltgeschichtliche Betrachtungen.Burckhardt1905.世界历史沉思录.html
!res/literature/people/_900 Homer.荷马/荷马史诗与英雄悲剧.陈斯一2021.html
!res/literature/The Singer of Tales.Lord1960.故事的歌手.pdf
!res/psychology/people/1951 Kelly.凯利/Memory Craft_Improve Your Memory with the Most Powerful Methods in History.Kelly2019.cn.2.html
!res/psychology/people/1951 Kelly.凯利/The Memory Code_The Secrets of Stonehenge, Easter Island and Other Ancient Monuments.Kelly2017.cn.2.html
!res/psychology/people/1951 Kelly.凯利/Songlines_The Power and Promise.Kelly2020.cn.2.html
!res/cm/people/1931 Postman.波兹曼/Amusing Ourselves to Death.Postman1985.娱乐至死.html
!res/history/soviet/Beria_chef de la police secrète stalinienne.Wittlin1972.cn.2.html
!res/cm/people/1939 Logon.洛根/The Alphabet Effect.Logan2004.字母表效应.html
!res/literature/people/1912 Ong.翁/Orality and Literacy_The Technologizing of the Word.Ong1982.cn.2.html
!res/politics/people/1805 Tocqueville.托克维尔/The Old Regime and the Revolution.Tocqueville1856.旧制度与大革命.html
!res/politics/people/1805 Tocqueville.托克维尔/Democracy in America.Tocqueville1835.论美国的民主.html
!res/economics/people/1948 Yxk.杨小凯/牛鬼蛇神录.杨小凯1988.html
!res/cognitive/people/1929 Kandel.坎德尔/In Search of Memory_The Emergence of a New Science of Mind.Kandel2006.追寻记忆的痕迹_新心智科学的开创历程.html
!res/history/people/1889 Yates.叶芝/The Art of Memory.Yates1966.cn.2.html
!res/literature/people/1885 Zzr.周作人/周作人作品大全集.t78.html
!res/mythology/greek/众神的样子.江逐浪2020.html
!res/literature/people/1867 Hamilton.汉密尔顿/Mythology_Timeless Tales of Gods and Heroes.Hamilton1942.神话_希腊、罗马及北欧的神话故事和英雄传说.pdf
!res/war/逐陆记_世界战争史.曲飞2011.html
!res/literature/people/1867 Hamilton.汉密尔顿/Mythology_Timeless Tales of Gods and Heroes.Hamilton1942.cn.2.html
!res/mythology/greek/Les Héros de la Mythologie.Goeminne2018.神知识又增加了.html
!res/history/people/1946 Fox.福克斯/Travelling Heroes_Greeks and Their Myths in the Epic Age of Homer.Fox2008.cn.2.html
!res/write/后浪文学创作大师班.t6.html
!res/literature/people/1842 Brandes.勃兰兑斯/Main Currents in the Literature of the Nineteenth Century.Brandes1872.十九世纪文学主流.html
!res/write/The Seven Basic Plots_Why We Tell Stories.Booker2004.cn.2.html
!res/web/http/图解HTTP.上野宣2014.html
!res/web/http/HTTP_The Definitive Guide.Totty2002.HTTP权威指南.html
!res/web/http/透视HTTP协议.罗剑锋.html
!res/web/http/Learning HTTP2_A Practical Guide for Beginners.Garza2017.HTTP2基础教程.html
!res/web/http/HTTP2 in Action.Pollard2019.html
!res/web/perf/Responsible JavaScript.Wagner2021.cn.2.html
!res/web/perf/Web Performance Daybook Volume 2.Stefanov2012.cn.2.html
!res/web/react/React Key Concepts.Schwarzmüller2022.html
!res/web/node/Node.js Design Patterns_Design and Implement Production-Grade Node.js Applications Using Proven Patterns and Techniques.Casciaro2016.2e.Node.js设计模式.html
!res/distributed/microservice/Building Microservices_Designing Fine-Grained Systems.Newman2014.微服务设计.html
!res/distributed/microservice/Building Event-Driven Microservices_Leveraging Organizational Data at Scale.Bellemare2020.cn.2.html
!res/web/scale/大型网站技术架构_核心原理与案例分析.李智慧2013.html
!res/sw/sd/System Design Interview_An Insiders Guide.Xu2020.2e.cn.2.html
!res/distributed/Understanding Distributed Systems.Roberto2021.cn.2.html
!res/sw/sa/eda/Enterprise Integration Patterns_Designing, Building, and Deploying Messaging Solutions.Hohpe2003.cn.2.html
!res/distributed/凤凰架构_构建可靠的大型分布式系统.周志明2021.html
!res/sw/sa/Fundamentals of Software Architecture_An Engineering Approach.Richards2020.cn.2.html
!res/product/Building Products for the Enterprise.Reeves2018.cn.2.html
!res/product/ux/Dont Make Me Think.Krug2014.3e.cn.2.html
!res/sw/docs/Living Documentation_Continuous Knowledge Sharing by Design.Martraire2019.cn.2.html
!res/sw/story/有效需求分析.徐锋2017.html
!res/ai/people/1956 Norvig.诺维格/Artificial Intelligence_A Modern Approach.Norvig2020.4e.人工智能_现代方法.html
!res/ai/ml/机器学习.周志华2016.html
!res/algorithm/The Algorithm Design Manual/The Algorithm Design Manual.Skiena2008.2e.cn.2.html
!res/algorithm/Algorithm Design/Algorithm Design.Kleinberg2005.cn.2.html
!res/math/stat/La Formule du Savoir.Hoang2018.贝叶斯的博弈_数学、思维与人工智能.html
!res/ai/ps/The Master Algorithm.Domingos2015.终极算法_机器学习和人工智能如何重塑世界.html
!res/ai/ps/The Algebraic Mind_Integrating Connectionism and Cognitive Science.Marcus2003.代数大脑.html
!res/cs/people/1927 Minsky.明斯基/The Society of Mind.Minsky1986.心智社会.html
!res/game/go/日本围棋故事.薛至诚1988.html
!res/ai/game/Behind Deep Blue_Building the Computer That Defeated the World Chess Champion.Hsu2002.cn.2.html
!res/ai/ml/精通数据科学_从线性回归到深度学习.唐亘2018.html
!res/web/electron/深入浅出Electron 原理、工程与实践.刘晓伦2022.html
!res/speak/Stop Talking, Start Influencing_12 Insights from Brain Science to Make Your Message Stick.Horvath2019.大脑喜欢听你这样说.html
!res/speak/关于说话的一切.汤质2023.html
!res/psychology/Forty Studies that Changed Psychology.Hock2012.7e.改变心理学的40项研究.html
!res/psychology/people/1936 Peck.派克/The Road Less Traveled.Peck.少有人走的路.t8.html
!res/math/ps/Math with Bad Drawings_Illuminating the Ideas That Shape Our Reality.Orlin2018.欢乐数学.html
!res/math/thinking/心中有数_生活中的数学思维.刘雪峰2022.html
!res/cognitive/people/1965 Dehaene.迪昂/The Number Sense_How the Mind Creates Mathematics.Dehaene2010.2e.脑与数学.html
!res/math/people/Men of Mathematics.Bell1937.数学大师.html
!res/math/history/Enlightening Symbols_A Short History of Mathematical Notation and Its Hidden Powers.Mazur2014.人类符号简史.html
!res/career/Workplace Politics.Turner2008.办公室政治.html
!res/math/people/1976 Cheng.郑乐隽/How to Bake Pi_An Edible Exploration of the Mathematics of Mathematics.Cheng2015.数学思维.html
!res/math/category/Category Theory for Programmers.Milewski2017.cn.2.html
!res/linguistics/people/1936 Leech.利奇/A Communicative Grammar of English.Leech2002.3e.html
!res/en/dictionary/oxford/The New Oxford American Dictionary.2010.3e.html
!res/math/people/1945 Stewart.斯图尔特/Why Beauty Is Truth.Stewart2007.迷人的对称.html
!res/pl/haskell/Thinking Functionally With Haskell.Bird2015.html
!res/pl/haskell/Real World Haskell.Sullivan2008.cn.html
!res/pl/haskell/Learn You a Haskell for Great Good_A Guide for Beginners.Lipovaca2011.Haskell趣学指南.html
!res/en/dictionary/Word Frequency List of American English.Davies2010.html
!res/music/ps/Guitar Zero_The New Musician and the Science of Learning.Marcus2012.cn.2.html
!res/music/theory/Idiots Guides Music Theory.Miller2016.3e.cn.2.html
!res/music/people/1900 Copland.科普兰/What to Listen for in Music.Copland1957.cn.2.html
!res/music/ps/This Is Your Brain on Music_The Science of a Human Obsession.Levitin2006.cn.2.html
!res/music/history/Music in Western Civilization.Lang1941.西方文明中的音乐.html
!res/music/people/1970 Mhy.马慧元/写意巴洛克.马慧元2010.html
!res/music/ps/Violists.McGowan1994.cn.2.html
!res/linguistics/people/1914 Lakoff.莱考夫/Metaphors We Live By.Lakoff1980.cn.2.html
!res/cs/theory/Introduction to the Theory of Computation.Sipser2013.3e.pdf
!res/cs/people/1938 Knuth.高德纳/Concrete Mathematics_A Foundation for Computer Science.Knuth1994.2e.具体数学_计算机科学基础.html
!res/math/people/1906 Gödel.哥德尔/Gödel's Proof.Nagel1958.哥德尔证明.pdf
!res/cs/people/1938 Knuth.高德纳/Computers and Typesetting A_The TeXbook.Knuth1986.cn.pdf
!res/cs/people/1959 Wolfram.沃尔夫勒姆/What Is ChatGPT Doing ... and Why Does It Work.Wolfram2023.cn.2.html
!res/math/people/_300 Euclid.欧几里德/Elements.Euclid.几何原本.html
!res/sw/people/1953 Petzold.佩佐德/Code_The Hidden Language of Computer Hardware and Software.Petzold2022.2e.cn.2.html
!res/math/people/1877 Hardy.哈代/A Mathematician's Apology.Hardy1940.一个数学家的辩白.html
!res/math/history/The Math Book.Pickover2009.2e.数学之书.html
!res/sw/lead/Dreaming in Code.Rosenberg2007.cn.2.html
!res/thinking/The Idea Factory_Learning to Think at MIT.White1991.cn.2.html
!res/sw/se/Software Engineering_A Practitioner's Approach.Pressman2019.9e.cn.2.html
!res/philosophy/people/1872 Russell.罗素/Introduction to Mathematical Philosophy.Russell1919.数理哲学导论.html
!res/math/people/1945 Stewart.斯图尔特/The Foundations of Mathematics.Stewart2015.2e.cn.2.html
!res/math/people/1947 Devlin.德夫林/The Joy of Sets_Fundamentals of Contemporary Set Theory.Devlin1993.2e.pdf
!res/algorithm/competitive/整型溢出_信息学竞赛的发展,繁荣与衰退.徐西岭2020.pdf
!res/history/people/1947 Yzt.易中天/文心雕龙_美学思想稿论.易中天1986.html
!res/math/number/Hilbert's Tenth Problem_An Introduction to Logic, Number Theory, and Computability.Murty2019.pdf
!res/cs/theory/The Nature of Computation.Moore2011.cn.2.html
!res/cs/theory/Limits of Computation_An Introduction to the Undecidable and the Intractable.Reiter2013.pdf
!res/cs/paper/Ideas that Created the Future_Classic Papers of Computer Science.Lewis2021.cn.2.html
!res/cs/theory/What Can Be Computed_A Practical Guide to the Theory of Computation.MacCormick2018.pdf
!res/math/ps/The Mathematics of the Gods and the Algorithms of Men_A Cultural History.Zellini2020.cn.2.html
!res/publish/tex/LaTeX Graphics with TikZ_A Practitioner's Guide to Drawing 2D and 3D Images, Diagrams, Charts, and Plots.Kottwitz2023.html
!res/tool/cmake/Professional CMake_A Practical Guide.Scott2021.10e.cn.2.html
!res/film/people/1942 Ebert.伊伯特/Ebert's Bigger Little Movie Glossary.Ebert1999.我知道你们又来这一套.html
!res/film/people/1942 Ebert.伊伯特/The Great Movies I-III.Ebert.伟大的电影.html
!res/film/people/1941 McKee.麦基/Story_Substance, Structure, Style and the Principles of Screenwriting.McKee1997.故事_材质、结构、风格和银幕剧作的原理.html
!res/film/people/Piper.派珀/The Film Appreciation Book_The Film Course You Always Wanted to Take.Piper2014.cn.2.html
!res/film/How to Read a Film_Movies, Media, and Beyond.Monaco2009.4e.cn.2.html
!res/film/people/1956 Corrigan.科里根/A Short Guide to Writing about Film.Corrigan2012.8e.cn.2.html
!res/literature/书虫/书虫0.html
!res/literature/书虫/书虫1-2.html
!res/literature/书虫/书虫3-6.html
!res/cn/音韵/唐人如何吟诗_带你走进汉语音韵学.大岛正二.html
!res/cn/people/1910 Shirakawa.白川静/诗经的世界.中国古代文学_从神话到楚辞.中国古代文学_从《史记》到陶渊明.汉字的世界.汉字的世界.白川静.html
!res/sw/test/ut/The Art of Unit Testing with Examples in JavaScript.Osherove2024.3e.cn.2.html
!res/physics/people/1931 Penrose.彭罗斯/罗杰·彭罗斯作品集.html
!res/std/rfc.html
!res/body/Becoming a Supple Leopard.Starrett2015.2e.豹式健身_全面提升力量与柔韧性.html
!res/jp/菊与刀.五轮书.武士道.html
!res/history/china/24/白话精编二十四史.龚书铎.1-5.html
!res/history/china/24/白话精编二十四史.龚书铎.6-10.html
!res/speak/voice/声音变现.张弛2023.html
!res/body/breathe/La Scienza Del Respiro.Maric2017.呼吸的力量.html
!res/music/theory/音乐心理学.蒋存梅2016.html
!res/art/draw/The Natural Way to Draw.Nicolaïdes1941.cn.2.html
!res/art/draw/The Practice and Science of Drawing.Speed1913.cn.2.html
!res/art/draw/How to Draw What You See.Reyna1970.cn.2.html
!res/art/people/1926 Edwards.艾德华/Drawing on the Right Side of the Brain_The Definitive.Edwards2012.4e.cn.2.html
!res/art/Art & Fear.Bayles1985.cn.2.html
!res/art/people/1866 Kandinsky.康定斯基/Delphi Collected Works of Wassily Kandinsky.html
!res/art/people/1866 Kandinsky.康定斯基/艺术家自我修养.Kandinsky.html
!res/art/people/1888 Itten.伊顿/The Art of Color.Itten1973.cn.html
!res/art/people/1909 Gombrich.贡布里希/The Story of Art.Gombrich1994.16e.艺术的故事.html
!res/art/people/1853 Gogh.梵高/Van Gogh Museum Amsterdam.Rapelli2005.阿姆斯特丹梵高博物馆.html
!res/art/people/1953 Cdq.陈丹青/局部.陈丹青.html
!res/art/people/1872 Beardsley.比亚兹莱/比亚兹莱大师图典.Beardsley.html
!res/art/people/1828 Taine.丹纳/Philosophie de l’Art.Taine1865.艺术哲学.html
!res/art/people/1960 Nakano.中野京子/穿越时空的对决.历史故事篇.希腊神话篇.命运之画_是意外,还是宿命.王朝物语.艺术品中的绝代艳后.中野京子.html
!res/history/world/兴亡的世界史.t21.14-21.html
!res/history/world/兴亡的世界史.t21.8-13.html
!res/history/world/兴亡的世界史.t21.1-7.html
!res/politics/people/1952 Kaplan.卡普兰/The Revenge of Geography.Kaplan2012.地理的復仇_一觸即發的區域衝突.html
!res/geography/Geography and World Power.Fairgrieve1915.地理与世界霸权.html
!res/literature/people/1932 Kapuscinski.卡普钦斯基/Travels with Herodotus.Kapuściński2004.cn.2.html
!res/politics/people/1959 Marshall.马歇尔/Prisoners of Geography.Marshall2015.cn.2.html
!res/politics/people/1959 Marshall.马歇尔/The Power of Geography.Marshall2021.cn.2.html
!res/cm/创作者.张宁2021.html
!res/cm/传播学纲要.陈力丹2007.html
!res/ai/genai/Generative AI_The Insights You Need From Harvard Business Review.2024.cn.2.html
!res/ai/genai/Creative Prototyping with Generative AI_Augmenting Creative Workflows with Generative AI.Pennefather2023.cn.2.1.html
!res/ai/genai/Creative Prototyping with Generative AI_Augmenting Creative Workflows with Generative AI.Pennefather2023.cn.2.2.html
!res/ai/ps/The Creativity Code_How AI is Learning to Write, Paint and Think.Sautoy2019.天才与算法_人脑与AI的数学思维.html
!res/game/The Simulation Hypothesis.Virk2019.cn.2.html
!res/tool/emacs/Mastering Emacs.Petersen2020.cn.2.html
!res/body/people/1957 John.约翰/Intervention_Course Corrections for the Athlete and Trainer.John2012.cn.2.html
!res/body/Prescriptive Stretching.Berg2010.精准拉伸_疼痛消除和损伤预防的针对性练习.html
!res/body/Starting Strength.Rippetoe2013.3e.力量基础训练.力量训练计划.html
!res/body/Bodybuilding Anatomy.Evans2015.2e.健美健身运动系统训练.html
!res/tool/emacs/Learning GNU Emacs.Cameron2009.3e.cn.2.html
!res/tool/emacs/GNU Emacs Manual.v29.2.cn.2.html
!res/ai/How AI Works_From Sorcery to Science.Kneusel2024.cn.2.html
!res/ai/ml/Numsense_Data Science for the Layman.Ng2017.白话机器学习算法.html
!res/gpu/Programming Massively Parallel Processors_A Hands-on Approach.Kirk2013.2e.cn.2.html
!res/gpu/cuda/CUDA by Example_An Introduction to General-Purpose GPU Programming.Sanders2010.cn.2.html
!res/gpu/cuda/The CUDA Handbook_A Comprehensive Guide to GPU Programming.Wilt2013.CUDA专家手册.html
!res/cg/Computer Graphics from Scratch_A Programmer's Introduction to 3D Rendering.Gambetta2021.计算机图形学入门.html
!res/cg/history/A Biography of the Pixel.Smith2021.cn.2.html
!res/ai/llm/Mastering NLP from Foundations to LLMs.Gazit2024.cn.2.html
!res/tool/make/Managing Projects with GNU Make.Mecklenburg2009.3e.cn.2.html
!res/ai/llm/大模型时代_ChatGPT开启通用人工智能浪潮.龙志勇2023.html
!res/math/stat/统计学关我什么事_生活中的极简统计学.小岛宽之2015.html
!res/math/stat/Introduction To Probability.Bertsekas2008.2e.概率导论.html
!res/ai/dl/Deep Learning.Goodfellow2016.深度学习.html
!res/ai/dl/Deep Learning.Goodfellow2016.cn.2.html
!res/pl/r/Hands-On Programming with R_Write Your Own Functions and Simulations.Grolemund2014.html
!res/math/stat/Probability, Statistics, and Data_A Fresh Approach Using R.Speegle2022.html
!res/pl/r/Advanced R.Wickham2019.2e.html
!res/math/ps/Measurement.Lockhart2012.度量_一首献给数学的情歌.html
!res/body/nutrition/Glucose Revolution_The Life-Changing Power of Balancing Your Blood Sugar.Inchauspé2022.控糖革命.html
!res/body/health/Outlive_The Science and Art of Longevity.Gifford2023.超越百岁.html
!res/se/Social Engineering_The Art of Human Hacking.Hadnagy2011.cn.2.html
!res/se/Social Engineering.Gehl2022.cn.2.html
!res/se/Mindf_ck_Cambridge Analytica and the Plot to Break America.Wylie2019.cn.2.html
!res/sw/The Problem With Software_Why Smart Engineers Write Bad Code.Barr2018.cn.2.html
!res/algorithm/The Constitution of Algorithms.Jaton2020.cn.2.html
!res/plt/people/1944 Friedman/The Little Learner.Friedman2023.html
!res/se/Human Hacking.Hadnagy2021.cn.2.html
!res/cm/sm/成为讲书人_阅读和表达的个人精进法.赵冰2022.html
!res/read/How to Talk About Books You Haven't Read.Bayard2007.cn.2.html
!res/read/Abridged Classics_Brief Summaries of Books You Were Supposed to Read but Probably Didn't.Atkinson2018.html
!res/cm/people/1889 Lippmann.李普曼/Public Opinion.Lippmann1922.cn.2.html
!res/cm/people/1889 Lippmann.李普曼/Public Opinion.Lippmann1922.舆论.html
!res/cs/people/1928 Davis.戴维斯/The Universal Computer_The Road from Leibniz to Turing.Davis2018.3e.cn.2.html
!res/mgmt/people/1909 Drucker.德鲁克/The End of Economic Man/The End of Economic Man_The Origins of Totalitarianism.Drucker1969.经济人的末日_极权主义的起源.html
!res/psychology/people/1841 LeBon.勒庞/Psychologie des Foules.LeBon1895.乌合之众.html
!res/politics/people/1911 Djilas.吉拉斯/The New Class_An Analysis of the Communist System.Djilas1957.新阶级_对共产主义制度的分析.html
!res/cs/people/1928 Davis.戴维斯/2020 Seventy Years of Computer Science.Davis.cn.2.html
!res/sw/sd/Principles of Computer System Design_An Introduction.Saltzer2009.p1.cn.2.html
!res/read/阅读的方法.罗振宇2022.html
!res/learning/The ABCs of How We Learn_26 Scientifically Proven Approaches.Schwartz2016.科学学习.html
!res/embedded/Building Embedded Systems_Programmable Hardware.Gu2016.html
!res/embedded/Computers as Components_Principles of Embedded Computing System Design.Wolf2012.3e.html
!res/embedded/Designing Embedded Hardware.Catsoulis2005.2e.html
!res/embedded/Embedded Systems Architecture.Lacamera2023.2e.html
!res/hw/The Elements of Computing Systems_Building a Modern Computer from First Principles.Nisan2021.2e.html
!res/hw/How Computers Really Work_A Hands-On Guide to the Inner Workings of the Machine.Justice2020.计算机是如何工作的.html
!res/read/book/El infinito en un junco.Vallejo2019.cn.2.html
!res/strategy/people/1959 Greene.格林/The Laws of Human Nature.Greene2018.cn.2.html
!res/strategy/people/1959 Greene.格林/The 48 Laws of Power.Greene1998.權力48法則.html
!res/pl/lisp/1991 Lisp_Good News, Bad News, How to Win Big.Gabriel.cn.2.html
!res/pl/lisp/1991 Worse Is Better.Gabriel.cn.2.html
!res/write/paper/1990 The Science of Scientific Writing.Gopen.cn.2.html
!res/sw/sa/12 Essential Skills for Software Architects.Hendricksen2011.软件架构师的12项修炼.html
!res/sw/sa/12 More Essential Skills for Software Architects.Hendricksen2015.cn.2.html
!res/bussiness/company/xerox/Dealers of Lightning_Xerox PARC and the Dawn of the Computer Age.Hiltzik1999.cn.2.html
!res/hack/story/The Cuckoo's Egg_Tracking a Spy Through the Maze of Computer Espionage.Stoll1989.cn.2.html
!res/hack/story/The Hacker Crackdown_Law and Disorder on the Electronic Frontier.Sterling1992.cn.2.html
!res/cs/history/A History of Modern Computing.Ceruzzi2003.2e.cn.2.html
!res/learning/The Idea Factory_Learning to Think at MIT.White1991.cn.2.html
!res/cs/history/What the Dormouse Said_How the Sixties Counterculture Shaped the Personal Computer Industry.Markoff2005.cn.2.html
!res/cs/history/Where Wizards Stay Up Late_The Origins of the Internet.Hafner1998.cn.2.html
!res/cs/history/A New History of Modern Computing.Ceruzzi2021.cn.2.p1.html
!res/cs/history/A New History of Modern Computing.Ceruzzi2021.cn.2.p2.html
!res/us/The Security Agencies of the United States_How the CIA, FBI, NSA, and Homeland Security Keep Us Safe.Streissguth2013.2e.cn.2.html
!res/cs/history/Tools for Thought.Rheingold2000.cn.2.html
!res/cs/theory/Introduction to the Theory of Computation.Sipser2013.3e.cn.2.html
!res/pl/racket/docs/The Racket Guide-8.13.html
!res/pl/racket/docs/Scribble_The Racket Documentation Tool-8.6.html
!res/speak/story/Stories That Stick.Hall2019.只讲故事不讲理.html
!res/pl/racket/docs/The Racket Reference-8.13.html
!res/film/people/1941 McKee.麦基/Story_Substance, Structure, Style and the Principles of Screenwriting.McKee1997.cn.2.html
!res/hack/people/1986 Swartz.斯沃茨/Raw Thought, Raw Nerve_Inside the Mind of Aaron Swartz.Swartz2014.cn.2.html
!res/sociology/people/1916 Mills.米尔斯/The Sociological Imagination.Mills1959.社会学的想象力.html
!res/hack/people/1986 Swartz.斯沃茨/The Boy Who Could Change the World_The Writings of Aaron Swartz.Swartz2015.cn.2.html
!res/linguistics/people/1928 Chomsky.乔姆斯基/Understanding Power_The Indispensable Chomsky.Chomsky2002.cn.2.html
!res/literature/theory/Beginning Theory_An Introduction to Literary and Cultural Theory/Beginning Theory_An Introduction to Literary and Cultural Theory.Barry2017.4e.理论入门_文学与文化理论导论.html
!res/pl/racket/How to Design Programs_An Introduction to Programming and Computing.Felleisen2018.2e.html
!res/strategy/people/1947 Porter.波特/Understanding Michael Porter_The Essential Guide to Competition and Strategy.Magretta2011.cn.2.html
!res/game/unity/Unity游戏设计与实现_南梦宫一线程序员的开发实例.加藤政树2013.html
!res/game/A Playful Production Process_For Game Designers and Everyone.Lemarchand2021.cn.2.html
!res/game/theory/Rules of Play_Game Design Fundamentals.Salen2003.cn.2.html
!res/game/theory/A Theory of Fun for Game Design.Koster2013.2e.游戏设计快乐之道.html
!res/game/theory/玩家思维游戏设计师的自我修养.邪让多杰2016.html
!res/game/theory/Players Making Decisions_Game Design Essentials and the Art of Understanding Your Players.Hiwiller2015.游戏设计入门_理解玩家思维.html
!res/game/design/The Art of Game Design.Schell2019.3e.cn.2.html
!res/game/people/1954 Meier.梅尔/Sid Meiers Memoir_A Life in Computer Games.Meier2020.cn.2.html
!res/animation/制作进行_一本书让你彻底了解动画制作.舛本和也2014.html
!res/sw/Computer Systems_A Programmers Perspective.Bryant2016.3e.html
!res/sw/ddd/Domain-Driven Design_Tackling Complexity in the Heart of Software.Evans2003.cn.2.html
!res/philosophy/people/1895 Fyl.冯友兰/A Short History of Chinese Philosophy.Feng1947.中国哲学简史.html
!res/hack/people/1983 Snowden.斯诺登/Permanent Record.Snowden2019.永久档案.html
!res/bussiness/people/1960 Godin.高汀/All Marketers Are Liars_The Power of Telling Authentic Stories in a Low Trust World.Godin2005.html
!res/comics/99 Ways To Tell a Story_Exercises in Style.Madden2005.一个故事的99种讲法.html
!res/film/screenplay/Your Screenplay Sucks.Akers2008.cn.2.html
!res/film/people/1950 Lw.芦苇/电影编剧的秘密.芦苇2013.html
!res/film/people/1889 Chaplin.卓别林/The Great Dictator.Chaplin1940.大独裁者.html
!res/film/theory/Filmspeak_How to Understand Literary Theory by Watching Movies.Tomarken2012.cn.2.html
!res/film/screenplay/2018 The Most Important Thing All Screenwriters Must Read.Cosgrove.cn.2.html
!res/film/screenplay/Save the Cat_The Last Book on Screenwriting You'll Ever Need.Snyder2005.救猫咪_电影编剧指南.html
!res/film/films/Hackers Movie Guide.Morgan2022.html
!res/hack/story/Cyberpunk_Outlaws and Hackers on the Computer Frontier.Markoff1991.电脑怪客.html
!res/hack/story/Approaching Zero_The Extraordinary Underworld of Hackers, Phreakers, Virus Writers, and Keyboard Criminals.Mungo1992.cn.2.html
!res/literature/people/1860 Chekhov.契诃夫/契诃夫短篇小说选.html
!res/literature/theory/The Nature of Narrative.Kellogg2006.2e.叙事的本质.html
!res/literature/theory/文学批评入门.汤拥华2020.html
!res/read/people/1950 Foster.福斯特/How to Read Literature Like a Professor.Foster2003.如何阅读一本文学书.html
!res/ic/ps/Chip War_The Fight for the World's Most Critical Technology.Miller2022.cn.2.html
!res/ic/ps/Chip War_The Fight for the World's Most Critical Technology.Miller2022.晶片戰爭.html
!res/ic/ps/芯片战争.余盛2021.html
!res/ic/ps/Chip War_The Fight for the World's Most Critical Technology.Miller2022.芯片战争.html
!res/ic/ps/芯片简史.汪波2023.html
!res/ic/eda/The Ultimate Guide to Open Source EDA Tools.AnySilicon.html
!res/ic/eda/2003 The Tides of EDA.Vincentelli.cn.2.html
!res/ic/eda/2024 A Brief and Personal History of EDA.Leibson.cn.2.html
!res/ic/eda/Computer Aids for VLSI Design.Rubin1994.2e.cn.2.html
!res/ic/semiconductor/Understanding Semiconductors_A Technical Guide for Non-Technical People.Richard2023.cn.2.html
!res/ic/semiconductor/Semiconductor Basics_A Qualitative, Non-Mathematical Explanation of How Semiconductors Work and How They Are Used.Domingo2020.cn.2.html
!res/ic/ps/The Chip_How Two Americans Invented the Microchip and Launched a Revolution.Reid2001.2e.cn.2.html
!res/telecom/wireless/A Brief History of Everything Wireless_How Invisible Waves Have Changed the World.Launiainen2018.cn.html
!res/ic/verilog/Verilog HDL_A Guide to Digital Design and Synthesis.Palnitkar2003.2e.html
!res/pl/python/Fluent Python.Ramalho2022.2e.html
!res/pl/python/Fluent Python.Ramalho2022.2e.流畅的Python.html
!res/pl/python/Python Distilled.Beazley2022.html
!res/plt/design/Programming Languages_Principles and Paradigms.Gabbrielli2023.2e.pdf
!res/plt/design/Concepts of Programming Languages.Sebesta2019.12e.cn.2.html
!res/plt/design/EECS390 Programming Paradigms Notes.html
!res/pl/python/docs/python-3.12.5-docs.cn.html
!res/plt/design/Programming Language Pragmatics.Scott2016.4e.cn.2.html
!res/pl/python/Learning Python.Lutz2013.5e.html
!res/cs/ACM Turing Award/2023 Turing Awardees.cn.2.html
!res/cs/theory/The Golden Ticket_P, NP, and the Search for the Impossible.Fortnow2013.可能与不可能的边界_PNP问题趣史.html
!res/cs/theory/2023 Complexity Theorys 50-Year Journey to the Limits of Knowledge.Brubaker.计算复杂性理论50年_从P与NP问题到元复杂性.html
!res/cs/theory/Understanding Computation.Stuart2013.计算的本质.html
!res/cs/theory/In Pursuit of the Traveling Salesman_Mathematics at the Limits of Computation.Cook2011.迷茫的旅行商.html
!res/cs/theory/2002 A Short History of Computational Complexity.Fortnow.html
!res/cs/ps/Factor Man.Ginsberg2017.cn.2.html
!res/cs/theory/Are Turing machines still useful as model of computation.html
!res/cs/people/1912 Turing.图灵/The Annotated Turing.Petzold2008.图灵的秘密_他的生平、思想及论文解读.html
!res/cs/people/1912 Turing.图灵/The Essential Turing.Copeland2004.cn.2.html
!res/cs/theory/2011 Why Philosophers Should Care About Computational Complexity.Aaronson.cn.2.html
!res/vis/manim/Intro to Manim.DevTaoism2020.html
!res/pl/racket/docs/Scriblib_Extra Scribble Libraries-8.6.html
!res/plt/compiler/dragon/Compilers_Principles, Techniques and Tools.Aho2007.2e.编译原理.html
!res/cs/people/1912 Turing.图灵/A Madman Dreams of Turing Machines.Levin2007.cn.2.html
!res/cs/people/1912 Turing.图灵/Alan Turing_His Work and Impact.Cooper2013.cn.2.html
!res/philosophy/people/1712 Rousseau.卢梭/Rousseau_A Very Short Introduction.Wokler2001.牛津通识读本_卢梭.html
!res/sw/test/gtest/gtest-docs.html
!res/plt/generator/antlr/The Definitive ANTLR 4 Reference.Parr2013.2e.cn.2.html
!res/plt/compiler/Language Implementation Patterns.Parr2009.cn.2.html
!res/ai/math/Essential Math for AI.Nelson2023.cn.2.html
!res/ai/math/2024 The Mathematics of Reliable Artificial Intelligence.Kutyniok.cn.2.html
!res/course/mit-6-034-artificial-intelligence/MIT Artificial Intelligence.Winston2010f.cn.2.html
!res/cs/people/1916 Simon.西蒙/The Sciences of the Artificial.Simon2019.3e.cn.2.html
!res/ai/history/The Road to Conscious Machines_The Story of AI.Wooldridge2020.人工智能全传.html
!res/ai/people/Architects of Intelligence_The Truth About AI From the People Building It.Ford2018.cn.2.html
!res/math/stat/Probability Theory_The Logic of Science.Jaynes2003.cn.2.html
!res/course/mit-6-041-probabilistic-systems-analysis-and-applied-probability/MIT 6.041 Probabilistic Systems Analysis and Applied Probability.cn.2.html
!res/math/thinking/Deep Thinking_What Mathematics Can Teach Us about the Mind.Byers2014.cn.2.html
!res/math/people/1975 Tao.陶哲轩/Solving Mathematical Problems_A Personal Perspective.Tao2006.2e.陶哲轩教你学数学.html
!res/history/people/1976 Harari.赫拉利/Nexus_A Brief History of Information Networks from the Stone Age to AI.Harari2024.连结_从石器时代到AI纪元.html
!res/pl/lean/Logic and Proof 3.18.4 documentation.cn.2.html
!res/pl/lean/Theorem Proving in Lean 4.html
!res/pl/lean/2021 Learning about Proof with the Theorem Prover LEAN.Thoma.cn.2.html
!res/pl/lean/Mathematics in Lean 0.1 documentation.html
!res/plt/people/1944 Friedman/The Little Typer.Friedman2018.html
!res/plt/people/1944 Friedman/Essentials of Programming Languages.Friedman2008.3e.html
!res/pl/idris/Type-Driven Development with Idris.Brady2017.html
!res/cs/people/1957 Harper.哈珀/2011 The Holy Trinity.Harper.html
!res/math/The Princeton Companion to Mathematics/The Princeton Companion to Mathematics.Gowers2008.cn.2.html
!res/plt/type/Types and Programming Languages.Pierce2002.html
!res/pl/lean/Functional Programming in Lean.Christiansen2023.html
!res/philosophy/Big Ideas for Curious Minds_An Introduction to Philosophy.Botton2018.cn.2.html
!res/ai/kg/Personal Knowledge Graphs_Connected Thinking to Boost Productivity, Creativity and Discovery.Velitchkov2023.cn.2.html
!res/ai/ml/The Hundred-Page Machine Learning Book.Burkov2019.html
!res/ai/ml/Why Machines Learn_The Elegant Math Behind Modern AI.Ananthaswamy2024.cn.2.html
!res/ai/dl/Genius Makers_The Mavericks Who Brought AI to Google, Facebook, and the World.Metz2021.深度学习革命.html
!res/ai/history/A Brief History of Intelligence_Evolution, AI, and the Five Breakthroughs That Made Our Brains.Bennett2023.cn.2.html
!res/ai/history/Artificial Intelligence_An Introduction for the Inquisitive Reader.Chen2022.cn.2.html
!res/ai/ps/Rule of the Robots_How Artificial Intelligence Will Transform Everything.Ford2021.cn.2.html
!res/cs/people/1916 Simon.西蒙/Models of My Life.Simon1991.科学迷宫里的顽童与大师_赫伯特·西蒙自传.html
!res/literature/people/1899 Borges.博尔赫斯/博尔赫斯全集.Borges.html
!res/cs/people/1936 Pearl.珀尔/The Book of Why_The New Science of Cause and Effect.Pearl2018.cn.2.html
!res/unicode/彻底弄懂Unicode编码.李宇仓.html
!res/unicode/FAQ - UTF-8, UTF-16, UTF-32 & BOM.html
!res/ai/ml/Neural Networks and Deep Learning.Nielsen2013.html
!res/math/algebra/linear/Introduction to Linear Algebra.Strang2023.6e.pdf
!res/dsp/The Essential Guide to Digital Signal Processing.Lyons2014.cn.2.html
!res/gpu/cuda/CUDA C Programming Guide v12.5.html
!res/dsp/Understanding Digital Signal Processing.Lyons2011.3e.cn.2.html
!res/gpu/Parallel and High Performance Computing.Robey2021.cn.2.html
!res/parallel/Is Parallel Programming Hard, And, If So, What Can You Do About It.McKenney2017.深入理解并行编程.html
!res/gpu/web/The WebGPU Sourcebook_High-Performance Graphics and Machine Learning in the Browser.Scarpino2025.html
!res/ca/gem5/2011 The gem5 Simulator.html
!res/ca/gem5/2020 The gem5 Simulator_Version 20.0+.html
!res/sw/dp/Elemental Design Patterns.Smith2012.cn.2.html
!res/linux/people/1970 Gregg.格雷格/Systems Performance_Enterprise and the Cloud.Gregg2013.性能之巅_洞悉系统,企业与云计算.html
!res/linux/perf/Understanding Software Dynamics.Sites2021.html
!res/ai/math/Basic Math for AI.Hinton2024.cn.2.html
!res/distributed/microservice/Microservices Patterns With Examples in Java.Richardson2018.cn.2.html
!res/sw/dp/Refactoring to Patterns.Kerievsky2004.重构与模式.html
!res/pl/typescript/Effective TypeScript_83 Specific Ways to Improve Your Typescript.Vanderkam2024.2e.html
!res/pl/typescript/TypeScript Cookbook_Real World Type-Level Programming.Baumgartner2023.cn.2.html
!res/sw/people/1962 Beck.贝克/Tidy First_A Personal Exercise in Empirical Software Design.Beck2024.cn.2.html
!res/sw/dp/Refactoring at Scale_Regaining Control of Your Codebase.Lemaire2021.cn.2.html
!res/literature/people/1927 Mx.木心/同情中斷錄.木心1999.html
!res/art/people/1954 Clunas.柯律格/Chinese Painting and its Audiences.Clunas2017.谁在看中国画.html
!res/literature/people/1564 Shakespeare.莎士比亚/Tales from Shakespeare.Lamb1807.莎士比亚戏剧故事集.漪然.html
!res/literature/history/The Classical Tradition_Greek and Roman Influences on Western Literature.Highet1976.cn.2.html
!res/literature/people/1265 Dante.但丁/Divine Comedy.Dante1320.神曲的故事_插图珍藏本.html
!res/literature/people/1749 Goethe.歌德/浮士德.手冢治虫1950.html
!res/literature/people/1749 Goethe.歌德/Faust.Goethe1808.浮士德.html
!res/literature/people/1313 Boccaccio.薄伽丘/The Decameron.Boccaccio1353.十日谈.王永年.html
!res/literature/people/1809 Poe.坡/The Best of Poe.爱伦坡短篇小说集.html
!res/literature/people/1343 Chaucer.乔叟/The Canterbury Tales.Chaucer1392.坎特伯雷故事集.html
!res/literature/tales/1001 Nights/一千零一夜足译本.李唯中.html
!res/anthropology/people/1854 Frazer.弗雷泽/The Golden Bough.Frazer1990.2e.金枝.html
!res/anthropology/people/1854 Frazer.弗雷泽/The Leaves from the Golden Bough.Frazer1924.金叶_来自金枝的故事.html
!res/mythology/people/1904 Campbell.坎贝尔/The Power of Myth.Campbell1988.神话的力量_在诸神与英雄的世界中发现自我.html
!res/mythology/people/1904 Campbell.坎贝尔/The Hero with a Thousand Faces.Campbell1949.千面英雄.html
!res/literature/people/1895 Propp.普罗普/Le radici storiche dei racconti di fate.Propp1946.cn.2.html
!res/politics/totalitarianism/The Dictator's Handbook_Why Bad Behavior is Almost Always Good Politics.Mesquita2011.独裁者手册.补全版.html
!res/literature/tales/East of the Sun and West of the Moon_Old Tales from the North.Asbjørnsen1914.日之东月之西_北欧故事集.html
!res/literature/people/973 Shikibu.紫式部/源氏物語.紫式部1008.叶渭渠.html
!res/literature/people/973 Shikibu.紫式部/2002 《源氏物语》与中国文化.三浦由利子.pdf
!res/literature/gilgamesh/The Epic of Gilgamesh.吉尔伽美什史诗.拱玉书.html
!res/literature/egypt/Ancient Egyptian Book of the Dead_Prayers, Incantations, and Other Texts From the Book of the Dead.Budge2016.cn.2.html
!res/literature/egypt/古埃及亡灵书.金寿福2012.html
!res/literature/history/Story of the Worlds Literature.Macy1924.文学的故事.html
!res/literature/history/Lectures on the History of Literature.Carlyle1892.西方文学史十二讲.html
!res/literature/people/1960 Puchner.普克纳/The Written World_The Power of Stories to Shape People, History, Civilization.Puchner.2017.文字的力量.html
!res/literature/people/1483 Rabelais.拉伯雷/La vie de Gargantua et de Pantagruel.Rabelais1532.巨人传.鲍文蔚.html
!res/literature/people/1483 Rabelais.拉伯雷/La vie de Gargantua et de Pantagruel.Rabelais1532.巨人传.成钰亭.html
!res/literature/people/1547 Cervantes.塞万提斯/The Man Who Invented Fiction_How Cervantes Ushered in the Modern World.Egginton2016.发明小说的人_塞万提斯和他的时代.html
!res/literature/people/1608 Milton.弥尔顿/Paradise Lost.Milton1667.失乐园.刘捷.html
!res/literature/theory/Maps of the Imagination.Turchi2004.cn.2.html
!res/literature/theory/Literature and Cartography_Theories, Histories, Genres.Pedersen2017.cn.2.html
!res/literature/people/1547 Cervantes.塞万提斯/Don Quijote de la Mancha.Cervantes1605.堂吉诃德1.孙家孟.html
!res/literature/people/1547 Cervantes.塞万提斯/Don Quijote de la Mancha.Cervantes1605.堂吉诃德2.孙家孟.html
!res/literature/people/1622 Molière.莫里哀/莫里哀喜剧六种.html
!res/literature/people/1694 Voltaire.伏尔泰/Dictionnaire philosophique.Voltaire1764.哲学辞典.html
!res/literature/people/1694 Voltaire.伏尔泰/Voltaire.Marois1935.伏尔泰传.傅雷.html
!res/literature/people/1713 Diderot.狄德罗/Diderot and the Art of Thinking Freely.Curran2019.狄德罗与自由思考的艺术.html
!res/literature/people/1713 Diderot.狄德罗/狄德罗作品集.t8.Diderot.html
!res/literature/people/1533 Montaigne.蒙田/蒙田全集.Montaigne.html
!res/literature/people/1797 Heine.海涅/乘着歌声的翅膀_海涅诗选.Heine1816.html
!res/literature/history/西方文学十五讲.徐葆耕2012.2e.html
!res/literature/英诗经典名家名译.t23.html
!res/literature/外国文学鉴赏辞典大系/外国小说鉴赏辞典01_古代至19世纪中期卷.html
!res/literature/外国文学鉴赏辞典大系/外国小说鉴赏辞典02_19世纪下半期卷.html
!res/literature/外国文学鉴赏辞典大系/外国小说鉴赏辞典03_20世纪前期卷.html
!res/literature/外国文学鉴赏辞典大系/外国小说鉴赏辞典04_20世纪中期卷.html
!res/literature/外国文学鉴赏辞典大系/外国小说鉴赏辞典05_20世纪后期卷.html
!res/literature/外国文学鉴赏辞典大系/外国戏剧鉴赏辞典01_古代卷.html
!res/literature/外国文学鉴赏辞典大系/外国戏剧鉴赏辞典03_现当代卷.html
!res/literature/外国文学鉴赏辞典大系/外国神话史诗民间故事鉴赏辞典.html
!res/literature/外国文学鉴赏辞典大系/外国诗歌鉴赏辞典02_近代卷.html
!res/literature/外国文学鉴赏辞典大系/外国诗歌鉴赏辞典03_现当代卷.html
!res/literature/people/1768 Chateaubriand.夏多布里昂/Mémoires d'Outre-Tombe.Chateaubriand1848.墓中回忆录.郭宏安.html
!res/literature/history/A Little History of Literature.Sutherland2013.文学的40堂公开课.html
!res/literature/people/1768 Chateaubriand.夏多布里昂/Atala.René.Chateaubriand1801.阿达拉.勒内.曹德明.html
!res/literature/people/1804 Sand.桑/La Mare au Diable.François le Champi.La petite Fadette.Sand1846.魔沼.弃儿弗朗索瓦.小法岱特.html
!res/literature/people/1810 Musset.缪塞/La Confession d'un enfant du siècle.Pierre et Camille.Histoire d'un merle blanc.Musset1836.一个世纪儿的忏悔.皮埃尔和卡蜜儿.白乌鸫的故事.html
!res/literature/people/1766 Staël.斯达尔夫人/2006 斯达尔夫人文艺思想研究.管新福.html
!res/literature/people/1766 Staël.斯达尔夫人/De l'Allemagne.Staël1810.德国的文学与艺术.html
!res/literature/people/1811 Gautier.戈蒂耶/Mademoiselle du Maupin.Gautier1835.莫班小姐.html
!res/literature/people/1821 Baudelaire.波德莱尔/Charles Baudelaire.Gautier1867.回忆波德莱尔.html
!res/literature/people/1802 Hugo.雨果/雨果文集.t12.Hugo.html
!res/literature/people/1799 Pushkin.普希金/普希金文集.Pushkin.html
!res/literature/people/1804 Hawthorne.霍桑/霍桑小说全集.Hawthorne.html
!res/literature/people/1819 Whitman.惠特曼/草叶集.Whitman.html
!res/literature/people/1819 Melville.麦尔维尔/The Whale.Melville1851.白鲸.html
!res/literature/people/1803 Emerson.爱默生/Nature.Emerson1836.自然沉思录.html
!res/literature/people/1814 Lermontov.莱蒙托夫/莱蒙托夫诗选.Lermontov.html
!res/literature/people/1817 Thoreau.梭罗/Walden.Thoreau1854.瓦尔登湖.许崇信.html
!res/philosophy/people/1926 Foucault.福柯/Foucault_A Very Short Introduction.Gutting2005.福柯.html
!res/literature/people/1958 Wolfreys.沃尔弗里斯/The English Literature Companion.Wolfreys2010.cn.2.html
!res/literature/anthology/Literature_A Portable Anthology.Gardner2021.5e.cn.2.html
!res/literature/people/1910 Qzs.钱钟书/管锥编.钱钟书1993.5e.html
!res/literature/people/1910 Qzs.钱钟书/围城.钱钟书1947.html
!res/literature/people/1803 Emerson.爱默生/Ralph Waldo Emerson_Complete Works.html
!res/literature/people/1939 Yzh.杨周翰/埃涅阿斯纪.变形记.诗艺.蓝登传.亨利八世.情敌.我的国家.十七世纪英国文学.攻玉集.镜子和七巧板.The Mirror and the Jigsaw.杨周翰.html
!res/literature/history/西方文学_心灵的历史.徐葆耕2002.缩编版.html
!res/history/西方史纲50讲.李筠.html
!res/religion/bible/The Story of the Bible.Loon1923.圣经的故事.html
!res/religion/bible/Bible.圣经.和合本.html
!res/religion/bible/Bible.esv.cuv.html
!res/religion/bible/圣经新译本.html
!res/geography/Maps That Changed the World.Clark2016.改变历史的地图与制图师.html
!res/philosophy/people/1952 Gaarder.贾德/Sophies World.Gaarder1991.苏菲的世界.html
!res/philosophy/history/The Passion of the Western Mind_Understanding the Ideas That Have Shaped Our World View.Tarnas1991.西方思想史.html
!res/philosophy/people/1926 Foucault.福柯/Les Mots et les Choses_Une archéologie des sciences humaines.Foucault1966.The Order of Things_An Archaeology of Human Sciences.cn.2.html
!res/philosophy/history/哲学100问_从古希腊到黑格尔_人,诗意地栖居_后现代的刺.书杰2018.html
!res/literature/people/1457 Brant.勃兰特/Das Narrenschiff.Brant1494.愚人船.曹乃云.html
!res/ai/philosophy/The Promise of Artificial Intelligence_Reckoning and Judgment.Smith2019.测算与判断_人工智能的终极未来.html
!res/ai/philosophy/Mind Design III_Philosophy, Psychology, and Artificial Intelligence.Haugeland2023.cn.2.html
!res/philosophy/history/打开_周濂的100堂西方哲学课.周濂2019.html
!res/philosophy/history/哲学家们都干了些什么.林欣浩2015.html
!res/philosophy/people/1954 Zl.赵林/西方哲学史讲演录.赵林2021.html
!res/literature/people/1885 Lawrence.劳伦斯/Lady Chatterley's Lover.Lawrence1928.查泰莱夫人的情人.欧佩媛.html
!res/philosophy/history/Philosophy_A Historical Survey with Essential Readings.Stumpf2014.9e.西方哲学史.html
!res/philosophy/history/Philosophy_The Power of Ideas.Moore2013.9e.思想的力量.html
!res/philosophy/people/1954 Zl.赵林/基督教与西方文化.赵林2013.html
!res/philosophy/people/1948 Dxm.邓晓芒/人之镜_中西文学形象的人格结构.邓晓芒1996.html
!res/philosophy/people/1954 Zl.赵林/西方宗教文化.赵林2005.2e.html
!res/mythology/greek/Gods and Heroes of Ancient Greece.Schwab1838.希腊神话故事.html
!res/philosophy/people/1954 Zl.赵林/西学三书_写给中国人的西方文明之书.赵林2018.html
!res/philosophy/people/1956 Wdf.王德峰/哲学导论.王德峰2000.html
!res/philosophy/people/1956 Wdf.王德峰/艺术哲学.王德峰2005.html
!res/philosophy/people/1954 Zl.赵林/古希腊文明的光芒.赵林2020.html
!res/philosophy/people/1954 Zl.赵林/古罗马帝国的辉煌(1-2).赵林2023.html
!res/philosophy/people/1954 Zl.赵林/古罗马帝国的辉煌(3-4).赵林2023.html
!res/philosophy/people/1942 Solomon.所罗门/The Big Questions_A Short Introduction to Philosophy.Solomon2001.6e.大问题_简明哲学导论.html
!res/philosophy/画哲学.朱家安2018.html
!res/philosophy/Heads Up Philosophy.DK2016.cn.2.html
!res/philosophy/people/1950 Fpr.傅佩荣/西方哲学之旅_启发人生的120位哲学家.傅佩荣2020.html
!res/philosophy/people/1954 Zl.赵林/西方哲学史.赵林2014.2e.html
!res/philosophy/history/At the Existentialist Café_Freedom, Being, and Apricot Cocktails.Bakewell2016.存在主义咖啡馆_自由存在和杏子鸡尾酒.html
!res/philosophy/history/A History of Western Thought_From Ancient Greece to the Twentieth Century.Skirbekk 2001.西方哲学史.html
!res/philosophy/people/1872 Russell.罗素/A History of Western Philosophy.Russell1946.西方哲学史.html
!res/literature/people/1899 Hemingway.海明威/海明威文集.Hemingway.t18.html
!res/philosophy/打开哲学家的正确方式.畠山创2016.html
!res/economics/people/1950 Xcg.许成钢/制度基因_中国制度与极权主义制度的起源.许成钢2024.html
!res/cs/people/1945 Hofstadter.候世达/Surfaces and Essences_Analogy as the Fuel and Fire of Thinking.Hofstadter2013.表象与本质_类比,思考之源和思维之火.html
!res/philosophy/Doing Philosophy_From Common Curiosity to Logical Reasoning.Williamson2018.哲学是怎样炼成的.html
!res/philosophy/people/__428 Plato.柏拉图/欧绪弗洛篇.申辩篇.克里托篇.斐多篇.普罗塔戈拉篇.美诺篇.蒂迈欧篇.克里提亚篇.Plato.html
!res/literature/people/1910 Qzs.钱钟书/七缀集.钱锺书1993.2e.html
!res/history/people/1937 Shiono.盐野七生/希腊人的故事.Shiono2015.html
!res/history/people/1937 Shiono.盐野七生/十字军的故事.Shiono.html
!res/history/people/1937 Shiono.盐野七生/文艺复兴的故事.Shiono.html
!res/history/people/1937 Shiono.盐野七生/皇帝腓特烈二世的故事.Shiono.html
!res/history/people/1937 Shiono.盐野七生/罗马人的故事(1-8).Shiono.html
!res/history/people/1937 Shiono.盐野七生/罗马人的故事(9-15).Shiono.html
!res/history/people/1937 Shiono.盐野七生/罗马灭亡后的地中海世界.Shiono2008.html
!res/history/people/1937 Shiono.盐野七生/马基雅维利语录.Shiono1988.html
!res/history/people/1947 Jgt.金观涛/观念史研究_中国现代重要政治术语的形成.金观涛2010.html
!res/history/world/人类大历史_世界文明史上的16个转折点.2005.html
!res/history/world/人类大历史_世界文明史上的16个转折点.2005.pdf
!res/art/history/非主流艺术史.安争鸣2021.html
!res/literature/people/1908 Fl.傅雷/世界美术名作二十讲.傅雷1934.01-11.html
!res/literature/people/1908 Fl.傅雷/世界美术名作二十讲.傅雷1934.12-20.html
!res/history/people/1937 Diamond.戴蒙德/Guns, Germs, and Steel_The Fates of Human Societies.Diamond1997.枪炮,病菌与钢铁.html
!res/politics/people/1927 Huntington.亨廷顿/The Clash of Civilizations and the Remaking of World Order.Huntington1996.文明衝突與世界秩序的重建.html
!res/politics/people/1952 Fukuyama.福山/The End of History and the Last Man.Fukuyama2006.2e.歷史之終結與最後一人.html
!res/politics/people/1959 Marshall.马歇尔/Prisoners of Geography.Marshall2015.用十張地圖看懂全球政經局勢.html
!res/history/people/1976 Harari.赫拉利/人类简史.未来简史.今日简史.Harari2011.html
!res/history/people/1946 Christian.克里斯蒂安/Big History_Between Nothing and Everything.Christian2014.大历史_虚无与万物之间.html
!res/history/people/1946 Christian.克里斯蒂安/Origin Story_A Big History of Everything.Christian2018.起源的故事.html
!res/bussiness/people/1949 Dalio.达利欧/Principles for Dealing with the Changing World Order_Why Nations Succeed and Fail.Dalio2021.變化中的世界秩序.html
!res/bussiness/people/1949 Dalio.达利欧/Principles_Life and Work.Dalio2017.原則_生活和工作.html