-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBOOKS.HTML
1256 lines (1256 loc) Β· 96.7 KB
/
BOOKS.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
<h1 id="books-lists">Books <a href="https://github.com/learn-anything/curated-lists"><img src="https://img.shields.io/badge/-more%20lists-0a0a0a.svg?style=flat&colorA=0a0a0a" alt="Lists" /></a></h1>
<p>The number after the book name stands for the year in which the book was written in. All books are put in their respective category and are sorted from newest to oldest. π/π before the books show if the book is free or not.</p>
<p><em>Please read <a href="contributing.md">contribution guidelines</a> before contributing.</em></p>
<ul>
<li><a href="#algorithms">Algorithms</a></li>
<li><a href="#architecture">Architecture</a></li>
<li><a href="#art">Art</a></li>
<li><a href="#autobiography">Autobiography</a></li>
<li><a href="#awareness">Awareness</a></li>
<li><a href="#basic-income">Basic Income</a></li>
<li><a href="#biographies">Biographies</a></li>
<li><a href="#biology">Biology</a></li>
<li><a href="#business">Business</a></li>
<li><a href="#category-theory">Category theory</a></li>
<li><a href="#chemistry">Chemistry</a></li>
<li><a href="#compilers">Compilers</a></li>
<li><a href="#computational-complexity">Computational complexity</a></li>
<li><a href="#computer-graphics">Computer graphics</a></li>
<li><a href="#computer-networking">Computer networking</a></li>
<li><a href="#computer-science">Computer science</a></li>
<li><a href="#computer-systems">Computer Systems</a></li>
<li><a href="#creativity">Creativity</a></li>
<li><a href="#cybernetics">Cybernetics</a></li>
<li><a href="#cryptography">Cryptography</a></li>
<li><a href="#cryptocurrencies">Cryptocurrencies</a></li>
<li><a href="#data-science">Data Science</a></li>
<li><a href="#databases">Databases</a></li>
<li><a href="#design">Design</a></li>
<li><a href="#drugs">Drugs</a></li>
<li><a href="#economics">Economics</a></li>
<li><a href="#engineering">Engineering</a></li>
<li><a href="#environment">Environment</a></li>
<li><a href="#evolution">Evolution</a></li>
<li><a href="#fiction">Fiction</a>
<ul>
<li><a href="#adventure">Adventure</a></li>
<li><a href="#comedy">Comedy</a></li>
<li><a href="#fantasy">Fantasy</a>
<ul>
<li><a href="#fantasy-series">Fantasy series</a></li>
</ul></li>
<li><a href="#short-stories">Short Stories</a></li>
<li><a href="#thriller">Thriller</a></li>
</ul></li>
<li><a href="#film-making">Film Making</a></li>
<li><a href="#finance">Finance</a></li>
<li><a href="#fitness">Fitness</a></li>
<li><a href="#functional-programming">Functional programming</a></li>
<li><a href="#future">Future</a></li>
<li><a href="#game-development">Game Development</a></li>
<li><a href="#graphic-design">Graphic design</a></li>
<li><a href="#history">History</a>
<ul>
<li><a href="#alternative-history">Alternative history</a></li>
</ul></li>
<li><a href="#investing">Investing</a></li>
<li><a href="#kubernetes">Kubernetes</a></li>
<li><a href="#leadership">Leadership</a></li>
<li><a href="#logic">Logic</a></li>
<li><a href="#machine-learning">Machine learning</a></li>
<li><a href="#management-">Management</a></li>
<li><a href="#math">Math</a></li>
<li><a href="#memoirs">Memoirs</a></li>
<li><a href="#mindset">Mindset</a></li>
<li><a href="#minimalism">Minimalism</a></li>
<li><a href="#music-production">Music Production</a></li>
<li><a href="#neuroscience">Neuroscience</a></li>
<li><a href="#non-fiction">Non Fiction</a></li>
<li><a href="#nutrition">Nutrition</a></li>
<li><a href="#operating-systems">Operating Systems</a>
<ul>
<li><a href="#ios">iOS</a></li>
<li><a href="#linux">Linux</a></li>
<li><a href="#macos">MacOS</a></li>
</ul></li>
<li><a href="#philosophy">Philosophy</a></li>
<li><a href="#physics">Physics</a></li>
<li><a href="#poetry">Poetry</a></li>
<li><a href="#politics">Politics</a></li>
<li><a href="#programming-interviews">Programming interviews</a></li>
<li><a href="#programming-language-design">Programming language design</a></li>
<li><a href="#programming-languages">Programming languages</a>
<ul>
<li><a href="#assembly">Assembly</a></li>
<li><a href="#c">C</a></li>
<li><a href="#c-1">C++</a></li>
<li><a href="#d">D</a></li>
<li><a href="#go">Go</a></li>
<li><a href="#clojure">Clojure</a></li>
<li><a href="#haskell">Haskell</a></li>
<li><a href="#java">Java</a></li>
<li><a href="#javascript">JavaScript</a></li>
<li><a href="#kotlin">Kotlin</a></li>
<li><a href="#lisp">Lisp</a></li>
<li><a href="#ocaml">OCaml</a></li>
<li><a href="#perl">Perl</a></li>
<li><a href="#powershell">PowerShell</a></li>
<li><a href="#prolog">Prolog</a></li>
<li><a href="#purescript">Purescript</a></li>
<li><a href="#python">Python</a></li>
<li><a href="#r">R</a></li>
<li><a href="#reasonml">ReasonML</a></li>
<li><a href="#ruby">Ruby</a></li>
<li><a href="#rust">Rust</a></li>
<li><a href="#scala">Scala</a></li>
<li><a href="#smalltalk">Smalltalk</a></li>
<li><a href="#swift">Swift</a></li>
<li><a href="#typescript">TypeScript</a></li>
<li><a href="#agda">Agda</a></li>
</ul></li>
<li><a href="#programming">Programming</a></li>
<li><a href="#psychedelics">Psychedelics</a></li>
<li><a href="#psychology">Psychology</a></li>
<li><a href="#quantum-physics">Quantum physics</a></li>
<li><a href="#regular-expressions">Regular Expressions</a></li>
<li><a href="#reinforcement-learning">Reinforcement learning</a></li>
<li><a href="#reverse-engineering">Reverse engineering</a></li>
<li><a href="#science">Science</a></li>
<li><a href="#scifi">SciFi</a>
<ul>
<li><a href="#scifi-series">SciFi Series</a></li>
</ul></li>
<li><a href="#security">Security</a></li>
<li><a href="#sleep">Sleep</a></li>
<li><a href="#society">Society</a></li>
<li><a href="#spirituality">Spirituality</a></li>
<li><a href="#startups">Startups</a></li>
<li><a href="#statistics">Statistics</a></li>
<li><a href="#strategy">Strategy</a></li>
<li><a href="#text-editors">Text editors</a>
<ul>
<li><a href="#vim">Vim</a></li>
</ul></li>
<li><a href="#type-theory">Type theory</a></li>
<li><a href="#unix">Unix</a></li>
<li><a href="#version-control">Version Control</a>
<ul>
<li><a href="#git">Git</a></li>
</ul></li>
<li><a href="#visualization">Visualization</a></li>
<li><a href="#writing">Writing</a></li>
<li><a href="#web-development">Web Development</a>
<ul>
<li><a href="#css">CSS</a></li>
<li><a href="#node">Node</a></li>
<li><a href="#react">React</a></li>
<li><a href="#redux">Redux</a></li>
<li><a href="#webpack">Webpack</a></li>
<li><a href="#web-design">Web design</a></li>
</ul></li>
<li><a href="#other">Other</a></li>
</ul>
<h2 id="algorithms">Algorithms</h2>
<ul>
<li><a href="https://mimoza.marmara.edu.tr/~msakalli/cse706_12/SkienaTheAlgorithmDesignManual.pdf">π Algorithm design manual (1987)</a></li>
<li><a href="https://www.goodreads.com/book/show/108986.Introduction_to_Algorithms">π Introduction to algorithms (1990)</a></li>
<li><a href="https://www.goodreads.com/book/show/145055.Algorithm_Design">π Algorithm design (2005)</a></li>
<li><a href="http://algorithmics.lsi.upc.edu/docs/Dasgupta-Papadimitriou-Vazirani.pdf">π Algorithms by Dasgupta (2006)</a></li>
<li><a href="http://jeffe.cs.illinois.edu/teaching/algorithms/">π Algorithms etc by Jeff Erickson (2015)</a></li>
<li><a href="http://www.parallel-algorithms-book.com/">π Algorithm design: parallel and sequential</a></li>
<li><a href="https://www.goodreads.com/book/show/47316716-algorithms-and-data-structures-in-action">π Advanced Algorithms and Data Structures in Action (2019)</a></li>
<li><a href="https://www.manning.com/books/algorithms-and-data-structures-for-massive-datasets">π Algorithms and Data Structures for Massive Datasets (2021)</a></li>
</ul>
<h2 id="architecture">Architecture</h2>
<ul>
<li><a href="https://www.amazon.com/Underdome-Guide-Energy-Reform/dp/1616893974">π The Underdome Guide to Energy Reform (2015)</a></li>
</ul>
<h2 id="art">Art</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/627206.The_New_Drawing_on_the_Right_Side_of_the_Brain">π Drawing on the right side of the brain (1979)</a></li>
</ul>
<h2 id="autobiography">Autobiography</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/13214.I_Know_Why_the_Caged_Bird_Sings">π I know why the caged bird sings (1993)</a></li>
<li><a href="https://www.goodreads.com/book/show/30835567-hit-refresh">π Hit Refresh (2017)</a></li>
<li><a href="https://www.goodreads.com/book/show/38746485-becoming">π Becoming (2018)</a></li>
</ul>
<h2 id="awareness">Awareness</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/8696.Last_Chance_to_See">π Last chance to see</a></li>
</ul>
<h2 id="basic-income">Basic Income</h2>
<ul>
<li><a href="http://worldaftercapital.org/">π World After Capital (2018)</a></li>
</ul>
<h2 id="biographies">Biographies</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/92057.The_Autobiography_of_Malcolm_X">π The autobiography of Malcolm X (1965)</a></li>
<li><a href="https://www.goodreads.com/book/show/22175392-napoleon-bonaparte-an-intimate-biography?rating=1">π Napoleon bonaparte: an intimate biography (1971)</a></li>
<li><a href="https://www.goodreads.com/book/show/1111.The_Power_Broker">π The power broker (1974)</a></li>
<li><a href="https://www.goodreads.com/book/show/5544.Surely_You_re_Joking_Mr_Feynman_">π Surely youβre joking Mr Feynman (1984)</a></li>
<li><a href="https://www.goodreads.com/book/show/106139.The_Man_Who_Knew_Infinity">π The man who knew infinity: a life of the genius Ramanujan (1991)</a></li>
<li><a href="https://www.goodreads.com/book/show/30594.Speak_Memory">π Speak, memory (1951)</a></li>
<li><a href="https://www.goodreads.com/book/show/341166.Madame_Curie">π Madame curie: a biography (2001)</a></li>
<li><a href="https://www.goodreads.com/book/show/10883.Benjamin_Franklin">π Benjamin franklin: an american life (2004)</a></li>
<li><a href="https://www.goodreads.com/book/show/2199.Team_of_Rivals">π Team of rivals: the political genius of Abraham Lincoln (2005)</a></li>
<li><a href="https://www.goodreads.com/book/show/10884.Einstein">π Einstein: his life and universe (2007)</a></li>
<li><a href="https://www.goodreads.com/book/show/6629359-the-strangest-man">π The strangest man (2009)</a></li>
<li><a href="https://www.goodreads.com/book/show/11084145-steve-jobs">π Steve Jobs (2011)</a></li>
<li><a href="https://www.goodreads.com/book/show/17660462-the-everything-store">π The Everything Store: Jeff Bezos and the Age of Amazon (2013)</a></li>
<li><a href="https://www.goodreads.com/book/show/22543496-elon-musk">π Elon Musk: tesla, spacex, and the quest for a fantastic future (2015)</a></li>
<li><a href="https://www.goodreads.com/book/show/29906336-trump-revealed">π Trump revealed: the definitive biography of the 45th president (2017)</a></li>
<li><a href="https://www.goodreads.com/book/show/18371021-my-journey">π My Journey: Transforming Dreams into Actions by A.P.J Abdul Kalam</a></li>
</ul>
<h2 id="biology">Biology</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/13400.Molecular_Biology_of_the_Cell">π Molecular Biology of the Cell (1983)</a></li>
<li><a href="https://www.goodreads.com/book/show/380577.Rang_Dale_s_Pharmacology">π Rang & Daleβs Pharmacology (1987)</a></li>
</ul>
<h2 id="business">Business</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/48019.The_Effective_Executive">π The effective executive (1967)</a></li>
<li><a href="https://www.goodreads.com/book/show/18176747-the-hard-thing-about-hard-things">π The hard things about hard things (2014)</a></li>
<li><a href="https://www.goodreads.com/book/show/16158498-give-and-take">π Give and take: why helping others drives our success (2014)</a></li>
<li><a href="https://www.goodreads.com/book/show/39165640-make">π MAKE: Bootstrapperβs Handbook (2018)</a></li>
<li><a href="https://www.goodreads.com/book/show/10127019-the-lean-startup">π The Lean Startup (2011)</a></li>
</ul>
<h2 id="category-theory">Category theory</h2>
<ul>
<li><a href="https://github.com/hmemcpy/milewski-ctfp-pdf">π Category Theory for Programmers (2018)</a></li>
<li><a href="https://arxiv.org/pdf/1612.09375.pdf">π Basic Category Theory (2016)</a></li>
<li><a href="http://www.math.jhu.edu/~eriehl/context.pdf">π Category Theory in Context (2016)</a></li>
<li><a href="http://angg.twu.net/MINICATS/awodey__category_theory.pdf">π Category Theory (2006)</a></li>
</ul>
<h2 id="chemistry">Chemistry</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/237496.Modern_Quantum_Chemistry">π Modern quantum chemistry: introduction to advanced electronic structure theory (1982)</a></li>
<li><a href="https://www.goodreads.com/book/show/271921.Tihkal">π Tryptamines i have known and loved: the chemistry continues (1997)</a></li>
<li><a href="https://www.goodreads.com/book/show/20613641-drugs-unlimited">π Drugs 2.0: the web revolution thatβs changing how the world gets high (2013)</a></li>
</ul>
<h2 id="compilers">Compilers</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/703102.Compilers">π Compilers: Principles, Techniques, and Tools (1986)</a></li>
<li><a href="http://www.ethoberon.ethz.ch/WirthPubl/CBEAll.pdf">π Compiler Construction by Niklaus Wirth (1996)</a></li>
<li><a href="https://www.goodreads.com/book/show/258558.Modern_Compiler_Implementation_in_ML">π Modern Compiler Implementation in ML (1997)</a></li>
<li><a href="https://www.goodreads.com/book/show/887908.Advanced_Compiler_Design_and_Implementation">π Advanced Compiler Design and Implementation (1997)</a></li>
</ul>
<h2 id="computational-complexity">Computational complexity</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/138562.Computational_Complexity">π Computational Complexity (1993)</a></li>
<li><a href="http://theory.cs.princeton.edu/complexity/book.pdf">π Computational Complexity: A Modern Approach (2007)</a></li>
<li><a href="https://www.goodreads.com/book/show/3043127-the-nature-of-computation">π The Nature of Computation (2011)</a></li>
</ul>
<h2 id="computer-graphics">Computer graphics</h2>
<ul>
<li><a href="http://thebookofshaders.com">π The book of shaders (2017)</a></li>
<li><a href="https://www.gabrielgambetta.com/computer-graphics-from-scratch/index.html">π Computer Graphics from Scratch</a></li>
</ul>
<h2 id="computer-networking">Computer networking</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/688363.TCP_IP_Network_Administration">π TCP/IP network administration (1992)</a></li>
<li><a href="https://www.goodreads.com/book/show/505560.The_Protocols">π Tcp/IP illustrated (1993)</a></li>
<li><a href="https://www.goodreads.com/book/show/320321.Interconnections">π Interconnections: bridges, routers, switches, and internetworking protocols (1999)</a></li>
<li><a href="https://www.goodreads.com/book/show/83847.Computer_Networking">π Computer networking: a top-down approach (2000)</a></li>
<li><a href="https://www.goodreads.com/book/show/239240.UNIX_Network_Programming_Volume_1">π Unix network programming, volume 1: the sockets networking api (2003)</a></li>
<li><a href="https://www.goodreads.com/book/show/505564.The_TCP_IP_Guide">π TCP/IP guide (2005)</a></li>
<li><a href="https://book.systemsapproach.org/">π Computer Networks: A Systems Approach (2012)</a></li>
<li><a href="https://hpbn.co/">π High performance browser networking (2013)</a></li>
<li><a href="https://www.feistyduck.com/library/openssl%2dcookbook/online/">π Openssl cookbook (2015)</a></li>
<li><a href="http://beej.us/guide/bgnet/">π Beejβs guide to network programming (2016)</a></li>
<li><a href="https://www.distributed-systems.net/index.php/books/ds3/">π Distributed Systems 3rd edition (2017)</a></li>
<li><a href="http://intronetworks.cs.luc.edu/current/html/">π An introduction to computer networks</a></li>
</ul>
<h2 id="computer-science">Computer science</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/964709.The_New_Turing_Omnibus">π The new Turing Omnibus (1989)</a></li>
<li><a href="https://www.cs.cmu.edu/~rwh/theses/okasaki.pdf">π Purely functional data structures (1996)</a></li>
<li><a href="https://www.goodreads.com/book/show/400716.Introduction_to_the_Theory_of_Computation">π Introduction to the theory of computation (1996)</a>
<ul>
<li><a href="https://github.com/ryandougherty/Introduction-to-the-Theory-of-Computation-Solutions">Solutions</a></li>
</ul></li>
<li><a href="https://www.goodreads.com/book/show/4715024-gems-of-theoretical-computer-science">π Gems of Theoretical Computer Science (1998)</a></li>
<li><a href="https://www.cis.upenn.edu/%7Ebcpierce/tapl/">π Types and programming languages (2002)</a></li>
<li><a href="https://www.cis.upenn.edu/%7Ebcpierce/attapl/">π Advanced topics in types and programming languages (2004)</a></li>
<li><a href="https://www.goodreads.com/book/show/910789.The_Elements_of_Computing_Systems">π The elements of computing systems (2005)</a>
<ul>
<li><a href="https://github.com/havivha/Nand2Tetris">Computer implementation</a></li>
</ul></li>
<li><a href="https://www.goodreads.com/book/show/2333956.The_Annotated_Turing">π Annotated turing (2008)</a></li>
<li><a href="http://www.nature-of-computation.org/">π The nature of computation (2011)</a></li>
<li><a href="https://softwarefoundations.cis.upenn.edu/current/index.html">π Software foundations (2011)</a></li>
<li><a href="https://github.com/gabrieldiego/tg/blob/master/ref/Introduction%20to%20Data%20Compression%20(4th%20Edition).pdf">π Introduction to data compression (2012)</a></li>
</ul>
<h2 id="computer-systems">Computer Systems</h2>
<ul>
<li><a href="https://www.nasa.gov/sites/default/files/atoms/files/nasa_systems_engineering_handbook.pdf">π NASA System Engineering (2007)</a></li>
<li><a href="http://book.mixu.net/distsys/">π Distributed systems (2013)</a></li>
<li><a href="https://www.goodreads.com/book/show/583766.An_Introduction_to_General_Systems_Thinking">π General Systems Thinking (2015)</a></li>
<li><a href="https://www.goodreads.com/book/show/829182.Computer_Systems">π Computer systems: a programmerβs perspective</a></li>
</ul>
<h2 id="creativity">Creativity</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/18077903-creativity-inc">π Creativity, inc (2014)</a></li>
</ul>
<h2 id="cybernetics">Cybernetics</h2>
<ul>
<li><a href="https://www.amazon.com/Human-Use-Beings-Cybernetics-Society/dp/0306803208">π The human use of human beings (2015)</a></li>
<li><a href="https://www.goodreads.com/book/show/18077903-creativity-inc">π Techniques of the observer : on vision and modernity in the nineteenthβ¦ (1990)</a></li>
</ul>
<h2 id="cryptography">Cryptography</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/17994.The_Code_Book">π The code book (1999)</a></li>
<li><a href="https://www.cs.auckland.ac.nz/~pgut001/pubs/book.pdf">π Engineering security (2014)</a></li>
<li><a href="https://crypto.stanford.edu/~dabo/cryptobook/draft_0_3.pdf">π Graduate course in applied cryptography (2016)</a></li>
<li><a href="https://cryptobook.nakov.com/?q=">π Practical Cryptography for Developers (2018)</a></li>
<li><a href="https://www.manning.com/books/real-world-cryptography">π Real World Cryptography</a></li>
</ul>
<h2 id="cryptocurrencies">Cryptocurrencies</h2>
<ul>
<li><a href="https://github.com/ethereumbook/ethereumbook">π Mastering Ethereum (2018)</a></li>
</ul>
<h2 id="data-science">Data Science</h2>
<ul>
<li><a href="http://shop.oreilly.com/product/0636920032175.do">π Designing Data-Intensive Applications (2014)</a></li>
<li><a href="https://www.manning.com/books/fighting-churn-with-data">π Fighting Churn With Data (2020)</a></li>
<li><a href="https://www.manning.com/books/data-science-bookcamp">π Data Science Bookcamp (2021)</a></li>
<li><a href="https://www.manning.com/books/effective-data-science-infrastructure">π Effective Data Science Infrastructure (2021)</a></li>
</ul>
<h2 id="databases">Databases</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/748203.The_Data_Warehouse_Toolkit">π The data warehouse toolkit (1996)</a></li>
</ul>
<h2 id="design">Design</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/41597.The_Non_Designer_s_Design_Book">π The non-designerβs design book (1994)</a></li>
<li><a href="https://www.goodreads.com/book/show/5982641-design-meets-disability">π Design meets disability (2009)</a></li>
<li><a href="https://www.goodreads.com/book/show/840.The_Design_of_Everyday_Things">π The design of everyday things</a></li>
<li><a href="https://www.goodreads.com/book/show/22758923-the-best-interface-is-no-interface">π The best interface is no interface: the simple path to brilliant technology</a></li>
<li><a href="https://shapeofdesignbook.com">π The Shape of Design</a></li>
<li><a href="https://www.amazon.com/Alien-Phenomenology-What-Thing-Posthumanities/dp/0816678987">π Alien Phenomenology or what its like to be a thing (2012)</a></li>
<li><a href="http://www.nointerface.com/book/">π The Best Interface Is No Interface: The Simple Path to Brilliant Technology</a></li>
<li><a href="https://www.amazon.com/Speculative-Everything-Design-Fiction-Dreaming/dp/0262019841">π Speculative Everything (2013)</a></li>
</ul>
<h2 id="drugs">Drugs</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/1134902.A_Primer_of_Drug_Action">π A Primer of Drug Action (1975)</a></li>
<li><a href="https://www.goodreads.com/book/show/17847528-drugged">π Drugged: The Science and Culture Behind Psychotropic Drugs (2013)</a></li>
<li><a href="https://www.goodreads.com/book/show/6777669-pleasures-of-the-brain">π Pleasures of the Brain (2009)</a></li>
</ul>
<h2 id="economics">Economics</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/325785.Capital_Vol_1">π Capital (1867)</a></li>
<li><a href="http://davidharvey.org/reading-capital/">π Reading capital</a></li>
<li><a href="https://kapitalism101.wordpress.com/">π Kapitalism 101</a></li>
<li><a href="https://www.goodreads.com/book/show/179609.Imperialism">π Imperialism, the highest stage of capitalism (1917)</a></li>
<li><a href="https://www.goodreads.com/book/show/82120.The_Worldly_Philosophers">π The worldly philosophers (1953)</a></li>
<li><a href="https://www.goodreads.com/book/show/1753460.Principles_of_Economics">π Principles of economics (1997)</a></li>
<li><a href="https://www.goodreads.com/book/show/390475.Introductory_Econometrics">π Introductory Econometrics: A Modern Approach (1999)</a></li>
<li><a href="https://www.goodreads.com/book/show/5986495-microeconomics-and-behavior">π Microeconomics and behaviour (2000)</a></li>
<li><a href="https://www.goodreads.com/book/show/6617037-debt">π Debt: first 5000 years (2011)</a></li>
<li><a href="https://www.goodreads.com/book/show/16144575-how-asia-works">π How asia works: success and failure in the worldβs most dynamic region (2013)</a></li>
<li><a href="https://www.goodreads.com/book/show/18736925-capital-in-the-twenty-first-century">π Capital in the twenty first century (2013)</a></li>
<li><a href="https://www.goodreads.com/book/show/20613671-economics">π Economics: the userβs guide (2014)</a></li>
</ul>
<h2 id="engineering">Engineering</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/245344.Structures">π Structures: or why things donβt fall down (1978)</a></li>
</ul>
<h2 id="evolution">Evolution</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/61535.The_Selfish_Gene">π The selfish gene (1976)</a></li>
<li><a href="https://www.goodreads.com/book/show/2068.Darwin_s_Dangerous_Idea">π Darwinβs dangerous idea (1995)</a></li>
<li><a href="https://www.goodreads.com/book/show/6429264-life-ascending">π Life ascending: the ten great inventions of evolution (2009)</a></li>
</ul>
<h2 id="environment">Environment</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/24298924-natural-capitalism">π Natural Capitalism (2001)</a></li>
<li><a href="https://www.goodreads.com/book/show/12742309-reinventing-fire">π Reinventing Fire (2013)</a></li>
<li><a href="https://www.drawdown.org/">π Drawdown: The Most Comprehensive Plan Ever Proposed to Reverse Global Warming (2017)</a></li>
<li><a href="https://www.amazon.com/Whole-Earth-Discipline-Ecopragmatist-Manifesto/dp/0670021210">π Whole Earth Discipline (2009)</a></li>
</ul>
<h2 id="fiction">Fiction</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/17876.Notes_from_Underground_White_Nights_The_Dream_of_a_Ridiculous_Man_and_Selections_from_The_House_of_the_Dead">π Notes from underground (1864)</a></li>
<li><a href="https://www.goodreads.com/book/show/7144.Crime_and_Punishment">π Crime and punishment (1866)</a></li>
<li><a href="https://www.goodreads.com/book/show/12505.The_Idiot">π The idiot (1869)</a></li>
<li><a href="https://www.goodreads.com/book/show/4934.The_Brothers_Karamazov">π The brothers karamazov (1880)</a></li>
<li><a href="https://www.goodreads.com/book/show/433567.Flatland">π Flatland (1884)</a></li>
<li><a href="https://www.goodreads.com/book/show/5297.The_Picture_of_Dorian_Gray">π The picture of dorian gray (1890)</a></li>
<li><a href="https://www.goodreads.com/book/show/286957.The_Yellow_Wall_Paper">π The yellow wallpaper (1892)</a></li>
<li><a href="https://www.goodreads.com/book/show/929783.The_Iron_Heel">π The iron heel (1908)</a></li>
<li><a href="https://www.goodreads.com/book/show/921359.The_Ragged_Trousered_Philanthropists">π The ragged trousered philanthropists (1914)</a></li>
<li><a href="https://www.goodreads.com/book/show/76171.We">π We (1924)</a></li>
<li><a href="https://www.goodreads.com/book/show/113205.Heart_of_a_Dog">π Heart of a dog (1925)</a></li>
<li><a href="https://www.goodreads.com/book/show/4671.The_Great_Gatsby">π The great gatsby (1925)</a></li>
<li><a href="https://www.goodreads.com/book/show/5129.Brave_New_World">π Brave new world (1932)</a></li>
<li><a href="https://www.goodreads.com/book/show/16634.The_Glass_Bead_Game">π The glass bead game (1943)</a></li>
<li><a href="https://www.goodreads.com/book/show/7613.Animal_Farm">π Animal farm (1945)</a></li>
<li><a href="https://www.goodreads.com/book/show/11989.The_Plague">π The plague (1947)</a></li>
<li><a href="http://en.wikipedia.org/wiki/No_Longer_Human">π No longer human (1948)</a></li>
<li><a href="https://www.goodreads.com/book/show/5470.1984">π Nineteen eighty-four (1949)</a></li>
<li><a href="https://www.goodreads.com/book/show/11990.The_Rebel">π Bel: An essay on man in revolt (1951)</a></li>
<li><a href="https://www.goodreads.com/book/show/4406.East_of_Eden">π East of eden (1952)</a></li>
<li><a href="https://www.goodreads.com/book/show/17470674-fahrenheit-451">π Fahrenheit 451 (1953)</a></li>
<li><a href="https://www.goodreads.com/book/show/3188964-the-doors-of-perception">π The doors of perception (1954)</a> - Details Aldous Huxleyβs own experiences when taking mescaline.</li>
<li><a href="https://www.goodreads.com/book/show/7604.Lolita">π Lolita (1955)</a></li>
<li><a href="https://www.goodreads.com/book/show/662.Atlas_Shrugged?ac=1&from_search=true&qid=SF9r0WrtNA&rank=1">π Atlas Shrugged (1957)</a></li>
<li><a href="https://www.goodreads.com/book/show/130440.Doctor_Zhivago">π Doctor zhivago (1957)</a></li>
<li><a href="https://my.mindnode.com/HnYCLfb3q3xZCVswbafBfoMeDKngVCT1jaa8vYyh">π Flowers for algernon (1959)</a></li>
<li><a href="https://www.goodreads.com/book/show/168668.Catch_22">π Catch-22 (1961)</a></li>
<li><a href="https://www.goodreads.com/book/show/7805.Pale_Fire">π Pale fire (1962)</a></li>
<li><a href="https://www.goodreads.com/book/show/5130.Island">π Island (1962)</a></li>
<li><a href="https://www.goodreads.com/book/show/89724.We_Have_Always_Lived_in_the_Castle">π We have always lived in the castle (1962)</a></li>
<li><a href="https://www.goodreads.com/book/show/17125.One_Day_in_the_Life_of_Ivan_Denisovich">π One day in the life of ivan denisovich (1962)</a></li>
<li><a href="https://www.goodreads.com/review/show/742548546">π Monday begins on saturday (1964)</a></li>
<li><a href="https://www.goodreads.com/book/show/234225.Dune">π Dune (1965)</a></li>
<li><a href="https://www.goodreads.com/book/show/166997.Stoner">π Stoner (1965)</a></li>
<li><a href="https://www.goodreads.com/book/show/117833.The_Master_and_Margarita">π Master and margarita (1967)</a></li>
<li><a href="https://www.goodreads.com/book/show/320.One_Hundred_Years_of_Solitude">π One hundred years of solitude (1967)</a></li>
<li><a href="https://www.goodreads.com/book/show/4981.Slaughterhouse_Five">π Slaughterhouse five (1969)</a></li>
<li><a href="https://www.goodreads.com/book/show/331256.Roadside_Picnic">π Roadside picnic (1972)</a></li>
<li><a href="https://www.goodreads.com/book/show/89231.Augustus">π Augustus (1972)</a></li>
<li><a href="https://www.goodreads.com/book/show/21611.The_Forever_War">π The forever war (1974)</a></li>
<li><a href="https://www.goodreads.com/book/show/11588.The_Shining">π The shining (1977)</a></li>
<li><a href="https://www.goodreads.com/series/40957-hitchhiker-s-guide-to-the-galaxy">π 1978: hitchhikers guide to the galaxy</a></li>
<li><a href="https://www.goodreads.com/book/show/7090.The_Soul_of_a_New_Machine">π The soul of new machine (1981)</a></li>
<li><a href="https://www.goodreads.com/book/show/567678.The_Wasp_Factory">π The wasp factory (1984)</a></li>
<li><a href="https://www.goodreads.com/book/show/394535.Blood_Meridian_or_the_Evening_Redness_in_the_West">π Blood meridian (1985)</a></li>
<li><a href="https://www.goodreads.com/book/show/23807.The_Silence_of_the_Lambs">π The silence of the lambs (1988)</a></li>
<li><a href="https://www.goodreads.com/book/show/13872.Geek_Love">π Geek love (1989)</a></li>
<li><a href="https://www.goodreads.com/book/show/28921.The_Remains_of_the_Day">π The remains of the day (1989)</a></li>
<li><a href="https://www.goodreads.com/book/show/214579.The_Story_of_B">π The story of B: an adventure of the mind and spirit (1996)</a></li>
<li><a href="https://www.goodreads.com/book/show/6759.Infinite_Jest">π Infinite jest (1996)</a></li>
<li><a href="https://www.goodreads.com/book/show/22628.The_Perks_of_Being_a_Wallflower">π The perks of being a wallflower (1999)</a></li>
<li><a href="https://www.goodreads.com/book/show/816.Cryptonomicon">π Cryptonomicon (1999)</a></li>
<li><a href="https://www.goodreads.com/book/show/24800.House_of_Leaves">π House of leaves (2000)</a></li>
<li><a href="https://www.goodreads.com/book/show/138805.The_Bug">π The Bug (2003)</a></li>
<li><a href="https://www.goodreads.com/book/show/6288.The_Road">π The road (2006)</a></li>
<li><a href="http://localroger.com/prime-intellect/mopiidx.html">π The metamorphosis of prime intellect (2007)</a></li>
<li><a href="https://www.goodreads.com/series/53226-the-passage">π The passage (2010)</a></li>
<li><a href="http://www.hpmor.com/wordpress/wp-content/uploads/2012/03/Harry-Potter-and-the-Methods-of-Rationality.pdf">π Harry potter and the methods of rationality (2015)</a></li>
<li><a href="http://unsongbook.com/">π Unsong (2017)</a></li>
</ul>
<h3 id="adventure">Adventure</h3>
<ul>
<li><a href="https://www.goodreads.com/book/show/7126.The_Count_of_Monte_Cristo">π The count of monte cristo (1844)</a></li>
</ul>
<h3 id="comedy">Comedy</h3>
<ul>
<li><a href="https://www.goodreads.com/book/show/310612.A_Confederacy_of_Dunces">π A confederacy of dunces (1980)</a></li>
</ul>
<h3 id="fantasy">Fantasy</h3>
<ul>
<li><a href="https://www.goodreads.com/book/show/149267.The_Stand">π The stand (1978)</a></li>
<li><a href="https://www.goodreads.com/book/show/30165203-american-gods">π American gods (2001)</a></li>
<li><a href="https://www.goodreads.com/book/show/9361589-the-night-circus">π The night circus (2011)</a></li>
</ul>
<h4 id="fantasy-series">Fantasy series</h4>
<ul>
<li><a href="https://www.goodreads.com/series/43790-a-song-of-ice-and-fire">π A song of ice and fire</a></li>
<li><a href="https://www.goodreads.com/series/49075-the-stormlight-archive">π The stormlight archive</a></li>
<li><a href="https://www.goodreads.com/series/41526-the-wheel-of-time">π The wheel of time</a></li>
</ul>
<h3 id="short-stories">Short Stories</h3>
<ul>
<li><a href="https://www.holloway.com/g/alice-in-wonderland">π Alice in Wonderland (1865)</a></li>
<li><a href="https://www.goodreads.com/book/show/426504.Ficciones">π Ficciones (1941-1956)</a></li>
<li><a href="https://www.goodreads.com/book/show/157993.The_Little_Prince">π The little prince (1943)</a></li>
<li><a href="https://www.goodreads.com/book/show/4808763-the-last-question">π The last question (1956)</a></li>
<li><a href="https://www.goodreads.com/book/show/22904.The_Complete_Stories">π Franz kafka: the complete stories (1971)</a></li>
<li><a href="https://www.goodreads.com/book/show/7234685-understand">π Understand (1991)</a></li>
<li><a href="https://www.goodreads.com/book/show/223380.Stories_of_Your_Life_and_Others">π Story of your life (1998)</a></li>
<li><a href="http://www.nickbostrom.com/fable/dragon.html">π The fable of the dragon-tyrant (2005)</a></li>
</ul>
<h3 id="thriller">Thriller</h3>
<ul>
<li><a href="https://www.goodreads.com/book/show/16299.And_Then_There_Were_None">π And then there were none (1939)</a></li>
</ul>
<h2 id="film-making">Film Making</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/875419.On_Filmmaking">π On film making: an introduction to the craft of the director (2005)</a></li>
</ul>
<h2 id="finance">Finance</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/1052.The_Richest_Man_in_Babylon">π The richest man in babylon (1926)</a></li>
<li><a href="https://www.goodreads.com/book/show/69571.Rich_Dad_Poor_Dad">π Rich dad poor dad (1997)</a></li>
</ul>
<h2 id="fitness">Fitness</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/2098799.Starting_Strength">π Starting strength: basic barbell training (2005)</a></li>
</ul>
<h2 id="functional-programming">Functional programming</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/8693802-pearls-of-functional-algorithm-design">π Pearls of Functional Algorithm Design (2010)</a></li>
<li><a href="https://drboolean.gitbooks.io/mostly-adequate-guide-old/content/">π Mostly adequate guide to FP (in JavaScript)</a></li>
</ul>
<h2 id="future">Future</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/23316526-the-second-machine-age">π The second machine age (2014)</a></li>
</ul>
<h2 id="game-development">Game Development</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/2042298.Tricks_of_the_3D_Game_Programming_Gurus">π Tricks of the 3D game programming gurus-advanced 3D graphics and rasterisation (2003)</a></li>
<li><a href="https://www.gameenginebook.com/">π Game Engine Architecture Book (2018)</a></li>
<li><a href="http://gameprogrammingpatterns.com/">π Game programming patterns</a></li>
</ul>
<h2 id="graphic-design">Graphic design</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/44735.The_Elements_of_Typographic_Style">π The elements of typographic style (1992)</a></li>
<li><a href="https://www.goodreads.com/book/show/6728983-logo-design-love">π Logo design love (2015)</a></li>
</ul>
<h2 id="history">History</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/318742.The_Souls_of_Black_Folk">π The souls of black folk (1903)</a></li>
<li><a href="https://www.goodreads.com/book/show/415.Gravity_s_Rainbow">π Gravityβs rainbow (1973)</a></li>
<li><a href="https://www.goodreads.com/book/show/70561.The_Gulag_Archipelago_1918_1956">π The gulag archipelago (1973)</a></li>
<li><a href="https://www.goodreads.com/book/show/43365.American_Slavery_American_Freedom">π American slavery, american freedom (1975)</a></li>
<li><a href="https://www.goodreads.com/book/show/2767.A_People_s_History_of_the_United_States">π A peopleβs history of the united states (1980)</a></li>
<li><a href="https://www.goodreads.com/book/show/56829.Hackers">π Hackers: Heroes of the Computer Revolution (1984)</a></li>
<li><a href="https://www.goodreads.com/book/show/16884.The_Making_of_the_Atomic_Bomb">π The making of atomic bomb (1986)</a></li>
<li><a href="https://www.goodreads.com/book/show/113206.Lenin_s_Tomb">π Leninβs tomb: the last days of the soviet empire (1993)</a></li>
<li><a href="https://www.goodreads.com/book/show/831378.Why_the_Allies_Won">π Why the allies won (1995)</a></li>
<li><a href="https://www.goodreads.com/book/show/296662.Lies_My_Teacher_Told_Me">π Lies my teacher told me (1995)</a></li>
<li><a href="https://www.goodreads.com/book/show/1842.Guns_Germs_and_Steel">π Guns, germs, and steel: the fates of human societies (1997)</a></li>
<li><a href="https://www.goodreads.com/book/show/28008677-200-years-together-two-hundred-years-together?rating=2">π Two hundred years together (2002)</a></li>
<li><a href="https://www.goodreads.com/book/show/222146.Masters_of_Doom">π Masters of doom (2003)</a></li>
<li><a href="https://www.goodreads.com/book/show/282108.Stalin">π Stalin: the court of the red tsar (2003)</a></li>
<li><a href="https://www.goodreads.com/book/show/3761596-the-third-reich-at-war">The Third Reich trilogy (2003-2008)</a>
<ul>
<li><a href="https://www.goodreads.com/book/show/319473.The_Coming_of_the_Third_Reich">π The coming of the third reich</a></li>
<li><a href="https://www.goodreads.com/book/show/536788.The_Third_Reich_in_Power">π The third reich in power</a></li>
<li><a href="https://www.goodreads.com/book/show/3761596-the-third-reich-at-war">π The third reich at war</a></li>
</ul></li>
<li><a href="https://www.goodreads.com/book/show/23692271-sapiens">π Sapiens: a brief history of humankind (2011)</a></li>
<li><a href="https://www.goodreads.com/book/show/9704856-the-origins-of-political-order">π The origins of political order (2011)</a></li>
<li><a href="https://www.goodreads.com/book/show/11797471-the-idea-factory">π The idea factory: bell labs and the great age of american innovation (2012)</a></li>
<li><a href="https://www.goodreads.com/book/show/17867988">π Memory Machines: The Evolution of Hypertext (2013)</a></li>
<li><a href="https://www.goodreads.com/book/show/17910054-the-sixth-extinction">π The sixth extinction: an unnatural history (2014)</a></li>
<li><a href="https://www.goodreads.com/book/show/20575435-political-order-and-political-decay">π Political order and political decay (2014)</a></li>
<li><a href="https://www.goodreads.com/book/show/25255039-conquerors">π Conquerors: how portugal forged the first global empire (2015)</a></li>
<li><a href="https://www.goodreads.com/book/show/31138556-homo-deus">π Homo deus: a brief history of tomorrow (2015)</a></li>
<li><a href="https://www.goodreads.com/book/show/25362826-beyond-germs">π Beyond Germs: Native Depopulation in North America (2015)</a></li>
</ul>
<h3 id="alternative-history">Alternative history</h3>
<ul>
<li><a href="https://www.goodreads.com/book/show/216363.The_Man_in_the_High_Castle">π The man in the high castle (1962)</a></li>
</ul>
<h2 id="investing">Investing</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/106835.The_Intelligent_Investor">π The intelligent investor (1949)</a></li>
</ul>
<h2 id="kubernetes">Kubernetes</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/26759355-kubernetes">π Kubernetes: Up & Running (2016)</a></li>
<li><a href="https://www.manning.com/books/getting-started-with-kubernetes">π Getting Started with Kubernetes (2020 early-access)</a></li>
<li><a href="https://www.manning.com/books/securing-kubernetes-secrets">π Securing Kubernetes Secrets (2021 early-access)</a></li>
<li><a href="https://www.manning.com/books/kubeflow-in-action">π Kubeflow in Action (2021 early-access)</a></li>
<li><a href="https://www.manning.com/books/kubernetes-on-windows">π Kubernetes on Windows (2021 early-access)</a></li>
<li><a href="https://www.manning.com/books/learn-kubernetes-in-a-month-of-lunches">π Learn Kubernetes in a Month of Lunches (2021 early-access)</a></li>
</ul>
<h2 id="leadership">Leadership</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/21343.The_Five_Dysfunctions_of_a_Team">π The Five Dysfunctions of a Team: A Leadership Fable (2002)</a></li>
</ul>
<h2 id="logic">Logic</h2>
<ul>
<li><a href="http://www.cse.chalmers.se/research/group/logic/TypesSS05/Extra/geuvers.pdf">π Introduction to Lambda Calculus (2000)</a></li>
<li><a href="https://fldit-www.cs.uni-dortmund.de/~peter/PS07/HR.pdf">π The Haskell road to logic, math and programming (2004)</a></li>
<li><a href="https://www.scribd.com/document/98921232/Bertrand-Russell-Logicomix">π Logicomix (2008)</a></li>
<li><a href="http://people.ds.cam.ac.uk/tecb2/forallx.shtml">forallx: Cambridge (2017)</a> - Covers both truth-functional logic and first-order logic, introducing students to semantics and to a Fitch-style natural deduction system.</li>
</ul>
<h2 id="machine-learning">Machine learning</h2>
<ul>
<li><a href="http://norvig.com/paip.html">π Paradigms of artificial intelligence programming (1991)</a></li>
<li><a href="https://www.goodreads.com/book/show/27543.Artificial_Intelligence">π Artificial intelligence a modern approach (1994)</a></li>
<li><a href="http://www.cs.cmu.edu/~tom/mlbook.html">π Machine learning (1997)</a></li>
<li><a href="http://ai.stanford.edu/~nilsson/QAI/qai.pdf">π The quest for artificial intelligence - a history of ideas and achievements (2009)</a></li>
<li><a href="https://www.goodreads.com/book/show/11328752-introduction-to-artificial-intelligence">π Introduction to artificial intelligence (2011)</a></li>
<li><a href="https://www.goodreads.com/book/show/15857489-machine-learning">π Machine learning: a probabilistic perspective (2012)</a></li>
<li><a href="http://natureofcode.com/book/">π The Nature of Code (2012)</a></li>
<li><a href="https://www.goodreads.com/book/show/20527133-superintelligence">π Superintelligence: paths, dangers, strategies (2014)</a></li>
<li><a href="http://www.cs.huji.ac.il/%7Eshais/UnderstandingMachineLearning/understanding-machine-learning-theory-algorithms.pdf">π Understanding machine learning: from theory to algorithms (2014)</a></li>
<li><a href="http://neuralnetworksanddeeplearning.com/index.html">π Neural Networks and Deep Learning (2015)</a></li>
<li><a href="https://www.goodreads.com/book/show/33986067-deep-learning-with-python">π Deep Larning with Python (2017)</a></li>
<li><a href="https://www.packtpub.com/big-data-and-business-intelligence/tensorflow-machine-learning-cookbook">π Tensorflow machine learning cookbook (2017)</a>
<ul>
<li><a href="https://github.com/nfmcclure/tensorflow_cookbook">Code</a></li>
</ul></li>
<li><a href="https://www.goodreads.com/book/show/32899495-hands-on-machine-learning-with-scikit-learn-and-tensorflow">π Hands-On Machine Learning with Scikit-Learn and TensorFlow (2017)</a></li>
<li><a href="https://www.packtpub.com/big-data-and-business-intelligence/machine-learning-go">π Machine Learning with Go (2017)</a> - Build simple, maintainable, and easy to deploy machine learning applications.</li>
<li><a href="https://christophm.github.io/interpretable-ml-book/index.html">π Interpretable Machine Learning (2018)</a></li>
<li><a href="http://www.deeplearningbook.org/">π Deep learning</a></li>
<li><a href="https://christophm.github.io/interpretable-ml-book/">π Interpretable machine learning (2018)</a> - Explaining the decisions and behavior of machine learning models.</li>
<li><a href="https://www.manning.com/books/how-machine-learning-works">π How Machine Learning Works (2019)</a>- An introduction to both MLβs practice and math foundations in a non-threatning approach.
<ul>
<li><a href="https://github.com/Mostafa-Samir/How-Machine-Learning-Works">Code</a></li>
</ul></li>
<li><a href="https://www.goodreads.com/book/show/31565758-grokking-deep-learning">π Grokking Deep Learning (2019)</a></li>
<li><a href="https://www.manning.com/books/machine-learning-with-tensorflow-second-edition">π MachineLearningWithTensorFlow2ed (2020)</a> - Book on general purpose machine learning techniques regression, classification, unsupervised clustering, reinforcement learning, auto encoders, convolutional neural networks, RNNs, LSTMs, using TensorFlow 1.14.1.</li>
<li><a href="https://www.manning.com/books/machine-learning-bookcamp">π Machine Learning Bookcamp (2020)</a> - Project-based approach to learning machine learning.</li>
<li><a href="https://www.manning.com/books/trust-in-machine-learning">π Trust in Machine Learning (2021)</a> - Book about how to build machine learning systems that are explainable, robust, transparent, and optimized for fairness.</li>
</ul>
<h2 id="management">Management</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/13629.The_Mythical_Man_Month">π The mythical man-month (1975)</a>
<ul>
<li><a href="https://github.com/andrewwoz/the-mythical-man-month-notes">Notes</a></li>
</ul></li>
<li><a href="https://www.goodreads.com/book/show/324750.High_Output_Management">π High output management (1983)</a></li>
<li><a href="https://www.goodreads.com/book/show/48016.The_Essential_Drucker">π The essential drucker</a></li>
</ul>
<h2 id="math">Math</h2>
<ul>
<li><a href="https://www.math.ualberta.ca/mss/misc/A%20Mathematician's%20Apology.pdf">π A mathematicianβs apology (1940)</a></li>
<li><a href="https://www.goodreads.com/book/show/1904487.Handbook_of_Mathematics">π Handbook of mathematics (1945)</a></li>
<li><a href="https://www.goodreads.com/book/show/74703.Fantasia_Mathematica">π Fantasia mathematica (1958)</a></li>
<li><a href="https://www.goodreads.com/book/show/695429.G_del_s_Proof">π GΓΆdelβs proof (1958)</a></li>
<li><a href="https://www.goodreads.com/book/show/469314.Sphereland">π Sphereland (1965)</a></li>
<li><a href="http://www.maths.ed.ac.uk/~aar/papers/milnortop.pdf">π Topology from a differentiable viewpoint (1965)</a></li>
<li><a href="http://wstein.org/edu/2010/581b/books/atiyah-macdonald-introduction_to_commutative_algebra.pdf">π An introduction to commutative algebra (1969)</a></li>
<li><a href="https://www.goodreads.com/book/show/3693042-mathematics-made-difficult">π Mathematics made difficult (1972)</a></li>
<li><a href="https://www.math.purdue.edu/~lipman/MA598/Serre-Course%20in%20Arithmetic.pdf">π A course in arithmetic (1973)</a></li>
<li><a href="http://www-personal.acfr.usyd.edu.au/spns/cdm/resources/Kreyszig%20-%20Introductory%20Functional%20Analysis%20with%20Applications.pdf">π Introductory functional analysis with applications (1978)</a></li>
<li><a href="https://www.goodreads.com/book/show/8295305-a-book-of-abstract-algebra">π A book of abstract algebra (1982)</a></li>
<li><a href="https://www.goodreads.com/book/show/194769.To_Mock_a_Mockingbird_and_Other_Logic_Puzzles">π To mock a mockingbird (1985)</a></li>
<li><a href="http://www.paultaylor.eu/stable/prot.pdf">π Proofs and types (1989)</a></li>
<li><a href="https://www.goodreads.com/book/show/507227.Primes_of_the_Form_X2_Ny2">π Primes of the Form X2 + Ny2: Fermat, Class Field Theory, and Complex Multiplication (1989)</a></li>
<li><a href="https://www.goodreads.com/book/show/4556825-algebraic-number-theory">π Algebraic Number Theory (1992)</a></li>
<li><a href="https://www.goodreads.com/book/show/112243.Concrete_Mathematics">π Concrete mathematics (1994)</a></li>
<li><a href="https://www.goodreads.com/book/show/739735.How_to_Prove_It">π How to prove it (1994)</a></li>
<li><a href="https://www.goodreads.com/book/show/309768.Linear_Algebra_Done_Right">π Linear algebra done right (1995)</a></li>
<li><a href="https://www.goodreads.com/book/show/1279700.Algebraic_Curves_and_Riemann_Surfaces">π Algebraic Curves and Riemann Surfaces (1995)</a></li>
<li><a href="https://www.goodreads.com/book/show/149800.Visual_Complex_Analysis">π Visual complex analysis (1997)</a></li>
<li><a href="https://www.goodreads.com/book/show/1511125.Conceptual_Mathematics">π Conceptual Mathematics: A First Introduction To Categories (1997)</a></li>
<li><a href="https://www.goodreads.com/book/show/719289.Geometry_and_the_Imagination">π Geometry and the imagination (1999)</a></li>
<li><a href="https://www.goodreads.com/book/show/1186653.Combinatorial_Optimization">π Combinatorial Optimization: Polyhedra and Efficiency (2002)</a></li>
<li><a href="http://patryshev.com/books/Sets%20for%20Mathematics.pdf">π Sets for Mathematics (2003)</a></li>
<li><a href="http://linear.ups.edu/">π A first course in linear algebra (2004)</a></li>
<li><a href="https://www.goodreads.com/book/show/2872282-the-art-of-problem-solving-volume-1">π The art of problem solving (2006)</a></li>
<li><a href="https://www.goodreads.com/book/show/1471873.The_Princeton_Companion_to_Mathematics">π The princeton companion to mathematics (2008)</a></li>
<li><a href="https://www.goodreads.com/book/show/7629307-visual-group-theory-maa-classroom-resource-materials">π Visual group theory (2009)</a></li>
<li><a href="https://www.goodreads.com/book/show/6829004">π Algebra: Chapter 0 (2009)</a></li>
<li><a href="https://www.goodreads.com/book/show/12132668-essentials-of-discrete-mathematics">π Essentials of discrete mathematics (2009)</a></li>
<li><a href="https://www.goodreads.com/book/show/7518301-computational-topology">π Computational Topology: An Introduction (2010)</a></li>
<li><a href="https://www.goodreads.com/book/show/682044.Foundations_of_Mathematical_Analysis">π Foundations of analysis (2012)</a></li>
<li><a href="https://hott.github.io/book/nightly/hott-online-1075-g3c53219.pdf">π Homotopy type theory (2013)</a></li>
<li><a href="https://usamo.files.wordpress.com/2017/02/napkin-2017-02-15.pdf">π The napkin project (2017)</a></li>
<li><a href="https://courses.csail.mit.edu/6.042/spring17/mcs.pdf">π Mathematics for computer science (2017)</a></li>
<li><a href="http://immersivemath.com/ila/index.html">π Immersive linear algebra (2017)</a></li>
<li><a href="https://pimbook.org/">π Programmerβs Introduction to Mathematics (2018)</a></li>
<li><a href="http://www.pbrt.org/">π Physically based rendering: from theory to implementation</a></li>
<li><a href="http://bookstore.ams.org/stml-42">π Invitation to ergodic theory</a></li>
<li><a href="http://abstract.ups.edu/download/aata-20160809-sage-7.3.pdf">π Abstract Algebra: Theory and Applications</a></li>
<li><a href="http://joshua.smcvt.edu/linearalgebra/book.pdf">π Linear algebra</a></li>
</ul>
<h2 id="memoirs">Memoirs</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/16902.Walden">π Walden (1854)</a></li>
<li><a href="https://www.goodreads.com/book/show/629429.The_World_of_Yesterday">π The world of yesterday (1942)</a></li>
<li><a href="https://www.goodreads.com/book/show/10569.On_Writing">π On writing (2000)</a></li>
<li><a href="https://www.goodreads.com/book/show/18711276-a-thousand-tiny-failures">π A thousand tiny failures: memoirs of a pickup artist (2014)</a></li>
</ul>
<h2 id="mindset">Mindset</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/67896.Tao_Te_Ching">π Tao te ching (6th century BC)</a></li>
<li><a href="https://www.goodreads.com/book/show/30659.Meditations">π Meditations (161)</a></li>
<li><a href="https://www.goodreads.com/book/show/276779.The_Zen_Teaching_of_Huang_Po">π The Zen Teaching of Huang Po: On the Transmission of Mind (857)</a></li>
<li><a href="https://www.goodreads.com/book/show/52036.Siddhartha">π Siddhartha (1922)</a></li>
<li><a href="https://www.goodreads.com/book/show/4865.How_to_Win_Friends_and_Influence_People">π How to win friends and influence people (1936)</a></li>
<li><a href="https://www.goodreads.com/book/show/30186948-think-and-grow-rich">π Think and grow rich (1937)</a></li>
<li><a href="https://www.goodreads.com/book/show/49552.The_Stranger">π The stranger (1942)</a></li>
<li><a href="https://www.goodreads.com/book/show/4069.Man_s_Search_for_Meaning">π Manβs search for meaning (1946)</a></li>
<li><a href="https://antilogicalism.files.wordpress.com/2017/07/wisdom-of-insecurity.pdf">π The wisdom of insecurity: a message for an age of anxiety (1951)</a></li>
<li><a href="https://www.goodreads.com/book/show/64710.The_First_and_Last_Freedom">π The first and last freedom (1954)</a></li>
<li><a href="https://www.goodreads.com/book/show/514210.The_Way_of_Zen">π The way of zen (1957)</a></li>
<li><a href="https://www.goodreads.com/book/show/60551.The_Book_on_the_Taboo_Against_Knowing_Who_You_Are">π The book on the taboo against knowing who you are (1966)</a></li>
<li><a href="https://www.goodreads.com/book/show/402843.Zen_Mind_Beginner_s_Mind">π Zen Mind, Beginnerβs Mind: Informal Talks on Zen Meditation and Practice (1970)</a></li>
<li><a href="https://www.goodreads.com/book/show/29254.Be_Here_Now">π Be here now (1971)</a></li>
<li><a href="https://www.goodreads.com/book/show/301928.The_Way_of_the_Bodhisattva">π The Way of the Bodhisattva (1971)</a></li>
<li><a href="https://www.goodreads.com/book/show/905.The_Inner_Game_of_Tennis">π The inner game of tennis (1974)</a></li>
<li><a href="https://www.goodreads.com/book/show/36072.The_7_Habits_of_Highly_Effective_People">π The 7 habits of highly effective people (1989)</a></li>
<li><a href="https://www.goodreads.com/book/show/238863.The_Zen_Teaching_of_Bodhidharma">π The Zen Teaching of Bodhidharma (1989)</a></li>
<li><a href="https://www.goodreads.com/book/show/14572.Peace_Is_Every_Step">π Peace is every step (1990)</a></li>
<li><a href="http://misc.equanimity.info/downloads/mindfulness_in_plain_english.pdf">π Mindfulness in plain english (1992)</a></li>
<li><a href="https://www.goodreads.com/book/show/81940.Mastery">π Mastery: the keys to success and long term fulfilment (1992)</a></li>
<li><a href="https://www.goodreads.com/book/show/25103623-the-four-noble-truths">π The Four Noble Truths (1992)</a></li>
<li><a href="https://www.goodreads.com/book/show/1948802.No_Ajahn_Chah">π No Ajahn Chah: Reflections (1994)</a></li>
<li><a href="https://www.goodreads.com/book/show/38210.The_Art_of_Happiness">π The Art of Happiness (1998)</a></li>
<li><a href="https://www.goodreads.com/book/show/222652.The_Quantum_and_the_Lotus">π The Quantum and the Lotus (2000)</a></li>
<li><a href="https://www.goodreads.com/book/show/190055.Emptiness_Dancing">π Emptiness dancing (2004)</a></li>
<li><a href="https://www.goodreads.com/book/show/206625.Mindfulness_Bliss_and_Beyond">π Mindfulness, Bliss, and Beyond: A Meditatorβs Handbook (2006)</a></li>
<li><a href="https://www.goodreads.com/book/show/6604712-eating-animals">π Eating animals (2009)</a></li>
<li><a href="https://www.goodreads.com/book/show/9484114-the-happiness-advantage">π The happiness advantage (2010)</a></li>
<li><a href="https://www.goodreads.com/book/show/12633800-models">π Models (2011)</a></li>
<li><a href="https://www.goodreads.com/book/show/13589182-mastery">π Mastery (2012)</a></li>
<li><a href="https://www.goodreads.com/book/show/18693655-a-mind-for-numbers">π A mind for numbers: how to excel at math and science (2014)</a></li>
<li><a href="https://www.goodreads.com/book/show/22783031-spaciousness">π Spaciousness: The Radical Dzogchen of the Vajra-Heart: Longchenpaβs Treasury of the Dharmadhatu (2014)</a></li>
<li><a href="https://www.goodreads.com/book/show/18774981-waking-up">π Waking up: a guide to spirituality without religion (2014)</a></li>
<li><a href="https://www.goodreads.com/book/show/25744928">π Deep Work: Rules for Focused Success in a Distracted World (2016)</a></li>
<li>[π The Subtle Art of Not Giving a F*ck: A Counterintuitive Approach to Living a Good Life(2016)](https://www.goodreads.com/book/show/28257707-the-subtle-art-of-not-giving-a-f-ck)</li>
<li><a href="https://www.goodreads.com/book/show/29093292-the-daily-stoic">π The Daily Stoic: 366 Meditations for Clarity, Effectiveness, and Serenity (2016)</a></li>
<li><a href="http://krishnamurti.abundanthope.org/index_htm_files/Concentration-and-Meditation.pdf">π Concentration and meditation</a></li>
</ul>
<h2 id="minimalism">Minimalism</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/30231806-goodbye-things">π Goodbye, Things: The New Japanese Minimalism (2017)</a></li>
</ul>
<h2 id="music-production">Music production</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/8441567-harmony-for-computer-musicians">π Harmony for Computer Musicians (2010)</a></li>
</ul>
<h2 id="neuroscience">Neuroscience</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/63697.The_Man_Who_Mistook_His_Wife_for_a_Hat_and_Other_Clinical_Tales">π The man who mistook his wife for a hat (1985)</a></li>
<li><a href="https://www.goodreads.com/book/show/103867.Descartes_Error">π Descartesβ error (1994)</a></li>
<li><a href="https://www.goodreads.com/book/show/277641.The_Body_Electric">π The Body Electric: Electromagnetism and the Foundation of Life (1998)</a></li>
<li><a href="https://www.goodreads.com/book/show/826396.Principles_of_Neural_Science">π Principles of neural science (2000)</a></li>
<li><a href="https://www.goodreads.com/book/show/818044.Molecular_Basis_of_Neuropharmacology">π Molecular basis of neuropharmacology: a foundation for clinical neuroscience (2001)</a></li>
<li><a href="https://www.goodreads.com/book/show/151132.Synaptic_Self">π Synaptic self: how our brains become who we are (2002)</a></li>
<li><a href="https://www.goodreads.com/book/show/570172.The_Brain_That_Changes_Itself">π The Brain That Changes Itself (2007)</a></li>
</ul>
<h2 id="non-fiction">Non Fiction</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/9646.Homage_to_Catalonia">π Homage to catalonia (1938)</a></li>
<li><a href="https://www.goodreads.com/book/show/1898.Into_Thin_Air">π Into thin air (1997)</a></li>
<li><a href="https://www.goodreads.com/book/show/51289.Damned_Lies_and_Statistics">π Damned lies and statistics (2001)</a></li>
<li><a href="https://www.goodreads.com/book/show/6713575-coders-at-work">π Coders at work: reflections on the craft of programming (2009)</a></li>
</ul>
<h2 id="nutrition">Nutrition</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/1387387.Advanced_Nutrition_and_Human_Metabolism_With_Infotrac_">π Advanced Nutrition and Human Metabolism (1995)</a></li>
<li><a href="https://www.goodreads.com/book/show/15874542-the-poor-misunderstood-calorie">π The Poor, Misunderstood Calorie: Calories Proper (2012)</a></li>
<li><a href="https://www.goodreads.com/book/show/23013953-gut">π Gut: The Inside Story of Our Bodyβs Most Underrated Organ (2014)</a></li>
<li><a href="https://www.goodreads.com/book/show/25663961-how-not-to-die">π How not to die (2015)</a></li>
</ul>
<h2 id="operating-systems">Operating Systems</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/83833.Operating_System_Concepts">π Operating system concepts (1983)</a></li>
<li><a href="https://www.goodreads.com/book/show/166195.Modern_Operating_Systems">π Modern operating systems (1992)</a></li>
<li><a href="https://www.goodreads.com/book/show/987956.Programming_with_Posix_Threads">π Programming with Posix Threads (1993)</a></li>
<li><a href="http://valerieaurora.org/synthesis/SynthesisOS/ch1.html">π An efficient implementation of fundamental operating system services (1992)</a></li>
<li><a href="https://github.com/tuhdo/os01">π Operating Systems: From 0 to 1</a></li>
<li><a href="https://intermezzos.github.io/book/second-edition/">π intermezzOS</a></li>
</ul>
<h3 id="ios">iOS</h3>
<ul>
<li><a href="http://shop.oreilly.com/product/0636920055211.do">π iOS 10 programming fundamentals with swift (2015)</a></li>
</ul>
<h3 id="linux">Linux</h3>
<ul>
<li><a href="https://www.goodreads.com/book/show/514432.How_Linux_Works">π How linux works (2014)</a></li>
<li><a href="https://0xax.gitbooks.io/linux-insides/content/index.html">π linux-insides</a></li>
</ul>
<h3 id="macos">MacOS</h3>
<ul>
<li><a href="https://www.goodreads.com/book/show/24730644-mac-os-x-and-ios-internals">π Mac OS X and IOS Internals: To the Appleβs Core, Volume 1 User Mode (2015)</a></li>
</ul>
<h2 id="philosophy">Philosophy</h2>
<ul>
<li><a href="https://tim.blog/wp-content/uploads/2017/07/taoofseneca_vol1-1.pdf">π Tao of Seneca Volume 1 (1925)</a></li>
<li><a href="https://tim.blog/wp-content/uploads/2017/07/taoofseneca_vol2.pdf">π Tao of Seneca Volume 2 (1925)</a></li>
<li><a href="https://tim.blog/wp-content/uploads/2017/07/taoofseneca_vol3.pdf">π Tao of Seneca Volume 3 (1925)</a></li>
<li><a href="https://www.goodreads.com/book/show/24113.G_del_Escher_Bach">π Godel, escher, bach (1979)</a> - Explores fundamental concepts of mathematics, symmetry and intelligence and how they interlink.
<ul>
<li><a href="https://ocw.mit.edu/high-school/humanities-and-social-sciences/godel-escher-bach/lecture-notes/">Lecture notes</a></li>
<li><a href="https://www.youtube.com/playlist?list=PL068ES-0ca9CSIp5OPGI5RXB3k5XgYRxF">Course on the book</a></li>
<li><a href="https://github.com/alexprengere/FormalSystems">Python implementation of formal systems from the book</a></li>
</ul></li>
<li><a href="https://www.goodreads.com/book/show/28597.Prometheus_Rising">π Prometheus rising (1983)</a></li>
<li><a href="https://www.goodreads.com/book/show/189989.Finite_and_Infinite_Games">π Finite and infinite games (1986)</a></li>
<li><a href="https://www.goodreads.com/book/show/373969.The_Stuff_of_Thought">π The stuff of thought (2007)</a></li>
</ul>
<h2 id="physics">Physics</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/15852.Relativity">π Relativity: the special and the general theory (1916)</a></li>
<li><a href="https://my.mindnode.com/1M2ZVqow9pgJ95qwCH7hnwFWdRL8sDcMQqx5b3z9">π University physics with modern physics</a>
<ul>
<li><a href="http://web.sbu.edu/physics/courses/physics-203p.pdf">Notes</a></li>
</ul></li>
<li><a href="https://www.goodreads.com/book/show/116164.Nonlinear_Dynamics_and_Chaos">π Nonlinear dynamics and chaos (1994)</a></li>
<li><a href="https://www.goodreads.com/book/show/61663.Pale_Blue_Dot">π Pale blue dot (1994)</a></li>
<li><a href="https://www.goodreads.com/book/show/17362.Black_Holes_Time_Warps">π Black holes and time warps (1994)</a></li>
<li><a href="https://www.goodreads.com/book/show/22435.The_Fabric_of_the_Cosmos">π The fabric of the cosmos (2004)</a></li>
<li><a href="https://www.goodreads.com/book/show/13485212-fields-of-color">π Fields of colour: the theory that escaped Einstein (2010)</a></li>
<li><a href="https://www.goodreads.com/book/show/13587145-the-theoretical-minimum">π The theoretical minimum (2013)</a></li>
<li><a href="http://feynmanlectures.caltech.edu/">π The feynman lectures on physics (2013)</a></li>
</ul>
<h2 id="poetry">Poetry</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/46199">π Letters to a Young Poet (1929)</a></li>
</ul>
<h2 id="politics">Politics</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/299215.The_Road_to_Serfdom">π The road to serfdom (1944)</a></li>
<li><a href="https://www.goodreads.com/book/show/6613404-anatomy-of-the-state">π The anatomy of the state (1974)</a></li>
<li><a href="https://www.goodreads.com/book/show/194805.Understanding_Power">π Understanding power: the indispensable chomsky (2002)</a></li>
<li><a href="https://www.goodreads.com/book/show/11612989-the-dictator-s-handbook">π The dictatorβs handbook: why bad behaviour is almost always good politics (2011)</a></li>
<li><a href="https://www.goodreads.com/book/show/13330433-the-democracy-project">π The democracy project: a history, a crisis, a movement (2013)</a></li>
</ul>
<h2 id="programming-interviews">Programming interviews</h2>
<ul>
<li><a href="https://www.goodreads.com/book/show/12544648-cracking-the-coding-interview">π Cracking the coding interview (2008)</a>
<ul>
<li><a href="https://github.com/careercup/CtCI-6th-Edition-Swift">Solutions in swift</a></li>
</ul></li>
<li><a href="https://www.goodreads.com/book/show/16253895-elements-of-programming-interviews">π Elements of programming interviews (2012)</a>
<ul>
<li><a href="https://github.com/mykoweb/epi-go">Solutions in Go</a></li>
<li><a href="https://github.com/akshaykumar90/sparkling-water">Solutions in Python</a></li>
<li><a href="https://github.com/qtstc/Elements-of-Programming-Interviews-Java-Solution">Solutions in Java</a></li>
<li><a href="https://github.com/adnanaziz/epicode">solutions in c++</a></li>
</ul></li>
</ul>
<h2 id="programming-language-design">Programming language design</h2>
<ul>
<li><a href="http://beautifulracket.com/">π Beautiful racket</a></li>
</ul>
<h2 id="programming-languages">Programming languages</h2>
<ul>
<li><a href="http://cs.brown.edu/courses/cs173/2012/book/book.pdf">π Programming languages: application and interpretation (2012)</a></li>
<li><a href="http://www.craftinginterpreters.com/introduction.html">π Crafting interpreters (2012)</a></li>
</ul>
<h3 id="assembly">Assembly</h3>
<ul>
<li><a href="https://www.syncfusion.com/resources/techportal/details/ebooks/assemblylanguage">π Assembly language succinctly (2014)</a></li>
</ul>
<h3 id="c">C</h3>
<ul>
<li><a href="https://www.goodreads.com/book/show/515601.The_C_Programming_Language">π The C programming language (1975)</a></li>
<li><a href="http://shop.oreilly.com/product/0636920033677.do">π 21st century C (2014)</a></li>
<li><a href="https://gforge.inria.fr/frs/download.php/latestfile/5298/ModernC.pdf">π Modern C (2019)</a></li>
</ul>
<h3 id="c-1">C++</h3>
<ul>
<li><a href="https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md">π C++ core guidelines (2017)</a></li>
<li><a href="https://www.goodreads.com/book/show/18197265-a-tour-of-c">π A Tour of C++ (2013)</a> - Very concise, updates readers with prior knowledge of C++ to modern C++11.</li>
<li><a href="https://www.goodreads.com/book/show/852335.Beginning_C_Through_Game_Programming">π Beginning C++ Through Game Programming (2004)</a></li>
</ul>
<h3 id="clojure">Clojure</h3>
<ul>
<li><a href="https://www.goodreads.com/book/show/31159768-elements-of-clojure">π Elements of Clojure (2017)</a></li>
<li><a href="https://www.manning.com/books/clojure-in-action-second-edition">π Clojure in Action (2015)</a></li>
<li><a href="https://www.manning.com/books/the-joy-of-clojure-second-edition">π Joy of Clojure (2014)</a> - Quite deep, not for beginners, but superb in combination with βClojure in Actionβ.</li>
</ul>
<h3 id="d">D</h3>
<ul>
<li><a href="http://amzn.to/1ZTDmqH">π The D programming language (2010)</a></li>
<li><a href="http://ddili.org/ders/d.en/index.html">π Programming in D (2015)</a></li>
</ul>
<h3 id="go">Go</h3>
<ul>
<li><a href="https://jan.newmarch.name/go/">π Network programming with Go (2012)</a></li>
<li><a href="http://openmymind.net/The-Little-Go-Book/">π The little go book (2014)</a></li>
<li><a href="https://github.com/iMarcoGovea/books/blob/master/golang/go-in-action.pdf">π Go in action (2015)</a></li>
<li><a href="https://www.goodreads.com/book/show/25080953-the-go-programming-language">π The go programming language (2015)</a>
<ul>
<li><a href="https://github.com/namit/The-Go-Programming-Language">Notes</a></li>
</ul></li>
<li><a href="https://go101.org/article/101.html">π Go 101 (2018)</a></li>
<li><a href="https://thewhitetulip.gitbooks.io/webapp-with-golang-anti-textbook/content/">π Web app with go - anti text book</a></li>
<li><a href="https://github.com/astaxie/build-web-application-with-golang/blob/master/en/preface.md">π Build web application with golang</a>
<ul>
<li><a href="https://github.com/astaxie/build-web-application-with-golang#multiple-language-versions">Multiple Language Versions</a></li>
</ul></li>
</ul>
<h3 id="haskell">Haskell</h3>
<ul>
<li><a href="http://learnyouahaskell.com/">π Learn You a Haskell for Great Good! (2011)</a></li>
<li><a href="http://dev.stephendiehl.com/fun/">π Write you a Haskell (2014)</a>
<ul>
<li><a href="https://github.com/AlphaMarc/WYAH">Implementation in code</a></li>
</ul></li>
<li><a href="https://www.goodreads.com/book/show/912217.Programming_in_Haskell">π Programming in Haskell (2016)</a></li>
<li><a href="https://www.manning.com/books/haskell-in-depth">π Haskell in Depth (2018)</a> - Explores the important language features and programming skills youβll need to build production-quality software using Haskell.</li>
<li><a href="https://leanpub.com/thinking-with-types">π Thinking with Types (2018)</a> - Type-Level Programming in Haskell.</li>
<li><a href="https://www.goodreads.com/book/show/18299474-the-haskell-school-of-music">π The Haskell School of Music (2018)</a></li>
</ul>
<h3 id="java">Java</h3>
<ul>
<li><a href="https://www.goodreads.com/book/show/105099.Effective_Java_Programming_Language_Guide">π Effective java (2001)</a>
<ul>
<li><a href="https://github.com/marhan/effective-java-examples">Code examples</a></li>
<li><a href="https://github.com/jwongo/effectivejava">Notes</a></li>
</ul></li>
<li><a href="http://coltech.vnu.edu.vn/~sonpb/DSA/Data%20Structures%20and%20Algorithms%20in%20Java,%206th%20Edition,%202014.pdf">π Data structures and algorithms in java (2003)</a></li>
<li><a href="http://jcip.net/">π Java concurrency in practice (2006)</a></li>
<li><a href="http://introcs.cs.princeton.edu/java/home/chapter1.pdf">π Introduction to programming in java: an interdisciplinary approach (2008)</a></li>
<li><a href="https://www.goodreads.com/book/show/20534354-java-8-in-action">π Java 8 in action (2014)</a></li>
<li><a href="https://www.goodreads.com/book/show/26333479-test-driven-java-development">π Test-driven Java development (2015)</a></li>
<li><a href="https://www.manning.com/books/java-se-11-programmer-i-certification-guide">π Java SE 11 Programmer I Certification Guide (2020 early-access)</a></li>
<li><a href="https://www.goodreads.com/book/show/39339133-java-by-comparison">π Java by Comparison (2018)</a>
<ul>
<li><a href="https://github.com/javabycomparison/samplecode">Code examples</a></li>
</ul></li>
</ul>
<h3 id="javascript">JavaScript</h3>
<ul>
<li><a href="https://github.com/getify/You-Dont-Know-JS">π You donβt know JS</a>
<ul>
<li><a href="https://github.com/getify/You-Dont-Know-JS/tree/master/up%20%26%20going">π Up and going</a></li>
<li><a href="https://github.com/getify/You-Dont-Know-JS/blob/master/scope%20&%20closures/readme.md#you-dont-know-js-scope--closures">π Scope and closures</a></li>
<li><a href="https://github.com/getify/You-Dont-Know-JS/blob/master/this%20&%20object%20prototypes/readme.md#you-dont-know-js-this--object-prototypes">π This and object prototypes</a></li>
<li><a href="https://github.com/getify/You-Dont-Know-JS/blob/master/types%20&%20grammar/readme.md#you-dont-know-js-types--grammar">π Types and grammar</a></li>
<li><a href="https://github.com/getify/You-Dont-Know-JS/blob/master/async%20&%20performance/readme.md#you-dont-know-js-async--performance">π Async and performance</a></li>
<li><a href="https://github.com/getify/You-Dont-Know-JS/blob/master/es6%20&%20beyond/readme.md#you-dont-know-js-es6--beyond">π ES6 and beyond</a></li>
</ul></li>
<li><a href="http://exploringjs.com/">π Exploring js</a></li>
<li><a href="https://builderbook.org">π Builder Book: Build a Full Stack JavaScript Web App from Scratch (2018)</a></li>
<li><a href="https://leanpub.com/thejsway">π The JavaScript way (2017)</a></li>
<li><a href="https://addyosmani.com/resources/essentialjsdesignpatterns/book/">π Learning JavaScript design patterns (2015)</a></li>
<li><a href="https://www.goodreads.com/book/show/4373732-secrets-of-the-javascript-ninja">π Secrets of the JavaScript Ninja (2013)</a></li>
<li><a href="https://www.goodreads.com/book/show/13705402-effective-javascript">π Effective JavaScript: 68 specific ways to harness the power of JavaScript (2012)</a></li>
<li><a href="http://eloquentjavascript.net/00_intro.html">π Eloquent JavaScript (2011)</a></li>
<li><a href="https://www.goodreads.com/book/show/2998152-javascript">π JavaScript: The Good Parts (2008)</a></li>
</ul>
<h3 id="kotlin">Kotlin</h3>
<ul>
<li><a href="https://livebook.manning.com/book/the-joy-of-kotlin/about-this-book/">π The Joy of Kotlin (2019)</a></li>
<li><a href="https://www.goodreads.com/book/show/40014285-head-first-kotlin">π Head First Kotlin (2019)</a></li>
<li><a href="https://livebook.manning.com/book/kotlin-in-action/about-this-book/">π Kotlin in Action (2017)</a></li>
</ul>
<h3 id="lisp">Lisp</h3>
<ul>
<li><a href="https://mitpress.mit.edu/books/little-schemer">π The little schemer (1974)</a></li>
<li><a href="https://pages.lip6.fr/Christian.Queinnec/WWW/LiSP.html">π Lisp in small pieces (1994)</a></li>
<li><a href="http://www.gigamonkeys.com/book/">π Practical Common Lisp (2005)</a></li>
</ul>
<h3 id="ocaml">OCaml</h3>
<ul>
<li><a href="http://dev.realworldocaml.org/">π Real World OCaml (2018)</a></li>
</ul>
<h3 id="perl">Perl</h3>
<ul>
<li><a href="http://modernperlbooks.com/books/modern_perl_2016/index.html">π Modern Perl (2016)</a></li>
</ul>
<h3 id="powershell">PowerShell</h3>
<ul>
<li><a href="https://www.manning.com/books/learn-powershell-in-a-month-of-lunches-linux-and-macos-edition">π Learn PowerShell in a Month of Lunches, Linux and macOS Edition (2019)</a></li>
</ul>
<h3 id="prolog">Prolog</h3>
<ul>
<li><a href="https://www.metalevel.at/prolog">π The Power of Prolog (2018)</a></li>
<li><a href="https://drive.uqu.edu.sa/_/fbshareef/files/textbook.pdf">π Logic Programming with Prolog (2005)</a></li>
</ul>
<h3 id="purescript">Purescript</h3>
<ul>
<li><a href="https://github.com/paf31/purescript-book">π Purescript book (2017)</a></li>
</ul>
<h3 id="python">Python</h3>
<ul>
<li><a href="https://www.goodreads.com/book/show/6666430-python-essential-reference">π Python essential reference (1999)</a></li>
<li><a href="http://www.diveintopython3.net/">π Dive into python 3 (2004)</a></li>
<li><a href="http://interactivepython.org/runestone/static/pythonds/index.html">π Problem solving with algorithms and data structures using python (2005)</a></li>
<li><a href="https://d.cxcore.net/Python/Python_Cookbook_3rd_Edition.pdf">π Python cookbook (2011)</a></li>
<li><a href="https://www.goodreads.com/book/show/13838796-data-structures-and-algorithms-in-python">π Data structures and algorithms in python (2013)</a></li>
<li><a href="https://www.goodreads.com/book/show/17912811-test-driven-web-development-with-python">π Test driven development with python (2014)</a></li>
<li><a href="https://www.goodreads.com/book/show/23020812-effective-python">π Effective python (2015)</a></li>
<li><a href="https://www.goodreads.com/book/show/22800567-fluent-python">π Fluent python (2015)</a></li>
<li><a href="https://greenteapress.com/thinkpython2/html/index.html">π Think Python: How to Think Like a Computer Scientist (2015)</a></li>
<li><a href="https://leanpub.com/insidethepythonvirtualmachine">π Inside the python virtual machine (2017)</a></li>
<li><a href="https://github.com/joaoventura/full-speed-python">π Full Speed Python (2018)</a></li>
<li><a href="https://automatetheboringstuff.com/">π Automate the boring stuff with python</a></li>
<li><a href="https://www.goodreads.com/book/show/45361469-practices-of-the-python-pro">π Practices of the Python Pro (2020)</a></li>
</ul>
<h3 id="r">R</h3>
<ul>
<li><a href="http://r4ds.had.co.nz/">π R for Data Science (2017)</a></li>
</ul>
<h3 id="reasonml">ReasonML</h3>
<ul>
<li><a href="http://reasonmlhub.com/exploring-reasonml/toc.html">π Exploring ReasonML (2018)</a></li>
</ul>
<h3 id="ruby">Ruby</h3>
<ul>
<li><a href="https://www.goodreads.com/book/show/3892688-the-well-grounded-rubyist">π The well grounded rubyist (2009)</a></li>
<li><a href="https://www.goodreads.com/book/show/9364729-eloquent-ruby">π Eloquent ruby (2011)</a></li>
<li><a href="https://www.goodreads.com/book/show/13507787-practical-object-oriented-design-in-ruby">π Practical object oriented design in ruby (2012)</a>
<ul>
<li><a href="https://github.com/skmetz/poodr">Code solutions</a></li>
<li><a href="https://github.com/jordanpoulton/practical_object_oriented_design_in_ruby">Notes</a></li>
<li><a href="https://github.com/nathany/go-poodr">Go implementation</a></li>
</ul></li>
<li><a href="https://www.goodreads.com/book/show/15847933-confident-ruby">π Confident ruby (2013)</a></li>
</ul>
<h3 id="rust">Rust</h3>
<ul>
<li><a href="http://rustbyexample.com/">π Rust by example</a></li>
<li><a href="https://doc.rust-lang.org/book/">π The rust programming language</a></li>
<li><a href="https://doc.rust-lang.org/nomicon/">π The rustonomicon</a></li>
<li><a href="https://rust-embedded.github.io/discovery/#scope">π Discovery</a> - Discover the world of microcontrollers through Rust.</li>
<li><a href="https://rustwasm.github.io/book/">π Rust and WebAssembly (2018)</a></li>
</ul>
<h3 id="scala">Scala</h3>
<ul>
<li><a href="https://www.manning.com/books/functional-programming-in-scala">π Functional programming in scala (2014)</a></li>
</ul>
<h3 id="smalltalk">Smalltalk</h3>
<ul>
<li><a href="https://www.goodreads.com/book/show/781561.Smalltalk_Best_Practice_Patterns">π Smalltalk best practice patterns (1997)</a></li>
</ul>
<h3 id="swift">Swift</h3>
<ul>
<li><a href="https://developer.apple.com/library/content/documentation/Swift/Conceptual/Swift_Programming_Language/">π Swift programming language (2014)</a>
<ul>
<li><a href="https://github.com/jugend/swift-cheat-sheet">Swift Cheat sheet</a></li>
</ul></li>
<li><a href="https://www.hackingwithswift.com/store/hacking-with-macos">π Hacking with macOS (2018)</a></li>
</ul>
<h3 id="typescript">TypeScript</h3>
<ul>