diff --git a/caliGraph.py b/caliGraph.py index 535135e..b445f91 100755 --- a/caliGraph.py +++ b/caliGraph.py @@ -7,6 +7,7 @@ import copy import random import numpy as np +import pandas as pd from scipy.stats import norm import matplotlib.pyplot as plt @@ -27,16 +28,20 @@ def getAuthors(book): def getRecommenders(book): + recs = set() for tag in book['tags']: if tag.find(" Recommendation") != -1: - yield tag.replace(" Recommendation", "") + recs.add(tag.replace(" Recommendation", "")) elif tag.find("s Literature Club") != -1: - yield tag.replace("s Literature Club", "") + recs.add(tag.replace("s Literature Club", "")) + elif tag.find(":MRB") != -1: + recs.add(tag.replace(":MRB", "")) + return list(recs) def getTags(book): for tag in book['tags']: - if tag.find(" Recommendation") == -1 and tag.find("s Literature Club") == -1 and tag.find(" Top ") == -1: + if tag.find(" Recommendation") == -1 and tag.find("s Literature Club") == -1 and tag.find(" Top ") == -1 and tag.find(":MRB") == -1: yield tag @@ -135,6 +140,12 @@ def removeDangling(G, alsoBooks=False): if not len(G.adj[n]): G.remove_node(n) +def removeThinRecs(G, minCons=3): + for n in list(G.nodes): + node = G.nodes[n] + if node['t'] == 'recommender': + if not len(G.adj[n]) >= minCons: + G.remove_node(n) def removeEdge(G): for n in list(G.nodes): @@ -152,11 +163,11 @@ def removeBad(G, threshold, groups=['book', 'topList', 'recommender', 'author', G.remove_node(n) -def removeKeepBest(G, num, maxDistForRead=1): +def removeKeepBest(G, num, maxDistForRead=1, forType='book'): bestlist = [] for n in list(G.nodes): node = G.nodes[n] - if node['t'] == 'book': + if node['t'] == forType: if 'score' in node and node['score'] != None: bestlist.append(node) bestlist.sort(key=lambda node: node['score'], reverse=True) @@ -164,7 +175,7 @@ def removeKeepBest(G, num, maxDistForRead=1): for n in list(G.nodes): node = G.nodes[n] - if node['t'] == 'book' and node not in bestlist or 'score' in node and node['score'] == None: + if node['t'] == forType and node not in bestlist or 'score' in node and node['score'] == None: if not 'rating' in node or node['rating'] == None or node['rating'] < bestlist[-1]['score']-maxDistForRead: G.remove_node(n) @@ -343,7 +354,7 @@ def removeUselessReadBooks(G): contacts += 1 for cousin in G.adj[adj]: cousinNode = G.nodes[cousin] - if cousinNode['t']=='book' and 'score' in cousinNode: + if cousinNode['t']=='book' and 'score' in cousinNode or cousinNode['t'] == 'newBook': if adjNode['t']=='recommender': force += 0.5 else: @@ -456,8 +467,28 @@ def readColor(book): else: return 'gray' - def loadBooksFromDB(): + books = loadBooksFromCalibreDB() + infuseDataFromMRB(books) + return books + +def mrbGetBook(mrbdf, title, authors): + pot = mrbdf[mrbdf['title'].str.contains(title)] + for author in authors: + for part in author.split(" "): + if len(part)>=3: + pot = mrbdf[mrbdf['author'].str.contains(part)] + return pot.to_dict(orient='records')[0] if len(pot) else False + +def infuseDataFromMRB(books): + mrbdf = pd.read_csv('mrb_db.csv') + for book in books: + mrb = mrbGetBook(mrbdf, book['title'], book['authors']) + if mrb: + for rec in str(mrb['recommender']).split('|'): + book['tags'] += [rec + ':MRB'] + +def loadBooksFromCalibreDB(): return json.loads(os.popen("calibredb list --for-machine -f all").read()) def remove_html_tags(text): @@ -589,7 +620,7 @@ def scaleBooksByRating(G): node['value'] = 20 + 5 * int(node['rating']) else: if 'score' in node and node['score'] != None: - node['value'] = 20 + 5 * int(node['score']) + node['value'] = 20 + int(5 * float(node['score'])) else: node['value'] = 15 @@ -607,7 +638,7 @@ def scaleOpinionsByRating(G): def addScoreToLabels(G): for n in list(G.nodes): node = G.nodes[n] - if node['t'] not in ['tag']: + if node['t'] not in ['tag', 'newBook']: if 'rating' in node and node['rating'] != None: node['label'] += " ("+str(node['rating'])+")" else: @@ -710,18 +741,20 @@ def recommendNBooks(G, mu, std, n, removeTopListsB=True, removeUselessRecommende removeRestOfSeries(G) removeBad(G, mu-std-0.5) removeBad(G, mu+std/2, groups=['recommender']) + removeThinRecs(G, 3) removeKeepBest(G, int(n*2) + 5, maxDistForRead=2) removeEdge(G) removeHighSpanTags(G, 8) removeHighSpanReadBooks(G, 14) removeDangling(G, alsoBooks=False) - pruneRecommenders(G, 16) + pruneRecommenders(G, 12) + removeThinRecs(G, 3) pruneTags(G, 9) removeBad(G, mu, groups=['book']) removeUselessReadBooks(G) pruneTags(G, 8) pruneAuthorCons(G, int(n/5)+3) - pruneRecommenders(G, 16 - min(4, n/20)) + pruneRecommenders(G, 12 - min(4, n/20)) removeUselessSeries(G, mu) removeUselessTags(G) if removeTopListsB: @@ -734,6 +767,7 @@ def recommendNBooks(G, mu, std, n, removeTopListsB=True, removeUselessRecommende removeUselessTags(G) removeUselessReadBooks(G) removeKeepBest(G, n, maxDistForRead=1.25) + removeThinRecs(G, 2) scaleBooksByRating(G) scaleOpinionsByRating(G) @@ -762,7 +796,6 @@ def fullGraph(G, removeTopListsB=True): scaleOpinionsByRating(G) addScoreToLabels(G) - def recommenderCompetence(G): #removeRead(G) removeUnread(G) @@ -907,6 +940,67 @@ def shell(G, books, mu, std): from ptpython.repl import embed embed(globals(), locals()) +def newBooks(G, books, num, mu, std): + removeBad(G, mu+std) + findNewBooks(G, books, num, minRecSco = mu-std) + removeUnread(G) + removeUselessReadBooks(G) + removeTags(G) + removeTopLists(G) + removeSeries(G) + removeEdge(G) + removeDangling(G, alsoBooks=True) + + scaleBooksByRating(G) + scaleOpinionsByRating(G) + addScoreToLabels(G) + + +def findNewBooks(G, books, num, minRecSco=5): + removeBad(G, 0.1, groups=['recommender']) + removeThinRecs(G, 2) + mrbdf = pd.read_csv('mrb_db.csv') + recs = [] + for n in list(G.nodes): + node = G.nodes[n] + if node['t'] == 'recommender' and 'score' in node: + oldBooks = [] + newBooks = [] + recBooks = mrbdf[mrbdf['recommender'].str.contains(node['label'])].to_dict(orient='records') + for book in recBooks: + if book['title'] in [b['title'] for b in books]: + oldBooks.append({'title': book['title'], 'author': book['author']}) + else: + newBooks.append({'title': book['title'], 'author': book['author']}) + recs.append({'name': node['label'], 'rec': node, 'newBooks': newBooks, 'oldBooks': oldBooks}) + for rec in recs: + for book in rec['newBooks']: + G.add_node('n/'+book['title'], color='blue', t='newBook', label=book['title']) + + G.add_node('r/'+rec['rec']['label'], color='orange', t='recommender', label=rec['rec']['label'], score=rec['rec']['score']) + G.add_edge('r/'+rec['rec']['label'], 'n/'+book['title'], color='blue') + + G.add_node('a/'+book['author'], color='green', t='author', label=book['author']) + G.add_edge('a/'+book['author'], 'n/'+book['title'], color='blue') + for n in list(G.nodes): + node = G.nodes[n] + if node['t'] == 'newBook': + ses = [] + scores = [] + for m in list(G.adj[n]): + adj = G.nodes[m] + if adj['t'] == 'recommender': + scores.append(adj['score']) + ses.append(adj['se']) + if len(scores) < 2: + G.remove_node(n) + else: + node['score'] = sum(scores)/len(scores) - 0.1/math.sqrt(len(scores)) + node['fake_se'] = sum(ses)/(len(ses)*1.2) # This is not how SE works. DILLIGAF? + node['value'] = 20 + 5 * float(node['score']) + node['label'] += " ({:.2f}±{:.1f})".format(node['score'], node['fake_se']) + removeKeepBest(G, num, 10, 'newBook') + # while batchSize is implemented, we only get a good gonvergence when we disable it (batchSize=-1) # but might be necessary to enable later for a larger libary for better training performance... # maybe try again for 128 books? @@ -1039,6 +1133,7 @@ def cliInterface(): p_rec.add_argument('-n', type=int, default=20, help='number of books to recommend') p_rec.add_argument('--tag-based', action="store_true") p_rec.add_argument('--recommender-based', action="store_true") + p_rec.add_argument('--new', type=int, default=-1, help='number of new books to recommend') p_rec = cmds.add_parser('listScores', description="TODO", aliases=['ls']) p_rec.add_argument('-n', type=int, default=50, help='number of books to recommend') @@ -1064,6 +1159,9 @@ def cliInterface(): p_shell = cmds.add_parser('shell', description="TODO", aliases=[]) + p_new = cmds.add_parser('newBooks', description="TODO", aliases=[]) + p_new.add_argument('-n', type=int, default=10, help='number of books to recommend') + p_full = cmds.add_parser('full', description="TODO", aliases=[]) args = parser.parse_args() @@ -1078,7 +1176,12 @@ def cliInterface(): if not args.keep_whitepapers: removeWhitepapers(G) + if args.cmd=="recommend": + if args.new==-1: + args.new = int(args.n / 5) + if args.new != 0: + findNewBooks(G, books, args.new, minRecSco = mu-std) if args.tag_based: if args.recommender_based: raise Exception('tag-based and recommender-based can not be be combined') @@ -1105,6 +1208,8 @@ def cliInterface(): elif args.cmd=="progress": progress(G, args.m) return + elif args.cmd=="newBooks": + newBooks(G, books, args.n, mu, std) else: raise Exception("Bad") diff --git a/mrb_db.csv b/mrb_db.csv new file mode 100644 index 0000000..b918e90 --- /dev/null +++ b/mrb_db.csv @@ -0,0 +1,3004 @@ +title,author,google_id,recommender,recommender_count,category,publication_date,pages +"Surely You're Joking, Mr. Feynman!",Richard P. Feynman,_gA_DwAAQBAJ,Brian Armstrong|Ev Williams|Larry Page|Mark Zuckerberg|Naval Ravikant|Noah Kagan|Peter Attia|Tim Ferriss,8,Biography & Autobiography,2018,352 +What Do You Care What Other People Think?,Richard P. Feynman,vbMIlkpQXEkC,Larry Page|Naval Ravikant,2,Biography & Autobiography,2011,256 +10% Happier,Dan Harris,pINcvgEACAAJ,Peter Attia|Veronica Belmont,2,Buddhism,2017,256 +100 Best-Loved Poems,Philip Smith,YzRKPwAACAAJ,Naval Ravikant,1,Poetry,1995,96 +100 Great Operas And Their Stories,Henry W. Simon,KEfSAOggWXwC,Eric Weinstein,1,Music,2010,560 +100 Plus,Sonia Arrison,fG3eW9PG-50C,Peter Thiel,1,Medical,2011,272 +12 Rules for Life,Jordan Peterson,TvEqDAAAQBAJ,George Raveling|Jocko Willink|Marc Andreessen|Naval Ravikant,4,Psychology,2018,320 +13 Secrets for Speaking Fluent Japanese,Giles Murray,fORKMgEACAAJ,Tim Ferriss,1,Foreign Language Study,2012,173 +13 Things That Don't Make Sense,Michael Brooks,euuftB3bkUgC,Bill Gates,1,Science,2010,240 +18 Platoon,Jary,NYTxAAAACAAJ,Jocko Willink,1,Great Britain,1994,138 +1944,Jay Winik,N8uNCgAAQBAJ,Keith Rabois,1,Biography & Autobiography,2015,656 +1984,George Orwell,kotPYEqx7kMC,Emma Watson|Jordan Peterson|Matt Mullenweg|Richard Branson|Tristan Harris,5,Fiction,1983,648 +1Q84,Haruki Murakami,PdwP909jJ7YC,Adam Savage,1,Fiction,2012,438 +21 Lessons for the 21st Century,Yuval Noah Harari,MSKEDwAAQBAJ,Bill Gates|Jack Dorsey|Joe Rogan|Vinod Khosla,4,History,2019,400 +300 Arguments,Sarah Manguso,FmZoDwAAQBAJ,Frank Blake,1,Literary Collections,2018,96 +36 Arguments for the Existence of God,Rebecca Goldstein,TyyJJcED_2IC,Steven Pinker,1,Fiction,2011,506 +40 Chances,Howard G Buffett,8YHEYQ4BcysC,Warren Buffett,1,Biography & Autobiography,2013,464 +48 Days to the Work You Love,Dan Miller,wdN_4Zd5NE4C,Dave Ramsey,1,Religion,2007,224 +5/3/1,Jim Wendler,lsEKywAACAAJ,Mark Bell,1,Exercise,2011,102 +59 Seconds,Richard Wiseman,32kPHcoU2EYC,Charles Poliquin,1,Psychology,2009,240 +61 Hours,Lee Child,ys_e1Jaxh4UC,Malcolm Gladwell,1,Fiction,2010,400 +7 Powers,Hamilton Helmer,heEuvgAACAAJ,Keith Rabois,1,Business & Economics,2016,210 +A Brief History of Everything,Ken Wilber,c9shMX7HLY0C,Dave Elitch,1,Philosophy,2007,548 +A Brief History of Time,Stephen Hawking,oZhagX6UWOMC,Richard Branson,1,Science,2011,224 +A Champion's Mind,Pete Sampras,TXr0fNBuBigC,Bill Gates,1,Biography & Autobiography,2009,306 +A Christmas Carol,Charles Dickens,f8ANAAAAQAAJ,Larry King,1,,1858,100 +A Clash of Kings,George R. R. Martin,LvOUDwAAQBAJ,Elon Musk,1,Fiction,2019,752 +A Collection of Essays,George Orwell,2PXLskAHQE4C,Gretchen Rubin,1,Literary Criticism,1970,324 +A Comprehensive Introduction to Differential Geometry,Michael Spivak,m6UrAAAAYAAJ,Eric Weinstein|Eric Weinstein|Eric Weinstein|Eric Weinstein|Eric Weinstein,5,Mathematics,1979,423 +A Confederacy of Dunces,John Kennedy Toole,Hg0jKHsj6DMC,Jerrod Carmichael|Jesse Williams,2,Fiction,2007,416 +A Course in Mathematical Analysis,Douard Goursat,lBSLlvRD1CYC,Patrick Collison,1,History,2009,274 +A Course in Miracles,Dr. Helen Schucman,LwB1DwAAQBAJ,Ed Latimore,1,Self-Help,2018,312 +A Cultural History of Physics,Károly Simonyi,Bmcpsgp-Ml4C,Naval Ravikant,1,Mathematics,2012,636 +A Culture of Growth,Joel Mokyr,z22YDwAAQBAJ,Patrick Collison,1,Business & Economics,2016,400 +A Curious Discovery,John S. Hendricks,wG3PMgEACAAJ,Mike Rowe,1,Biography & Autobiography,2013,384 +A Curious Mind,Brian Grazer,B08ADAAAQBAJ,Karlie Kloss,1,Biography & Autobiography,2016,320 +A Dance with Dragons,George R. R. Martin,uPqLDQAAQBAJ,Elon Musk,1,Fiction,2015,1152 +A Fan's Notes,Frederick Exley,uLeXn9z8lwwC,Richard Betts,1,Fiction,2010,400 +A Farewell to Arms,Ernest Hemingway,2_XH0Z81_ZEC,Jordan Peterson,1,Fiction,1997,305 +A Feast for Crows,George R. R. Martin,fdSJDQAAQBAJ,Elon Musk,1,Fiction,2014,1060 +A Feast of Snakes,Harry Crews,eGgUjNJfZeQC,Cal Fussman,1,Fiction,1998,192 +A Few Lessons for Investors and Managers From Warren Buffett,Peter Bevelin,_LGhMwEACAAJ,Warren Buffett,1,Investments,2012,81 +A Field Guide to Getting Lost,Rebecca Solnit,gGUAb9D9qOwC,Matt Mullenweg|Sarah Lewis,2,Philosophy,2010,224 +A Fine Balance,Rohinton Mistry,WcaFd95RABEC,Jacqueline Novogratz|Oprah Winfrey,2,Fiction,2010,624 +A Full Life,Jimmy Carter,G-upDAAAQBAJ,Bill Gates|Richard Branson,2,Biography & Autobiography,2016,272 +A Game of Thrones,George R. R. Martin,72aHpwAACAAJ,Elon Musk,1,Fantasy fiction,2011,864 +A Gentleman in Moscow,Amor Towles,-9CLDwAAQBAJ,Bill Gates,1,Fiction,2019,496 +A Giacometti Portrait,James Lord,OIdxFO6USZYC,Rainn Wilson,1,Art,1980,117 +A Good Man,Mark Shriver,-9xnMgEACAAJ,Bryan Johnson,1,Biography & Autobiography,2013,288 +A Grain of Wheat,Ngugi wa Thiong'o,whsbJogawqEC,Barack Obama,1,Fiction,1986,247 +A Guide to LATEX,Helmut Kopka,HptVAAAAMAAJ,Eric Weinstein,1,Computers,1999,600 +A Guide to the Good Life,William B. Irvine,yQ59JV_9AfIC,David Heinemeier Hansson|Derek Sivers|Jason Fried|Marc Andreessen|Phil Libin|Tobi Lütke,6,Psychology,2008,336 +A Guide to the I Ching,Carol K. Anthony,-VoMMQAACAAJ,Jimmy Chin,1,"Body, Mind & Spirit",1988,314 +A Heartbreaking Work of Staggering Genius,Dave Eggers,OSfpEJpJzrIC,Ev Williams,1,Biography & Autobiography,2013,416 +A Higher Loyalty,James Comey,4CovDwAAQBAJ,Marc Andreessen,1,Biography & Autobiography,2018,416 +A History of Civilizations,Fernand Braudel,im_HHEpf-msC,Stewart Brand,1,History,1995,600 +A History of Economic Theory,Jürg Niehans,Qn8NBYTugoYC,Eric Weinstein,1,Business & Economics,1994,578 +"A History of Religious Ideas, Vol. 1",Mircea Eliade,hZ33xQEACAAJ,Jordan Peterson,1,Religion,1984, +"A History of Religious Ideas, Vol. 2",Mircea Eliade,qWBGxgEACAAJ,Jordan Peterson,1,Religion,1978, +"A History of Religious Ideas, Vol. 3",Mircea Eliade,hZ33xQEACAAJ,Jordan Peterson,1,Religion,1984, +A History of Rome,Moses Hadas,1FPjzAEACAAJ,Paul Graham,1,Rome,1956,305 +A History of Western Technology,Friedrich Klemm,zbUIuwEACAAJ,Nick Szabo,1,Science,1964,401 +A History of World Agriculture,Marcel Mazoyer,VDIVCgAAQBAJ,Sam Kass,1,Business & Economics,2006,528 +A History of the World in 100 Objects,Neil MacGregor,P9yDiLwxJQ4C,Stewart Brand,1,History,2011,736 +A House for Mr. Biswas,V. S. Naipaul,E815CgAAQBAJ,Barack Obama,1,Fiction,2016, +A Hunger Artist,Franz Kafka,F_94DwAAQBAJ,David Blaine,1,Fiction,2017,8 +A Lesson Before Dying,Ernest J. Gaines,P4rq2Jv--wwC,Oprah Winfrey,1,Study Aids,2002,72 +A Little Life,Hanya Yanagihara,2caVCwAAQBAJ,Soman Chainani,1,Fiction,2016,736 +A Man Without Breath,Philip Kerr,k6e55ucYukkC,Lewis Cantley,1,Fiction,2013,384 +A Manual for Living,Epictetus,cofP7FbBfAgC,Neville Medhora,1,Religion,1994,96 +A Map of the World,Jane Hamilton,tYjP7_GBTM4C,Oprah Winfrey,1,Fiction,2010,400 +A Mathematician's Apology,G. H. Hardy,beImvXUGD-MC,Paul Graham,1,Mathematics,1992,153 +A Matter of Degrees,Gino Segre,pZ4RAQAAIAAJ,Charlie Munger,1,Science,2002,300 +A Message To Garcia,Elbert Hubbard,bgDDDwAAQBAJ,Joe De Sena,1,Fiction,2019,263 +A Million Little Pieces,James Frey,6LJbIWnNpOkC,Oprah Winfrey,1,Biography & Autobiography,2003,352 +A Mind at Home with Itself,Byron Katie,2kTKDQAAQBAJ,Graham Duncan|Tony Robbins,2,Self-Help,2017,336 +A Mind at Play,Jimmy Soni,gygsDwAAQBAJ,Bryan Johnson|Paul Graham,2,Biography & Autobiography,2017,384 +A New Earth,Eckhart Tolle,0hRhvgEACAAJ,Aubrey Marcus|Oprah Winfrey,2,Spiritual life,2009,313 +A New Kind of Science,Stephen Wolfram,W0GjvgEACAAJ,Steve Jurvetson,1,,2018,1193 +A Path with Heart,Jack Kornfield,DADATu5J_2YC,Tara Brach,1,"Body, Mind & Spirit",2009,384 +A Pattern Language,Christopher Alexander,hwAHmktpk5IC,Gretchen Rubin|Liz Lambert|Naval Ravikant|Patrick Collison|Stewart Brand,5,Architecture,1977,1171 +A Peace to End All Peace,David Fromkin,OV0i1mJdNSwC,Larry Ellison,1,History,2010,672 +A People's History of the United States,Howard Zinn,DhsiGEoATiMC,Alex Honnold|Lisa Ling,2,History,2012,619 +A Piece of the Action,Joe Nocera,htSFmzfGsBkC,Warren Buffett,1,Business & Economics,2013,464 +A Planet of Viruses,Carl Zimmer,OlrjpWBBHGUC,Jonathan Eisen,1,Medical,2012,109 +A Plea for the Animals,Matthieu Ricard,huD4DAAAQBAJ,Eric Ripert,1,NATURE,2016,341 +A Programming Language,Kenneth E. Iverson,zR81AAAAIAAJ,Alan Kay,1,Algorithms,1962,286 +A Quiet Flame,Philip Kerr,uqEQtzwWBd4C,Lewis Cantley,1,Argentina,2008,413 +A Rap on Race,Margaret Mead,Ln-ZMQEACAAJ,Maria Popova,1,Social Science,1992,231 +A River Runs Through It,Norman Maclean,UZYtDwAAQBAJ,M. Sanjayan,1,Fiction,2017,246 +A Sand County Almanac and Sketches Here and There,Aldo Leopold,LICERWI0YJYC,Mike Phillips,1,Fiction,1989,228 +A Second Chance,Catherine Hoke,QSKhswEACAAJ,Seth Godin,1,,2018,212 +A Sense of Where You Are,John McPhee,QW61AAAAIAAJ,Daniel Pink|Jim Collins|Paul Graham,3,Biography & Autobiography,1978,144 +A Separate Peace,John Knowles,_cBZabiaOm8C,Bill Gates,1,Fiction,1996,208 +A Short History of Financial Euphoria,John Kenneth Galbraith,MSV2qipgf9IC,Howard Marks,1,Business & Economics,1994,128 +A Short History of Nearly Everything,Bill Bryson,_CWlKRYLbIwC,Amanda Palmer|Stewart Brand|Warren Buffett,3,Science,2012,624 +A Soldier of the Great War,Mark Helprin,SEAt2YDhdo8C,Naval Ravikant,1,Fiction,2005,800 +A Sound of Thunder and Other Stories,Ray Bradbury,DfkUY6PyKAUC,Kara Swisher,1,Fiction,2013,352 +A Splendid Exchange,William J. Bernstein,cc0tUyvoYfkC,Nick Szabo,1,History,2008,467 +A Spy Among Friends,Ben Macintyre,32H4AgAAQBAJ,Marc Andreessen,1,"Espionage, Soviet",2014,352 +A Storm of Swords,George R. R. Martin,1CVcu9TpO5gC,Elon Musk,1,Fiction,2013,973 +A Story Lately Told,Anjelica Huston,FTwtAAAAQBAJ,Paul Graham,1,Biography & Autobiography,2013,272 +A Tale of Two Cities,Charles Dickens,dU51N-dxEDcC,Amelia Boone|J.K. Rowling|Oprah Winfrey,3,Fiction,2012,514 +A Tan and Sandy Silence,John D. MacDonald,VVrsk54xtkQC,Mike Rowe,1,Fiction,2013,336 +A Theory of Justice,John Rawls,kvpby7HtAe0C,Ann Miura-Ko,1,Law,2009,560 +A Thousand Splendid Suns,Khaled Hosseini,3vo0NQbIN2YC,Ann Miura-Ko|Emma Watson|James Altucher,3,Fiction,2008,419 +A Thread Across the Ocean,John Steele Gordon,kc-MPwAACAAJ,Paul Graham,1,Technology & Engineering,2008,240 +A Time for New Dreams,Ben Okri,S4FwDwAAQBAJ,Richard Branson,1,Literary Collections,2019,160 +A Tree Grows in Brooklyn,Betty Smith,jalsLkb1GTUC,Stephen Dubner,1,Fiction,2009,528 +A Universe from Nothing,Lawrence M. Krauss,nfGlsiDGbxkC,Charlie Munger,1,Science,2012,224 +A Vast Machine,Paul N. Edwards,K9_LsJBCqWMC,Patrick Collison,1,Technology & Engineering,2010,552 +A Very Expensive Poison,Luke Harding,y-zJDwAAQBAJ,Marc Andreessen,1,Performing Arts,2020,128 +A Virtuous Woman,Kaye Gibbons,WJtoSTRcIYcC,Oprah Winfrey,1,Fiction,1997,165 +A Walk in the Woods,Bill Bryson,WnyDgV_vNhsC,Tim Ferriss,1,Travel,2012,304 +A Wanted Man,Lee Child,-hVPjgEACAAJ,Malcolm Gladwell,1,,2013,606 +A Way of Being,Carl Rogers,ymS0e1jZmtMC,Jordan Peterson,1,Social Science,1995,395 +A Whack on the Side of the Head,Roger von Oech,16aecQAACAAJ,Neville Medhora,1,Self-Help,2008,256 +A Whole New Mind,Daniel Pink,3Xb_MDJQZnYC,Ray Dalio,1,Business & Economics,2006,275 +A Woman Makes a Plan,Maye Musk,BDinDwAAQBAJ,Elon Musk,1,Self-Help,2019,224 +A World Lit Only by Fire,William Manchester,Ku2PNGO5Y6sC,Dave Elitch,1,History,2009,320 +A World-Class Education,Vivien Stewart,Kl7VLXGINeYC,Bill Gates,1,Education,2012,191 +A la recherche du temps perdu,Marcel Proust,D54_AQAAIAAJ,Frank Blake,1,,1954, +AI Superpowers,Kai-Fu Lee,Xb9wDwAAQBAJ,Yuval Noah Harari,1,Business & Economics,2018,272 +ALEC,Eddie Campbell,RK64AgAAQBAJ,Neil Gaiman,1,Comics & Graphic Novels,2013,128 +About My Mother,Peggy Rowe,bEhfuwEACAAJ,Mike Rowe,1,Biography & Autobiography,2018,192 +About Your Father and Other Celebrities I Have Known,Peggy Rowe,FT23DwAAQBAJ,Mike Rowe,1,Biography & Autobiography,2020,240 +Abraham Lincoln,John Hay,0iL7e-KCnmkC,Doris Kearns Goodwin,1,History,2009,522 +Absolute Tao,Osho,kY51CAAAQBAJ,Naval Ravikant,1,Philosophy,2012,208 +Absurdistan,Gary Shteyngart,ktimtwAACAAJ,Ev Williams,1,Fiction,2012,427 +Abundance,Peter H. Diamandis,U9CKBAAAQBAJ,Bill Gates|Richard Branson|Steve Jurvetson,3,Science,2014,432 +Academically Adrift,Richard Arum,A2lxFH5cgukC,Bill Gates,1,Education,2011,272 +Accidental Presidents,Jared Cohen,E2PHDwAAQBAJ,Ashton Kutcher|Eric Schmidt,2,History,2020,528 +Accounting for Tastes,Gary S. Becker,bloy3pwa_7YC,Eric Weinstein,1,Business & Economics,2009,292 +Acid Test,Tom Shroder,ApzFoQEACAAJ,Michael Pollan,1,History,2015,464 +Across Realtime,Vernor Vinge,raZiHQAACAAJ,Stewart Brand,1,,1994,544 +Across The Fence,John Stryker Meyer,trljewAACAAJ,Jocko Willink,1,"Vietnam War, 1961-1975",2011,356 +Acts of Love,Talulah Riley,qdvJDAEACAAJ,Elon Musk,1,Fiction,2019,304 +Advanced Style,Ari Seth Cohen,1bJvDwAAQBAJ,Dita Von Teese,1,Design,2013,32 +Adventures of Huckleberry Finn,Mark Twain,iZxnsSQgDckC,Daniel Pink|Richard Branson|Walter Isaacson,3,Literary Criticism,1985,417 +Adventures of a Bystander,Peter F. Drucker,6b7JMOdmD0MC,Stewart Brand,1,Biography & Autobiography,1999,344 +Adverbs,Daniel Handler,SzNrF7AvxTgC,Ev Williams,1,Fiction,2009,288 +Advertising Secrets of the Written Word,Joseph Sugarman,E_3tKAAACAAJ,Neville Medhora,1,Business & Economics,1998,312 +Aeneid,Virgil,hFzwAgAAQBAJ,Mark Zuckerberg|Ryan Holiday,2,Literary Collections,2010,188 +Affective Neuroscience,Jaak Panksepp,qqcRGagyEuAC,Jordan Peterson,1,Medical,2004,480 +Against Empathy,Paul Bloom,_eslDAAAQBAJ,Vinod Khosla,1,Philosophy,2017,304 +Against the Gods,Peter L. Bernstein,G5TKA6B0pyEC,Howard Marks,1,Business & Economics,2012,400 +Age Of Reason,Thomas Paine,sqAOAAAAIAAJ,Neil deGrasse Tyson,1,Christianity,1827,172 +Age and Guile,P. J. O'Rourke,Q04KsqoDrNcC,Eric Weinstein,1,Humor,2007,368 +Age of Ambition,Evan Osnos,8DPvAgAAQBAJ,Patrick Collison,1,Political Science,2014,416 +Age of Propaganda,Anthony R. Pratkanis,9LsuMoEtSV4C,Ramit Sethi,1,Political Science,2001,416 +Ain't I a Woman,bell hooks,f2_fBQAAQBAJ,Emma Watson,1,Social Science,2014,206 +Aion,Carl Jung,ClKRjgEACAAJ,Jordan Peterson,1,Psychology,1968,333 +Airframe,Michael Crichton,hy7Vhdjoc2wC,Ev Williams,1,Fiction,2011,448 +Al Franken,Al Franken,nyn6DAAAQBAJ,Larry King,1,Biography & Autobiography,2017,416 +"Alas, Babylon",Pat Frank,Fh9Bi3-09-cC,Ben Shapiro,1,Fiction,2013,368 +Albert Einstein,Banesh Hoffmann,T_0DPAAACAAJ,Paul Graham,1,Physicists,1979,299 +Alexander Hamilton,Ron Chernow,4z5eL5SGjEoC,Travis Kalanick,1,Biography & Autobiography,2005,832 +"Alexander and the Terrible, Horrible, No Good, Very Bad Day",Judith Viorst,JN6IRLJx0RcC,Ev Williams,1,Juvenile Fiction,2009,32 +Alice in Wonderland,Lewis Carroll,_Q4BBAAAQBAJ,Naval Ravikant|Richa Chadha,2,Juvenile Fiction,2014,72 +Alien vs. Predator,Michael Robbins,SC-ptkaj8UQC,Rolf Potts,1,Poetry,2012,88 +All About Love,bell hooks,A5ZDDwAAQBAJ,Emma Watson,1,Family & Relationships,2018,272 +All Marketers are Liars,Seth Godin,7wsPywAACAAJ,Joe Gebbia,1,Business & Economics,2012,220 +All Out War,Sean Parnell,piwcygEACAAJ,Jocko Willink,1,Fiction,2020,496 +All Out War,Tim Shipman,CU6oDAAAQBAJ,Marc Andreessen,1,History,2016,688 +All Over but the Shoutin',Rick Bragg,Df9jzqT3Z8EC,Jason Calacanis,1,Biography & Autobiography,2010,352 +All the Trouble in the World,P. J. O'Rourke,Ouyr7shT8tsC,Eric Weinstein,1,Social Science,2007,340 +Already Free,Bruce Tift,xvptCQAAQBAJ,Tim Ferriss,1,Psychology,2015,344 +Altered Carbon,Richard K. Morgan,GIlAPgAACAAJ,Zooko Wilcox,1,Fiction,2008,422 +Altered States of Consciousness,Charles T. Tart,Srw9_fcbsXMC,Paul Stamets,1,Altered states of consciousness,1969,575 +Altered Traits,Daniel Goleman,e8IPDgAAQBAJ,Peter Attia,1,Psychology,2017,336 +Amarcord,Marcella Hazan,REB8NQEACAAJ,Samin Nosrat,1,Biography & Autobiography,2009,307 +American Buffalo,Steven Rinella,Qc3laE5ymFcC,Joe Rogan,1,Nature,2009,289 +American Lion,Jon Meacham,Ru6O7-Pc_NMC,Mark Zuckerberg,1,Biography & Autobiography,2009,483 +American Nations,Colin Woodard,Sb40EosBr90C,Jack Dorsey,1,History,2011,384 +American Prison,Shane Bauer,QrpMDwAAQBAJ,Barack Obama,1,Political Science,2018,368 +American Prometheus,Kai Bird,jfSn2RJZI9EC,David Blaine,1,Biography & Autobiography,2007,784 +Americanah,Chimamanda Ngozi Adichie,pbXbCwAAQBAJ,Barack Obama,1,Fiction,2016,704 +Amusing Ourselves to Death,Neil Postman,zGkhbPEjkRoC,Keith Rabois|Matt Mullenweg|Patrick Collison|Tristan Harris,4,Social Science,2006,184 +An American Marriage,Tayari Jones,45NRDwAAQBAJ,Barack Obama|Bill Gates|Oprah Winfrey,3,Fiction,2018,323 +An Anthropologist On Mars,Oliver Sacks,ShmSAgAAQBAJ,Jordan Peterson,1,Psychology,2014,340 +An Apology for the Builder,Nicholas Barbon,GGffmgEACAAJ,Marc Andreessen,1,Building,1685,37 +An Autobiography by Theodore Roosevelt,Theodore Roosevelt,VLTCDwAAQBAJ,Brandon Stanton,1,Fiction,2019,510 +An Autobiography of Anthony Trollope,Anthony Trollope,NuafAgAAQBAJ,Paul Graham,1,Biography & Autobiography,2014,280 +An Elegant Defense,Matt Richtel,pLRnDwAAQBAJ,Keith Rabois|Vinod Khosla,2,Science,2019,448 +An Elementary Primer For Gauge Theory,K Moriyasu,mzL1yGxTEQwC,Eric Weinstein,1,Technology & Engineering,1983,177 +An Empire of Wealth,John Steele Gordon,JgSkT7_3elcC,Paul Graham,1,Business & Economics,2004,460 +An Everyone Culture,Robert Kegan,pT1BCgAAQBAJ,Ray Dalio,1,Business & Economics,2016,336 +An Inconvenient Truth,Al Gore,93M6C24ac9MC,Richard Branson,1,Science,2006,325 +An Outline of Psycho-Analysis,Sigmund Freud,QWmluQAACAAJ,Jordan Peterson,1,Psychology,2011,96 +"Analysis, Manifolds and Physics, Part 1",Yvonne Choquet-Bruhat,hUWEXphqLo8C,Eric Weinstein,1,Mathematics,1982,630 +Andrew Carnegie,David Nasaw,ni0EsmebjYwC,Paul Graham,1,Biography & Autobiography,2007,878 +Andrew Carnegie,Joseph Frazier Wall,5g5EDwAAQBAJ,Charlie Munger,1,Biography & Autobiography,1970,1137 +Andy Grove,Richard S. Tedlow,zQamXENAalkC,Keith Rabois,1,Biography & Autobiography,2007,568 +Angel in the Whirlwind,Benson Bobrick,3byOqsDeZd8C,John Crowley,1,History,2011,560 +Angle of Repose,Wallace Stegner,bmmMDQAAQBAJ,Bill Nye,1,Fiction,2014,632 +Animal Farm,George Orwell,VYWuCbFM4IMC,Daniel Pink|Jordan Peterson|Vlad Tenev|Whitney Cummings,4,Fiction,2013,110 +Anna Karenina,Leo Tolstoy,1DooDwAAQBAJ,Chelsea Handler|Jordan Peterson|Laura R Walker|Oprah Winfrey,4,Fiction,2016,896 +Annals of the Former World,John McPhee,GS81F0RNxesC,Daniel Pink,1,Science,2000,448 +Anne Frank,Anne Frank,RPQtDwAAQBAJ,Alice Little,1,Biography & Autobiography,2017,816 +Annie John,Jamaica Kincaid,-PHl-Y868BAC,Emma Watson,1,Fiction,1997,148 +Answer to Job,Carl Jung,sbAOAAAAQAAJ,Jordan Peterson,1,Bible,1984,194 +Anthem,Ayn Rand,lz2QMQ_kbVEC,Ev Williams,1,Fiction,2008,108 +Anthropic Bias,Nick Bostrom,PUtUAQAAQBAJ,Patrick Collison,1,Philosophy,2013,240 +Antifragile,Nassim Nicholas Taleb,QGaMDQAAQBAJ,Ev Williams|James Altucher|Matt Mullenweg|Naval Ravikant|Vlad Tenev,5,Business & Economics,2014,519 +Archer's Goon,Diana Wynne Jones,WlGzBgAAQBAJ,Neil Gaiman,1,Juvenile Fiction,2015,320 +Architects of the Web,Robert H. Reid,mhKNPwAACAAJ,Keith Rabois,1,Business & Economics,1999,416 +Army of None,Paul Scharre,CYV1twEACAAJ,Bill Gates,1,Computers,2019,448 +Art in the Blood,Bonnie MacBird,yOxeBwAAQBAJ,Alan Kay,1,Fiction,2015,336 +Artemis,Andy Weir,qqg_DwAAQBAJ,Max Levchin,1,Fiction,2017,305 +Arthur Ashe,Raymond Arsenault,ZLSkDwAAQBAJ,Barack Obama,1,Biography & Autobiography,2019,784 +As A Man Thinketh,James Allen,GQwgAgAAQBAJ,Shay Carl|Tony Robbins,2,Religion,2013,60 +As I Lay Dying,William Faulkner,4sALAQAAMAAJ,Oprah Winfrey,1,Fiction,1990,561 +Asimov's New Guide to Science,Isaac Asimov,9d8eGgAACAAJ,Patrick Collison,1,Science,1993,880 +Ask the Dust,John Fante,HqE5Yb6MKKUC,Neil Strauss,1,"Authors, American",2002,198 +Aspects of Quantum Field Theory in Curved Spacetime,Stephen A. Fulling,Zo5_3cmtFEUC,Eric Weinstein,1,Mathematics,1989,315 +Astrophysics for People in a Hurry,Neil deGrasse Tyson,hx5DDQAAQBAJ,Vinod Khosla,1,Science,2017,144 +Asymmetry,Lisa Halliday,PNFFDwAAQBAJ,Barack Obama,1,Fiction,2018,275 +At Home,Bill Bryson,dXbkCwAAQBAJ,Mike Rowe,1,Households,2016,704 +At Home in the Universe,Stuart Kauffman,AQFpAgAAQBAJ,Naval Ravikant,1,Science,1996,336 +At Play in the Fields of the Lord,Peter Matthiessen,ZpfKJqF7CDsC,Sebastian Junger,1,Fiction,2012,384 +At the Drive-In Volcano,Aimee Nezhukumatathil,fN5lAAAAMAAJ,Rolf Potts,1,Poetry,2007,85 +Atlas Shrugged,Ayn Rand,0gLzGn-LYAQC,Amelia Boone|Bob Metcalfe|Brian Armstrong|Bryan Callen|Elon Musk|Ev Williams|Gabby Reece|Joe De Sena|Peter Diamandis|Peter Thiel|Steve Jobs|Travis Kalanick,12,Fiction,2005,1168 +Atomic Habits,James Clear,XfFvDwAAQBAJ,Vinod Khosla,1,Business & Economics,2018,306 +Atrocities,Matthew White,0-fQHlaIpR4C,Steven Pinker,1,History,2011,669 +Au Contraire!,Gilles Asselin,xO0wI3h5i_sC,Derek Sivers,1,Travel,2010,308 +Auberge Of The Flowering Hearth,Roy Andries De Groot,UTtBHAAACAAJ,Samin Nosrat,1,Cooking,1996,464 +Autobiographies,Charles Darwin,vuRnoNE5A74C,Paul Graham,1,Biography & Autobiography,2002,97 +Autobiography of a Spiritually Incorrect Mystic,Osho,5cZU914avxsC,Naval Ravikant,1,Biography & Autobiography,2001,336 +Autobiography of a Yogi,Paramahansa Yogananda,Wymi_jlaFI4C,Dan Engle|Marc Benioff|Richa Chadha|Steve Jobs|Travis Brewer,5,Biography & Autobiography,2009,480 +Average Is Over,Tyler Cowen,CLDgDxHNu1oC,Ryan Holiday,1,Business & Economics,2013,304 +Awake in the Wild,Mark Coleman,AYHodn7hBYQC,Chip Conley,1,Religion,2010,264 +Awaken the Giant Within,Tony Robbins,iPpyLpX0Y1sC,Brian Koppelman|Derek Sivers,2,Self-Help,2012,544 +Awakening Joy,James Baraz,eZ_zAgAAQBAJ,Bill Gates,1,Self-Help,2012,336 +Awakening Spirits,Tom Brown Jr.,Kvj3AAAAIAAJ,Aubrey Marcus,1,Nature,1994,224 +Awakenings,Oliver Sacks,5r1aAAAAYAAJ,Jordan Peterson,1,Medical,1973,339 +Awareness,Anthony De Mello,-Xw6jFD0eocC,Naval Ravikant|Peter Mallouk|Tim Ferriss,3,Religion,1992,184 +B,Sarah Kay,YPsQBwAAQBAJ,Seth Godin,1,Poetry,2015,48 +Babel-17 / Empire Star,Samuel R. Delany,bpVaAAAAMAAJ,Tim O’Reilly,1,Fiction,1969,311 +Back Roads,Tawni O'Dell,2lBf7Ap5y_cC,Oprah Winfrey,1,Fiction,2001,405 +Backwards Days,Stuart Dischell,cVTHbjUg-HwC,Rolf Potts,1,Poetry,2007,63 +Bad Blood,John Carreyrou,nHSPDwAAQBAJ,Bill Gates,1,Social Science,2019,352 +Bad Luck and Trouble,Lee Child,ifVuDwAAQBAJ,Malcolm Gladwell,1,Ex-police officers,2018,400 +Bad Science,Ben Goldacre,2mXeGqCUlEkC,Bryan Callen|Charles Poliquin|Tim Ferriss,3,"Errors, Scientific",2011,304 +Ball Four,Jim Bouton,3cgcAQAAIAAJ,Ben Shapiro,1,Sports & Recreation,1990,504 +Ballet Shoes,Noel Streatfeild,zoJLDwAAQBAJ,J.K. Rowling,1,Juvenile Fiction,2018,304 +Barbarian Days,William Finnegan,GVgBDAAAQBAJ,Paul Graham,1,Biography & Autobiography,2016,464 +Barrel Fever,David Sedaris,CiXMuB3k7nQC,Chelsea Handler,1,Fiction,2010,256 +Basic Algebra I,Nathan Jacobson,JHFpv0tKiBAC,Eric Weinstein,1,Mathematics,2012,528 +Basic Economics,Thomas Sowell,6pNVStJrYFYC,Ben Shapiro,1,,2011,524 +Bass Culture,Lloyd Bradley,mQSCmWUfxsgC,Daniel Ek,1,Music,2001,608 +Batman,Frank Miller,PUexDwAAQBAJ,Naval Ravikant,1,Comics & Graphic Novels,2019, +Battle Cry of Freedom,James M. McPherson,GXfGuNAvm7AC,Ta-Nehisi Coates,1,History,2003,952 +Battle Studies,Ardant du Picq,SWUezQEACAAJ,Jocko Willink,1,History,2019,260 +Be Here Now,Ram Dass,U8cGWu0uPmIC,Jack Kornfield|Steve Jobs|Travis Brewer,3,"Body, Mind & Spirit",2010,292 +Beating Back the Devil,Maryn McKenna,Q_3CMS28mQQC,Jonathan Eisen,1,Medical,2008,320 +Becoming,Michelle Obama,YbtNDwAAQBAJ,Barack Obama|Oprah Winfrey,2,Biography & Autobiography,2018,448 +Becoming Steve Jobs,Brent Schlender,9ntoBAAAQBAJ,Bill Gates|Brian Armstrong|Ed Catmull|Jack Dorsey|Jim Collins|Keith Rabois|Marc Andreessen|Peter Attia,8,Biography & Autobiography,2015,464 +Becoming Wise,Krista Tippett,xiIoCgAAQBAJ,Matt Mullenweg,1,Religion,2016,304 +Becoming a Category of One,Joe Calloway,9SA05G2wKd0C,Mike Shinoda,1,Business & Economics,2003,223 +Behave,Robert M. Sapolsky,sJKoDAAAQBAJ,Bryan Johnson|Marc Andreessen|Sam Harris|Vinod Khosla,4,Science,2017,800 +Behind the Beautiful Forevers,Katherine Boo,bZ9e1u1Vct4C,Bill Gates|Nick Thompson,2,Social Science,2012,288 +Behind the Cloud,Marc Benioff,ymXxwgEACAAJ,Eric Schmidt|Keith Rabois|Tony Robbins,3,Business & Economics,2009,304 +Behold the Dreamers,Imbolo Mbue,nEcsDwAAQBAJ,Oprah Winfrey,1,Cameroonians,2017,416 +Being Nixon,Evan Thomas,ZFoDBwAAQBAJ,Bill Gates,1,Biography & Autobiography,2015,640 +Being Wrong,Kathryn Schulz,5OCnB78Bsp0C,Peter Attia,1,Psychology,2011,416 +Believe Me,Eddie Izzard,Zd9JBgAAQBAJ,Bill Gates,1,Biography & Autobiography,2017,368 +Beloved Demons,C. Anthony Martignetti,8ERwngEACAAJ,Amanda Palmer,1,Italian Americans,2013,226 +Benjamin Franklin,Carl Van Doren,vMZWAAAAYAAJ,Charlie Munger,1,Statesmen,1973,845 +Benjamin Franklin,Walter Isaacson,oIW915dDMBwC,Brandon Stanton|Ed Zschau|Elon Musk|George Raveling|Ray Dalio|Scott Belsky|Tim Ferriss,7,Biography & Autobiography,2003,608 +Beowulf,Seamus Heaney,mlg7VKOvsZAC,Stewart Brand,1,Poetry,2009,256 +Berlin Noir,Philip Kerr,ER86DwAAQBAJ,Lewis Cantley,1,Fiction,2017,240 +Best American Poetry,David Lehman,F8RWDwAAQBAJ,Rolf Potts,1,Poetry,2018,240 +Best Evidence,David S. Lifton,YVsPAAAACAAJ,Joe Rogan,1,History,1992,747 +Between the World and Me,Ta-Nehisi Coates,nQb2CQAAQBAJ,Cal Fussman|Jack Dorsey,2,Biography & Autobiography,2015,176 +Beyond Band of Brothers,Dick Winters,s-EmHY0iXPQC,Jocko Willink,1,History,2011,320 +Beyond Entrepreneurship,Jim Collins,mcwxDQAAQBAJ,Reed Hastings,1,Business & Economics,2017,320 +Beyond Good & Evil,Friedrich Nietzsche,LHTKIY4Id1AC,Jordan Peterson,1,Philosophy,2002,193 +Beyond Ideology,Frances E. Lee,hAqgR9jJ7-UC,Ezra Klein,1,Political Science,2009,264 +Beyond Religion,Dalai Lama,A3ZC0fjNjuQC,Ray Dalio,1,Philosophy,2011,188 +Beyond Smoke and Mirrors,Douglas S. Massey,V25EPCC-6ecC,Bill Gates,1,Business & Economics,2003,199 +Beyond Words,Carl Safina,jSuGDwAAQBAJ,Emma Watson,1,Science,2016,300 +Beyond the Crash,Gordon Brown,Xori5EWKAQoC,Bill Gates,1,Business & Economics,2010,336 +Big Cats,Holiday Reinhorn,DgJVINzmIN0C,Rainn Wilson,1,Fiction,2007,224 +Big History,Cynthia Stokes Brown,HOaCuk6Wly0C,Bill Gates,1,History,2008,305 +"Big World, Small Planet",Johan Rockström,hxuDCgAAQBAJ,Richard Branson,1,Nature,2015,208 +Billion Dollar Whale,Tom Wright,VQL_wAEACAAJ,Alexis Ohanian|Bill Gates,2,Business & Economics,2019,400 +Biography of the Dollar,Craig Karmin,7ejjSl4UYcgC,Tim Ferriss,1,Business & Economics,2009,265 +Biohazard,Ken Alibek,wxfSAgAAQBAJ,Jonathan Eisen,1,History,2014,336 +Bird by Bird,Anne Lamott,W3egDwAAQBAJ,Daniel Pink|Mark Bittman|Matt Mullenweg|Ramit Sethi|Ryan Holiday|Susan Cain|Tim Ferriss,7,Language Arts & Disciplines,2020,304 +Bit Literacy,Mark Hurst,N7zXPAAACAAJ,Ev Williams,1,Business & Economics,2007,180 +Black Beauty,Anna Sewell,3VqK9kjPlEAC,J.K. Rowling,1,Animal welfare,2010,48 +Black Box Thinking,Matthew Syed,YLIYjgEACAAJ,Daniel Ek,1,,2016,352 +Black Edge,Sheelah Kolhatkar,YYMzDwAAQBAJ,Max Levchin|Peter Attia,2,Business & Economics,2018,368 +Black Elk,Joe Jackson,YCgKDAAAQBAJ,Joe Rogan,1,Biography & Autobiography,2016,624 +Black Rednecks & White Liberals,Thomas Sowell,gMLieJOtWwIC,Ben Shapiro,1,,2010,580 +Black Swan Green,David Mitchell,UTyysWsapG8C,Gretchen Rubin,1,Fiction,2008,300 +Black and Blue,Anna Quindlen,UZbfdHcbLoMC,Oprah Winfrey,1,Abused women,2012,252 +Blankie,Leslie Patricelli,S8ONDQAAQBAJ,Paul Graham,1,Juvenile Fiction,2017,24 +Bleak House,Charles Dickens,KlsJAAAAQAAJ,Neil Gaiman,1,,1853,624 +Blink,Malcolm Gladwell,VKGbb1hg8JAC,Ev Williams|Mike Shinoda,2,Business & Economics,2007,320 +Blitzscaling,Reid Hoffman,HH5QDwAAQBAJ,Bill Gates|Brian Chesky|Eric Schmidt|Vinod Khosla,4,Business & Economics,2018,320 +Blood Meridian,Cormac McCarthy,s-QzccStux4C,Jocko Willink,1,Fiction,2010,368 +Blood and Guts in High School,Kathy Acker,LpwnDwAAQBAJ,Amanda Palmer,1,Fiction,2017,176 +Blood and Thunder,Hampton Sides,JzwrddRHDIAC,Joe Rogan,1,History,2007,624 +Bloodlands,Timothy Snyder,maEfAQAAQBAJ,Eric Weinstein|Peter Thiel,2,History,2012,544 +Blue Highways,William Least Heat-Moon,lqN1DyLWwQsC,George Raveling,1,Travel,2012,420 +Blue Mind,Wallace J. Nichols,ISc_AQAAQBAJ,Laird Hamilton,1,Psychology,2014,352 +Blue Ocean Strategy,W. Chan Kim,1ktmDQAAQBAJ,Daymond John|Tim Ferriss,2,Business & Economics,2017,224 +Blue Trout and Black Truffles,Joseph Wechsberg,Mw-SBQAAQBAJ,Nick Kokonas,1,Cooking,2005,288 +Blueprint,Nicholas A. Christakis,DLI3yQEACAAJ,Bill Gates|Eric Schmidt,2,Science,2020,656 +Body by Science,John R. Little,U5GFm1hgVpEC,Tim Ferriss,1,Sports & Recreation,2009,288 +Bogart,Ann Sperber,hqREPgAACAAJ,Jerrod Carmichael,1,Biography & Autobiography,1998,688 +Bogle On Mutual Funds,John C. Bogle,JwD0BgAAQBAJ,Mr. Money Mustache,1,Business & Economics,2015,368 +Book of Longing,Leonard Cohen,ZSbiAXUaf34C,Craig Newmark,1,Poetry,2008,240 +Born Standing Up,Steve Martin,Xjasgu7430UC,Adam Savage|Bill Nye|Jason Calacanis|Marc Andreessen,4,Biography & Autobiography,2008,224 +Born a Crime,Trevor Noah,N97UCwAAQBAJ,Bill Gates,1,Biography & Autobiography,2016,304 +Born to Run,Christopher McDougall,QQiPoNLNhLsC,Turia Pitt,1,Social Science,2011,287 +Boundaries,Henry Cloud,RGg6aI79vgIC,Dave Ramsey|Greg McKeown,2,Religion,2008,304 +Boyd,Robert Coram,GKPRoQEACAAJ,Paul Graham|Ryan Holiday,2,BIOGRAPHY & AUTOBIOGRAPHY,2014,283 +Brain Architecture,Larry W. Swanson,4rAlwYWVEroC,Jordan Peterson,1,Medical,2012,331 +Brain Rules,John Medina,86HoBAAAQBAJ,Bill Gates|James Altucher,2,Science,2014,304 +Brave Enough,Cheryl Strayed,X5omCgAAQBAJ,Amelia Boone|Emma Watson,2,Self-Help,2015,160 +Brave Men,Ernie Pyle,St1zCwAAQBAJ,Jocko Willink,1,History,2016, +Brave New War,John Robb,P2FL0DfnR-wC,Ryan Holiday,1,Political Science,2008,224 +Brave New World,Aldous Huxley,cQ_tAQAAQBAJ,Jordan Peterson|Matt Mullenweg|Stewart Brand|Tristan Harris|Yuval Noah Harari,5,Fiction,2014,272 +Breakfast at the Victory,James Carse,tuhqw13l0UkC,Graham Duncan,1,Philosophy,2009,224 +Breaking The Habit of Being Yourself,Dr. Joe Dispenza,TvhX3ndbex4C,Dave Elitch,1,Self-Help,2012,240 +Breaking the Male Code,Robert Garfield,pXECDAAAQBAJ,Esther Perel,1,Family & Relationships,2016,320 +Breakthrough Advertising,Eugene M. Schwartz,BSf7AAAACAAJ,Neville Medhora|Ramit Sethi,2,Advertising,1966,236 +"Breath, Eyes, Memory",Edwidge Danticat,hY8EAQAAQBAJ,Oprah Winfrey,1,Fiction,2003,236 +Breathe,Belisa Vranich,bDLIDQAAQBAJ,Laird Hamilton,1,Health & Fitness,2017,240 +Brief Interviews with Hideous Men,David Foster Wallace,0JDDTszyvAgC,Bill Gates,1,Fiction,2012,448 +"Bright Lights, Big City",Jay McInerney,jJSbAgAAQBAJ,Eric Ripert,1,Fiction,2014,192 +Bright Orange for the Shroud,John D. MacDonald,taoVamAQ58AC,Mike Rowe,1,Fiction,2013,304 +Bringing Down the House,Ben Mezrich,CYwslODoc2cC,Howard Marks,1,Biography & Autobiography,2008,273 +Broken,Don Winslow,U0qhDwAAQBAJ,Brian Koppelman,1,Fiction,2020,352 +Broken Angels,Richard K. Morgan,L628zVGwNCUC,Zooko Wilcox,1,Fiction,2008,480 +Broken Genius,Joel N. Shurkin,cRb_qzEwWWAC,Bill Gates,1,History,2006,378 +Brothers Forever,Tom Sileo,FCySAgAAQBAJ,Jocko Willink,1,Biography & Autobiography,2014,312 +Buddhism without Beliefs,Stephen Batchelor,Vx-eJKQsywIC,Edward Norton,1,Buddhism,1998,127 +Buffett,Roger Lowenstein,MFkKf4zIqbkC,Bill Gates,1,Biography & Autobiography,2013,512 +Building a StoryBrand,Donald Miller,b3xDDgAAQBAJ,Dave Ramsey,1,Business & Economics,2017,240 +Building on Bedrock,Derek Lidow,L4M7DwAAQBAJ,Ed Zschau,1,Business & Economics,2018,288 +Built To The Hilt,Josh Bryant,-iiKngEACAAJ,Charles Poliquin,1,Health & Fitness,2014,462 +Built from Scratch,Bernie Marcus,SbmdDwAAQBAJ,Frank Blake,1,Business & Economics,2019,352 +Built to Last,Jim Collins,kwNccj6uiLMC,Ev Williams|Jeff Bezos,2,Business & Economics,2011,368 +Bull!,Maggie Mahar,X1amHI5ra3wC,Warren Buffett,1,Business & Economics,2009,528 +Burr,Gore Vidal,btbPygEACAAJ,David Sabatini,1,Biography & Autobiography,2019,440 +Bury the Chains,Adam Hochschild,8p6c9N5K2i0C,Jack Kornfield,1,History,2006,468 +Business Adventures,John Brooks,DW0KogEACAAJ,Bill Gates|Patrick Collison|Warren Buffett,3,,2015,464 +Business Boutique,Christy Wright,useSDwAAQBAJ,Dave Ramsey,1,Business & Economics,2017,336 +But What If We're Wrong?,Chuck Klosterman,Lcd8DgAAQBAJ,Bryan Johnson|Marc Andreessen,2,Biography & Autobiography,2017,288 +Buzzed,Cynthia Kuhn Ph.D.,E09QkgEACAAJ,Hamilton Morris,1,Drugs of abuse,1998,317 +By Honor Bound,Tom Norris,AVUdvgAACAAJ,Jocko Willink,1,Biography & Autobiography,2017,304 +C Programming Language,Brian W. Kernighan,Yi5FI5QcdmYC,Patrick Collison,1,Computers,1988,285 +"COAN The Man, The Myth, The Method",Marty Gallagher,-CeAGwAACAAJ,Mark Bell|Tim Ferriss,2,Bodybuilding,1999, +Calculus Made Easy,Silvanus P. Thompson,ALFJvgAACAAJ,Naval Ravikant,1,,2016,286 +Calculus On Manifolds,Michael Spivak,POIJJJcCyUkC,Eric Weinstein,1,Science,1971,160 +California,Kevin Starr,antycYtRXOUC,Arnold Schwarzenegger,1,History,2007,370 +Can Love Last?,Stephen A. Mitchell,BHDIMahMlhEC,Esther Perel,1,Family & Relationships,2003,224 +Can You Forgive Her?,Anthony Trollope,-jPZoPaqz4sC,Tim O’Reilly,1,Fiction,2012,703 +Can't Hurt Me,David Goggins,i-VtzQEACAAJ,Joe Rogan|Marc Andreessen,2,,2020,364 +Cancer Ward,Aleksandr Solzhenitsyn,E3EzrwGivL4C,Jordan Peterson,1,Fiction,2003,576 +Cancer as a Metabolic Disease,Thomas Seyfried,4lrIjiL_hw8C,Dominic D'Agostino,1,Science,2012,438 +Candide,Voltaire,sRpdAAAAMAAJ,Ryan Holiday,1,Literary Criticism,1982,160 +Cane River,Lalita Tademy,5OAdCwAAQBAJ,Oprah Winfrey,1,Fiction,2015,416 +Capital in the Twenty-First Century,Thomas Piketty,dqEuDwAAQBAJ,Bill Gates,1,Business & Economics,2017,816 +Capitalism without Capital,Jonathan Haskel,J3SYDwAAQBAJ,Bill Gates,1,Business & Economics,2018,296 +Car,Harry Crews,p8fVDwAAQBAJ,Cal Fussman,1,Fiction,2020,208 +Carbonel,Barbara Sleigh,qxGFiuo9CTkC,Paul Graham,1,Juvenile Fiction,2005,240 +Carl Friedrich Gauss,Guy Waldo Dunnington,dUEYxwEACAAJ,Paul Graham,1,Mathematicians,1955,479 +Carrie,Stephen King,gm1_ZjzjEboC,Darren Aronofsky,1,Fiction,2000,208 +"Carry On, Mr. Bowditch",Jean Lee Latham,LMlmLAwIRagC,Bill Nye,1,Juvenile Fiction,2003,251 +Cat's Cradle,Kurt Vonnegut,61W3aGvTVgIC,Ev Williams,1,Fiction,2010,304 +Catch-22,Joseph Heller,Xfze51E7TEoC,Mark Bittman,1,Fiction,1999,415 +Catching the Big Fish,David Lynch,qQqitBgFpOkC,Emma Watson,1,"Body, Mind & Spirit",2007,180 +Catherine the Great,Robert K. Massie,NGRnPtYPI44C,Elon Musk,1,Biography & Autobiography,2012,639 +Cent Éléphants sur un Brin D'Herbe,Dalai Lama,RFyiAAAACAAJ,Eric Ripert,1,Fiction,1997,250 +Cervantes,Jean Canavaggio,K0tXjDijRAkC,David Blaine,1,Biography & Autobiography,1990,348 +Change.edu,Andrew S Rosen,RovlCgAAQBAJ,Bill Gates,1,Education,2011,196 +Changes in the Land,William Cronon,tcy8xSz5AxIC,Michael Pollan,1,History,2011,288 +Changing Minds,Howard Gardner,JcHo9M6zD4AC,Ray Dalio,1,Psychology,2006,244 +Changing on the Job,Jennifer Garvey Berger,rCV_JGe7teAC,Graham Duncan,1,Business & Economics,2011,224 +Chapterhouse,Frank Herbert,ryot4Ag2GGQC,Elon Musk,1,Fiction,1987,436 +Character Counts,John C. Bogle,cmzUplh0OXQC,Mr. Money Mustache,1,Business & Economics,2002,304 +Charlie Chan,Earl Derr Biggers,tZZbhyktdiUC,Tim O’Reilly,1,,2003,348 +Chasing Hillary,Amy Chozick,uEI9DwAAQBAJ,Marc Andreessen,1,Biography & Autobiography,2018,400 +Childhood's End,Arthur C. Clarke,OcspAAAAQBAJ,Ben Shapiro|Kevin Kelly,2,Fiction,2012,258 +Children of Dune,Frank Herbert,2ryWDwAAQBAJ,Elon Musk,1,Fiction,2019,624 +Children with Enemies,Stuart Dischell,4h4wDwAAQBAJ,Rolf Potts,1,Poetry,2017,71 +China Airborne,James Fallows,KZCPyrG6OdcC,Patrick Collison,1,Business & Economics,2013,268 +Chronicles of Narnia Box Set,C. S. Lewis,ECp9xwEACAAJ,Chris Anderson,1,Fiction,2005,242 +Churchill,Andrew Roberts,CiCbxgEACAAJ,Keith Rabois,1,Biography & Autobiography,2019,1152 +Chéri,Colette,9wnmwgEACAAJ,J.K. Rowling,1,Fiction,2019,96 +Cinnamon Skin,John D. MacDonald,1DTjAN1uTukC,Mike Rowe,1,Fiction,2013,336 +Cirque du Soleil,John U. Bacon,KZ6IZaLUSDMC,Soman Chainani,1,Business & Economics,2010,144 +Citizen,Claudia Rankine,vH68CQAAQBAJ,Cheryl Strayed,1,Poetry,2015,192 +City of Thieves,David Benioff,4ljana-KhaMC,Brian Koppelman,1,Fiction,2008,258 +Civilian Warriors,Erik Prince,SjXGoQEACAAJ,Marc Andreessen,1,Civil-military relations,2014,416 +Civilisation,Kenneth Clark,42ZpBgAAQBAJ,Paul Graham,1,Art,2015,272 +Class Warfare,Steven Brill,xOTpx1HR580C,Bill Gates,1,Education,2012,496 +Classic Indian Cooking,Julie Sahni,wC-xrLWouSIC,Mark Bittman,1,Cooking,1980,560 +Clear and Simple as the Truth,Francis-Noël Thomas,KdMjElxVbZkC,Steven Pinker,1,Language Arts & Disciplines,1996,225 +Clocks and Culture,Carlo M. Cipolla,YSf9MVxa2JEC,Paul Graham,1,Business & Economics,2003,182 +Code Girls,Liza Mundy,hBFSwAEACAAJ,Bill Nye,1,Juvenile Nonfiction,2018,272 +Codependent No More,Melody Beattie,m1-JeIlPFCAC,Whitney Cummings,1,Self-Help,1992,250 +Colder Than Hell,Joseph R. Owen,RBSUqN0-AnwC,Jocko Willink,1,History,2012,272 +Collapse,Jared Diamond,jNQd9RpuJ-4C,Bill Gates|Stewart Brand,2,History,2013,608 +Colloquial Turkish,Ad Backus,7yR_icdtJ7sC,Eric Weinstein,1,Foreign Language Study,2000,352 +Committed,Elizabeth Gilbert,IUtEWlKnrLMC,Taylor Swift,1,Biography & Autobiography,2010,320 +Common Sense on Mutual Funds,John C. Bogle,rgOeCAAAQBAJ,Mr. Money Mustache|Peter Mallouk|Warren Buffett,3,Business & Economics,2009,656 +Common Stocks and Uncommon Profits,Philip A. Fisher,AKwWNQjLQQ4C,DJ Vlad|Warren Buffett,2,Business & Economics,1997,182 +Company Commander,Charles B. Macdonald,gfkXTxRbFd0C,Jocko Willink,1,Soldiers,2006,309 +Complexity,Roger Lewin,77xDnidtPS8C,Vlad Zamfir,1,Science,1999,234 +Computation,Marvin Lee Minsky,9FRzyAEACAAJ,Alan Kay,1,Computers,1967,317 +Concepts of Particle Physics,Kurt Gottfried,3N6BfEL9ZzwC,Eric Weinstein,1,Science,1986,206 +Conceptual Physics,Paul G. Hewitt,kKvuAAAAMAAJ,Stewart Brand,1,Science,2008,816 +Concorde,Geoffrey Knight,mnZTAAAAMAAJ,Paul Graham,1,Technology & Engineering,1976,176 +"Conquest, Tribute and Trade",Howard J. Erlichman,cD5NSAAACAAJ,Nick Szabo,1,Business & Economics,2010,541 +Conscious Business,Fred Kofman,iZgiZuhhqX0C,Reid Hoffman,1,Business & Economics,2008,392 +Consider Phlebas,Iain M. Banks,3_bJKlAOecEC,Elon Musk|Stewart Brand,2,Fiction,2009,544 +Consider the Lobster and Other Essays,David Foster Wallace,r3K6qSy-1mkC,Emma Watson,1,Fiction,2012,352 +Conspiracy,Ryan Holiday,UFCzugEACAAJ,Brian Koppelman|Marc Andreessen,2,Conspiracies,2019,336 +Conversations with Friends,Sally Rooney,4ZQnDwAAQBAJ,Taylor Swift,1,Fiction,2017,309 +"Conversations with God, Book 1",Neale Donald Walsch,DxZDDwAAQBAJ,Travis Brewer,1,Religion,2018,304 +"Conversations with God, Books 2 & 3",Neale Donald Walsch,6d4PnfwbRYoC,Travis Brewer,1,Self-Help,2000,256 +Conversations with Major Dick Winters,Cole C. Kingseed,qF8IDAAAQBAJ,Jocko Willink,1,Biography & Autobiography,2014,281 +Convict Conditioning,Paul Wade,mOArkgEACAAJ,Naval Ravikant,1,Health & Fitness,2012,294 +Cooked,Michael Pollan,26aMDQAAQBAJ,Samin Nosrat,1,Cooking,2014,468 +Cooking with the Seasons,Jean Louis Palladin,rtF3kQEACAAJ,Eric Ripert,1,Cooking,1989,222 +Core Archery,Larry Wise,EAQmAAAACAAJ,Tim Ferriss,1,Sports & Recreation,2004,140 +Cosmic Consciousness,Richard Maurice Bucke,TAdt2phAjY8C,Steve Jobs,1,"Body, Mind & Spirit",2000,114 +Cosmos,Carl Sagan,cDKODQAAQBAJ,Bill Nye|Richard Branson,2,Science,2013,396 +Count Zero,William Gibson,kVQrjwEACAAJ,Adam Savage,1,,2017,320 +Courage,Osho,Bm6bDwAAQBAJ,Naval Ravikant,1,Self-Help,2019,240 +Coyote America,Dan Flores,CSvXCwAAQBAJ,Joe Rogan,1,Science,2016,288 +Cradle to Cradle,Michael Braungart,KFX5RprPGQ0C,Joe Gebbia,1,Nature,2010,208 +Create Your Own Religion,Daniele Bolelli,mENihn6ssdUC,Aubrey Marcus,1,Religion,2013,344 +Creating the Twentieth Century,Vaclav Smil,w3Mh7qQRM-IC,Bill Gates,1,History,2005,368 +Creation,Steve Grand,aSqzKUnANM8C,Jeff Bezos,1,Computers,2003,230 +Creative Selection,Ken Kocienda,h-RhDwAAQBAJ,Keith Rabois,1,Design,2018, +Creativity and the Brain,Mario Tokoro,HxFDjCLmojEC,Ray Dalio,1,Psychology,2007,143 +"Creativity, Inc.",Ed Catmull,UqccAgAAQBAJ,Ezra Klein|Jason Calacanis|Mark Zuckerberg,3,Business & Economics,2014,368 +Crime and Punishment,Fyodor Dostoyevsky,3QZIJ0JBVHAC,Esther Perel|Jordan Peterson|Larry King,3,Fiction,2006,272 +Crime in Progress,Glenn Simpson,9pyyDwAAQBAJ,Ron Conway,1,Political Science,2019,368 +Crossing the Chasm,Geoffrey A. Moore,KlX7scf-XgYC,Drew Houston|Ev Williams|Ron Conway|Seth Godin,4,Business & Economics,2009,256 +Crowdsourcing,Jeff Howe,IMN0dUIxQWIC,Marc Benioff,1,Business planning,2009,312 +Crucial Conversations,Kerry Patterson,VhkQpRH9D9gC,Max Levchin,1,Business & Economics,2011,288 +Crush It!,Gary Vaynerchuk,9h7hCJTWWFMC,Mark Bell|Ryan Hoover,2,Business & Economics,2009,160 +"Cry, the Beloved Country",Alan Paton,aUe-Dfez6gAC,Oprah Winfrey,1,Fiction,2003,320 +Cryptonomicon,Neal Stephenson,Lw-00wTgBy8C,Ev Williams|Tim Ferriss,2,Fiction,2012,928 +Cultural Amnesia,Clive James,H-FvCQAAQBAJ,Frank Blake,1,Literary Collections,2008,912 +Cultural Strategy,Douglas Holt,CDgtbanRLT8C,Keith Rabois,1,Business & Economics,2010,387 +Cumulus,Eliot Peper,KhioDAEACAAJ,Daniel Pink|Ev Williams,2,Intelligence officers,2016,214 +Cyrano de Bergerac,Edmond Rostand,Sm8ipv8UaWwC,Aubrey Marcus,1,Literary Collections,2012,186 +DMT,Rick Strassman,-mAoDwAAQBAJ,Joe Rogan,1,"Body, Mind & Spirit",2014,400 +Dad Is Fat,Jim Gaffigan,ctk4DwAAQBAJ,Bill Gates,1,Families,2017,315 +Daemon,Daniel Suarez,BVm2ALcKqVMC,Elon Musk|Eric Weinstein,2,Fiction,2013,475 +Daily Rituals,Mason Currey,ScZtDwAAQBAJ,B.J. Novak,1,Language Arts & Disciplines,2019, +Dancing Naked in the Mind Field,Kary Mullis,X1o81hN4lCwC,Ev Williams|Peter Attia,2,Biography & Autobiography,2010,240 +Dancing in the Glory of Monsters,Jason Stearns,DKk4DgAAQBAJ,Patrick Collison,1,History,2012,416 +Dapper Dan,Daniel R. Day,lzRzDwAAQBAJ,Ben Horowitz,1,Biography & Autobiography,2019,304 +Daring Greatly,Brené Brown,3rF7vvXa_yIC,Chase Jarvis|Matt Mullenweg,2,Business & Economics,2013,304 +Das Energi,Paul Williams,ODALAAAACAAJ,Steve Jobs,1,"Body, Mind & Spirit",1980,160 +Das Kapital,Karl Marx,qqF2DUEnsZgC,Elon Musk,1,Political Science,2012,356 +Data-Driven Marketing,Mark Jeffery,rxc4DwAAQBAJ,Jeff Bezos,1,Business & Economics,2010,298 +Daughter of Fortune,Isabel Allende,oyzIAgAAQBAJ,Oprah Winfrey,1,Fiction,2014,432 +Days of Rage,Bryan Burrough,PAvTCwAAQBAJ,Marc Andreessen,1,Radicalism,2016,585 +De Re Militari,Flavius Vegetius Renatus,LI8vuwEACAAJ,Jocko Willink,1,History,2018,280 +Dealers of Lightning,Michael A. Hiltzik,lzgOduibRJgC,Patrick Collison,1,Business & Economics,2009,480 +Dealing with China,Henry M. Paulson,GpipRaXG5dQC,Mark Zuckerberg,1,Business & Economics,2015,400 +Dear Founder,Maynard Webb,BvRGswEACAAJ,Ron Conway,1,BUSINESS & ECONOMICS,2018,331 +Death,Neil Gaiman,ZuHhnQEACAAJ,Amanda Palmer,1,Comics & Graphic Novels,2014,320 +Death of a Salesman,Arthur Miller,jeoQ0zmQ5VsC,Daniel Pink|Tim Ferriss,2,Drama,1980,104 +Death's End,Cixin Liu,A_1oCAAAQBAJ,Adam Savage,1,Fiction,2016,592 +Debt,David Graeber,yIMxuAAACAAJ,Seth Godin,1,Debt,2012,534 +Debt-Free Degree,Anthony ONeal,PyKtDwAAQBAJ,Dave Ramsey,1,Business & Economics,2019,224 +Decisive,Chip Heath,yW0oYGaPcLEC,Julia Galef,1,Business & Economics,2013,320 +Decoded,Jay-Z,gyXHBAAAQBAJ,LeBron James|Mark Zuckerberg,2,Biography & Autobiography,2010,336 +Deep,James Nestor,KjAlAwAAQBAJ,M. Sanjayan,1,Sports & Recreation,2014,364 +Deep Learning,Ian Goodfellow,Np9SDQAAQBAJ,Vinod Khosla,1,Computers,2016,775 +Deep Medicine,Eric Topol,7iFlDwAAQBAJ,Keith Rabois,1,Health & Fitness,2019,400 +Deep Simplicity,John Gribbin,df6x_T0yDioC,Charlie Munger,1,Science,2004,275 +Deep Survival,Laurence Gonzales,jU7VjwEACAAJ,Joel McHale|Kelly Starrett|Laird Hamilton,3,Science,2017,336 +Deep Work,Cal Newport,lZpFCgAAQBAJ,Tim Ferriss,1,Business & Economics,2016,304 +Delivering Happiness,Tony Hsieh,vyFCcgAACAAJ,Chip Conley|Gretchen Rubin|Julie Rice|Tim Ferriss,4,Business & Economics,2013,272 +Dementia Præcox and Paraphrenia,Emil Kraepelin,S0tQAQAAIAAJ,Stanislav Grof,1,History,2002,331 +Democracy in America,Alexis de Tocqueville,UXkJ0gvjS0AC,Patrick Collison,1,Philosophy,2004,941 +Demons,Fyodor Dostoyevsky,lelBBAAAQBAJ,Ben Shapiro|Jordan Peterson,2,Philosophy,2013,768 +Deng Xiaoping and the Transformation of China,Ezra F. Vogel,3IaR-FxlA6AC,Bill Gates,1,Biography & Autobiography,2011,384 +Desert Solitaire,Edward Abbey,lkhMtksYyhYC,Maria Popova,1,Biography & Autobiography,1988,255 +Destined for War,Graham Allison,ytlVyQEACAAJ,Fareed Zakaria|Ray Dalio|Walter Isaacson,3,Balance of power,2019,400 +Destiny of the Republic,Candice Millard,bRFQ74gYlPAC,M. Sanjayan,1,History,2011,368 +Deviate,Beau Lotto,4TJDCgAAQBAJ,Bryan Johnson,1,Science,2017,256 +Devil's Bargain,Joshua Green,60olDwAAQBAJ,Marc Andreessen,1,Political Science,2017,304 +Diagnostic and Statistical Manual of Mental Disorders,American Psychiatric Association,-JivBAAAQBAJ,Stanislav Grof,1,Medical,2013,991 +Diaspora,Greg Egan,w8eVDwAAQBAJ,Naval Ravikant,1,Fiction,2019,400 +Dice Man,Luke Rhinehart,t6kfDAAAQBAJ,Richard Branson,1,Fiction,2015,380 +Die Trying,Lee Child,2qmJDQAAQBAJ,Malcolm Gladwell,1,Fiction,2012,422 +Diet for a Small Planet,Frances Moore Lappe,3SdtAAAAMAAJ,Steve Jobs,1,"Diet, Vegetarian",1971,301 +Differential Forms in Algebraic Topology,Raoul Bott,COuPBAAAQBAJ,Eric Weinstein,1,Mathematics,2013,338 +Differential Topology,Victor Guillemin,FdRhAQAAQBAJ,Eric Weinstein,1,Mathematics,2010,222 +Dig Safe,Stuart Dischell,VnxaAAAAMAAJ,Rolf Potts,1,Poetry,2003,65 +Dinosaur Training Secrets: Volume I,Brooks D. Kubik,k0srmgEACAAJ,Charles Poliquin,1,Bodybuilding,1996,224 +Dinosaur Training Secrets: Volume II,Brooks D. Kubik,k0srmgEACAAJ,Charles Poliquin,1,Bodybuilding,1996,224 +Diocletian and the Roman Recovery,Stephen Williams,9il6P3TPj-AC,Paul Graham,1,History,1985,264 +Direct Truth,Kapil Gupta,TThIugEACAAJ,Naval Ravikant,1,,2018,152 +Dirt,David R. Montgomery,D2im0qYGG2YC,Stewart Brand,1,Nature,2012,296 +Dirt and Disease,Naomi Rogers,dWQ9QZl7xKkC,Bill Gates,1,Medical,1992,258 +Dirty Plotte,Julie Doucet,g66rswEACAAJ,Amanda Palmer,1,,2018,552 +Discourses on Livy,Niccolò Machiavelli,Km5itjMehYUC,Peter Thiel,1,Philosophy,2009,424 +Discover Your Inner Economist,Tyler Cowen,ej2SDAEACAAJ,Graham Duncan,1,Business & Economics,2008,245 +Discover the Power Within You,Eric Butterworth,j4PLCqf8-_EC,Jerrod Carmichael,1,"Body, Mind & Spirit",1992,239 +Discovering Your Personality Type,Don Richard Riso,3SDGwES0k1EC,Ray Dalio,1,Psychology,2003,224 +Distress,Greg Egan,9-O32JswE9QC,Naval Ravikant,1,Fiction,2010,432 +Dog Man,Dav Pilkey,IZIAxgEACAAJ,Paul Graham,1,,2019,240 +Doing Good Better,William MacAskill,TxFACgAAQBAJ,Liv Boeree,1,Philosophy,2015,272 +Don Quixote,Miguel De Cervantes,MAsPAAAAYAAJ,Dr. Gabor Maté,1,,1854, +Don't Count on It!,John C. Bogle,FQMWneE8iHcC,Mr. Money Mustache,1,Business & Economics,2010,496 +Don't Make Me Think,Steve Krug,g1QBFJxB_eEC,Brian Armstrong|Nick Ganju,2,Computers,2009,216 +Don't Shoot the Dog!,Karen Pryor,SgwoXzJG2-kC,Tim Ferriss|Tristan Harris,2,Self-Help,1999,202 +Doubt,Jennifer Michael Hecht,QJb16_AAePkC,Krista Tippett,1,History,2010,576 +Dracula,Bram Stoker,47hUzQEACAAJ,Patrick Collison,1,,2020,558 +Draft No. 4,John McPhee,QkgeDgAAQBAJ,Daniel Pink|Jim Collins|Tim Ferriss,3,Language Arts & Disciplines,2017,208 +Drawing Life,David Gelernter,LPboAAAAIAAJ,Keith Rabois,1,True Crime,1997,159 +Drawing on the Right Side of the Brain,Betty Edwards,ofXvl2eDsnwC,Adam Robinson,1,Art,2012,320 +Dream Big,Cristiane Correa,g72HoAEACAAJ,Warren Buffett,1,Consolidation and merger of corporations,2013,252 +Dream Yoga,Andrew Holecek,_E5oDAAAQBAJ,Naval Ravikant,1,Religion,2016,352 +Dreaming Yourself Awake,B. Alan Wallace,32IV_YCyC2sC,Josh Waitzkin,1,"Body, Mind & Spirit",2012,192 +Dreamstate,Jed McKenna,oMaIDwAAQBAJ,Naval Ravikant,1,Philosophy,2016,260 +Drive,Daniel Pink,A-agLi2ldB4C,David Heinemeier Hansson|Tobi Lütke,2,Business & Economics,2011,272 +Dropping Ashes on the Buddha,Seung Sahn,AcHimgEACAAJ,Amanda Palmer,1,Zen Buddhism,1976,232 +Drowning Ruth,Christina Schwarz,Q7gd9PFJiBwC,Oprah Winfrey,1,Domestic fiction,2000,566 +Drunk Tank Pink,Adam Alter,TeBKAQAAQBAJ,Vinod Khosla,1,Psychology,2013,272 +Dune,Frank Herbert,p1MULH7JsTQC,Adam Savage|Elon Musk|Ev Williams|Jeff Bezos|Kelly Starrett|Kyle Maynard|Laird Hamilton|Seth Godin|Stewart Brand|Tim Ferriss|Tim O’Reilly,11,Fiction,2003,896 +Dune Messiah,Frank Herbert,uryWDwAAQBAJ,Elon Musk|Tim O’Reilly,2,Fiction,2019,352 +Early Middle English Literature,R M Wilson,hiJBwAEACAAJ,Paul Graham,1,,2019,318 +Earth Abides,George R. Stewart,V9dZ5eh13zUC,Ben Shapiro,1,,1993, +Earth in Human Hands,David Grinspoon,-BdMCgAAQBAJ,Jordan Peterson,1,Science,2016,544 +Earthseed,Octavia E. Butler,VG-9DgAAQBAJ,Daniel Pink,1,Fiction,2017,1600 +East of Eden,John Steinbeck,OPy6E5ZhXs0C,Emma Watson|Jordan Peterson|Oprah Winfrey,3,Fiction,2002,608 +Easy Riders Raging Bulls,Peter Biskind,J3ucTdpeE9YC,B.J. Novak,1,Performing Arts,2011,512 +Eat Pray Love,Elizabeth Gilbert,QdCNeNx6LJUC,Taylor Swift,1,Biography & Autobiography,2007,349 +Eat the Rich,P. J. O'Rourke,YzTauHNa4FIC,Eric Weinstein,1,Business & Economics,2007,272 +Eating the Big Fish,Adam Morgan,0iTeUTSPZs0C,Vinod Khosla,1,Business & Economics,2009,368 +Echo Burning,Lee Child,n1LXDwAAQBAJ,Malcolm Gladwell,1,Fiction,2007,420 +Economics in One Lesson,Henry Hazlitt,_Ns1AAAAMAAJ,Ben Shapiro|Naval Ravikant,2,Economics,1946,222 +Edison,Edmund Morris,4DyGDwAAQBAJ,Marc Andreessen,1,Biography & Autobiography,2019,800 +Edison,Matthew Josephson,T12mDwAAQBAJ,Ryan Holiday,1,Biography & Autobiography,2019, +Educated,Tara Westover,JZwpDwAAQBAJ,Barack Obama|Bill Gates,2,Biography & Autobiography,2018,400 +Educational Economics,Marguerite Roza,oIArAQAAMAAJ,Bill Gates,1,Education,2010,116 +Ego Is the Enemy,Ryan Holiday,j0GXCgAAQBAJ,Aubrey Marcus|George Raveling,2,Business & Economics,2016,256 +Eichmann in Jerusalem,Hannah Arendt,ZwjNGDPUSPsC,Dr. Phil Zimbardo,1,History,1994,312 +Einstein,Walter Isaacson,OzSJgdwk5esC,Bill Gates|Ed Zschau|George Raveling|Mark Zuckerberg|Ray Dalio|Scott Belsky,6,Biography & Autobiography,2008,704 +Einstein's Dreams,Alan Lightman,rA04AwAAQBAJ,Eric Weinstein|Ev Williams,2,Fiction,2014,140 +Einstein's Mistakes,Hans C. Ohanian,XfI72x13gJ4C,Ray Dalio,1,Science,2009,416 +Eisenhower in War and Peace,Jean Edward Smith,xIl8MgEACAAJ,Brian Armstrong,1,Biography & Autobiography,2013,950 +Elements,Theodore Gray,XLLkwAEACAAJ,Stewart Brand,1,Juvenile Nonfiction,2019,20 +Elements of Information Theory,Thomas M. Cover,VWq5GG6ycxMC,Eric Weinstein,1,Computers,2012,776 +Elements of the Theory of Computation,Harry Lewis,c9ZPyQEACAAJ,Eric Weinstein,1,Computational complexity,2015,361 +Eleven Minutes,Paulo Coelho,y67Z63GtmLwC,Tim Ferriss,1,Fiction,2011,320 +Ellen Foster,Kaye Gibbons,9IXT83pZN9MC,Oprah Winfrey,1,Fiction,1997,144 +Elon Musk,Ashlee Vance,LXItDwAAQBAJ,Mr. Money Mustache,1,Businesspeople,2017,371 +Emergence,Steven Johnson,Au_tLkCwExQC,Ev Williams,1,Science,2012,288 +Emergency,Neil Strauss,GBfZjLybb8AC,Tim Ferriss,1,Self-Help,2012,432 +Emma,Jane Austen,QOOO-DdXvB0C,J.K. Rowling,1,Literary Collections,2005,600 +Emotional Equations,Chip Conley,3KDkERQ0WykC,Liz Lambert,1,Business & Economics,2012,281 +Emotional Intelligence,Daniel Goleman,Lq18kigs7m0C,Drew Houston|Jack Kornfield|Sharon Salzberg,3,"Body, Mind & Spirit",2009,368 +Empire of the Summer Moon,S. C. Gwynne,m6VWBwMAox4C,Joe Rogan|Lex Fridman,2,History,2010,384 +Encounters with the Archdruid,John McPhee,eXuLaGjYFR8C,Jim Collins,1,Nature,1977,256 +Encyclopedia of Physics,Rita Lerner,-BNJPgAACAAJ,Eric Weinstein,1,Science,1990,1408 +Ender's Game,Orson Scott Card,jaM7DwAAQBAJ,Ev Williams|Mark Zuckerberg|Travis Kalanick,3,Fiction,2017,448 +Ending Aging,Aubrey de Grey,Bp_1mAEACAAJ,Steve Aoki,1,Science,2008,448 +Endurance,Alfred Lansing,oDBnAgAAQBAJ,Bryan Johnson|Ray Dalio|Ryan Holiday|Scott Belsky,4,History,2014,416 +"Enemies, A Love Story",Isaac Bashevis Singer,OUQ-pwAACAAJ,Steven Pinker,1,Holocaust survivors,2012,240 +Energies,Vaclav Smil,Q5nhBwAAQBAJ,Bill Gates,1,Technology & Engineering,2013,453 +Energy,Vaclav Smil,y6T1DAAAQBAJ,Bill Gates|Mark Zuckerberg,2,Science,2017,240 +Energy Myths and Realities,Vaclav Smil,JC_n2gjByuAC,Bill Gates,1,Science,2010,232 +Energy Transitions,Vaclav Smil,vLuT4BS_25MC,Bill Gates,1,Business & Economics,2010,178 +Energy and Civilization,Vaclav Smil,ok4ptQEACAAJ,Bill Gates,1,History,2018,552 +Energy at the Crossroads,Vaclav Smil,2UM6KSEMoLUC,Bill Gates,1,Science,2005,427 +Enlightenment Now,Steven Pinker,R5KADwAAQBAJ,A.J. Jacobs|Bill Gates|Jordan Peterson|Sam Harris|Yuval Noah Harari,5,Psychology,2019,576 +Enough,John C. Bogle,GZEDWEeM1ogC,Mr. Money Mustache,1,Business & Economics,2010,296 +Enriching the Earth,Vaclav Smil,G9FljcEASycC,Bill Gates,1,Technology & Engineering,2004,338 +Epic Measures,Jeremy N. Smith,Q1edBAAAQBAJ,Bill Gates,1,Health & Fitness,2015,352 +Eradication,Nancy Leys Stepan,TrBJngEACAAJ,Bill Gates,1,Medical,2019,312 +Essays After Eighty,Donald Hall,iaZUBQAAQBAJ,Safi Bahcall,1,Literary Collections,2014,134 +Essays and Aphorisms,Arthur Schopenhauer,EWt_5YLqHcAC,Ryan Holiday,1,Philosophy,2004,256 +Essays in Persuasion,John Maynard Keynes,Rl2LDwAAQBAJ,Warren Buffett,1,Business & Economics,2019,190 +Essential Bukowski,Charles Bukowski,PDOKCwAAQBAJ,Lex Fridman,1,Literary Collections,2016,240 +Essential Cuisine,Michel Bras,CQjqOwAACAAJ,Chris Young,1,"Cooking, French",2008,269 +Essential Enneagram,David Daniels,b0S5n2C1jaIC,Chelsea Handler,1,Psychology,2009,128 +Essentialism,Greg Mckeown,XaGNAQAAQBAJ,Kevin Rose|Noah Kagan,2,Business & Economics,2014,272 +Essentials of Classic Italian Cooking,Marcella Hazan,1FVLv7WS4C4C,Mark Bittman|Samin Nosrat,2,Cooking,2011,704 +Ethan Frome,Edith Wharton,bQ23bAe8BTUC,Caterina Fake,1,Accident victims,1939,181 +Euclid's Elements,Euclid,kT44AAAAMAAJ,Paul Graham,1,Geometry,1765,464 +Evenings and Avenues,Stuart Dischell,ZXxaAAAAMAAJ,Rolf Potts,1,Poetry,1996,69 +Ever the Diplomat,Sherard Cowper-Coles,hGLfMAEACAAJ,Paul Graham,1,Biography & Autobiography,2013,316 +Everyday Heroes,Jody Mitic,3Wc6DwAAQBAJ,Jocko Willink,1,Biography & Autobiography,2017,320 +Everyday Indonesian,Thomas Oey,Eo_QAgAAQBAJ,Eric Weinstein,1,Foreign Language Study,2012,192 +Everyday Millionaires,Chris Hogan,uHaSDwAAQBAJ,Dave Ramsey,1,Business & Economics,2019,272 +Everything Bad is Good for You,Steven Johnson,9_YZyOfgqbEC,Ev Williams,1,Psychology,2006,254 +Everything Happens for a Reason,Kate Bowler,uejWDgAAQBAJ,Bill Gates,1,Biography & Autobiography,2018,208 +Evicted,Matthew Desmond,-QYZCgAAQBAJ,Bill Gates,1,Social Science,2016,448 +Excellent Sheep,William Deresiewicz,1iRyCQAAQBAJ,Bryan Callen,1,Education,2015,256 +Excession,Iain M. Banks,iYMACJeDauIC,Elon Musk|Stewart Brand,2,Fiction,2011,469 +Excursion to Hell,Vincent Bramley,K1huAAAAMAAJ,Jocko Willink,1,"Falkland Islands War, 1982",1992,221 +Exhalation,Ted Chiang,3-WGDwAAQBAJ,Naval Ravikant,1,Fiction,2019,208 +Existence,Rollo May,a9V3kaus0j4C,Jordan Peterson,1,Medical,1994,445 +Exodus,Leon Uris,h2d4yEhXd9cC,Ben Shapiro,1,Fiction,2011,608 +Expert Political Judgment,Philip E. Tetlock,QgGRar_TCjIC,Marc Andreessen|Patrick Collison,2,Political Science,2005,321 +Extreme Ownership,Jocko Willink,fnI9DwAAQBAJ,Casey Neistat|Marc Andreessen|Tim Ferriss,3,Business & Economics,2018,300 +Eyes on the Street,Robert Kanigel,GIcvDwAAQBAJ,Paul Graham,1,City planners,2017,512 +Fables,Bill Willingham,714EvgAACAAJ,Naval Ravikant,1,,2017, +Face to Face,Brian Grazer,yyKwDwAAQBAJ,Ron Conway,1,Business & Economics,2019,208 +Facing Love Addiction,Pia Mellody,0t36pQm_qTYC,Dave Elitch,1,Self-Help,1992,272 +Factfulness,Hans Rosling,TaWWDwAAQBAJ,Barack Obama|Bill Gates|Howard Marks|Jordan Peterson,4,Business & Economics,2019,352 +Facts and Fallacies of Software Engineering,Robert L. Glass,3Ntz-UJzZN0C,Ev Williams,1,Computers,2003,195 +Fahrenheit 451,Ray Bradbury,OYtkbGl2j0sC,Ryan Holiday,1,Fiction,2011,208 +Faith,Sharon Salzberg,ytJmAAAACAAJ,Jerry Colonna,1,Buddhists,2003,176 +Fall On Your Knees,Ann-Marie MacDonald,JSpbbA1zyz4C,Oprah Winfrey,1,Fiction,2011,512 +Fall of Constantinople,Steven Runciman,BAzntP0lg58C,Paul Graham,1,History,1965,256 +"Fall; or, Dodge in Hell",Neal Stephenson,8wWODwAAQBAJ,Naval Ravikant,1,Fiction,2019,896 +Fallen Leaves,Will Durant,iXenBQAAQBAJ,Naval Ravikant,1,History,2014,208 +Falling into Grace,Adyashanti,6KtjEHJmo58C,Naval Ravikant,1,"Body, Mind & Spirit",2011,234 +Family Healing,Salvador Minuchin,FN2ZVOJLez4C,Esther Perel,1,Psychology,1998,304 +Fantasyland,Kurt Andersen,Ke01DwAAQBAJ,Walter Isaacson,1,History,2017,480 +"Faraday, Maxwell, and the Electromagnetic Field",Nancy Forbes,ia9dBwAAQBAJ,Naval Ravikant,1,,2014, +Fast Food Nation,Eric Schlosser,dU13X_AM_N8C,Richard Branson,1,Business & Economics,2012,362 +Fate Is the Hunter,Ernest K. Gann,PmFvJkDPhxwC,Larry Ellison,1,Biography & Autobiography,1986,390 +Father to Son,Harry H. Harrison Jr.,Ofe34qlUUTAC,Eric Weinstein,1,Family & Relationships,2013,324 +Fauna & Family,Gerald Durrell,89AEoOKml58C,Paul Graham,1,,1993,101 +Fear and Loathing in Las Vegas,Hunter S. Thompson,R11qaqN4jzQC,Jordan Peterson|Naval Ravikant,2,Biography & Autobiography,2010,224 +Federal Taxation in America,W. Elliot Brownlee,If2T5ZaFxIEC,Paul Graham,1,Business & Economics,2004,288 +Feel Free,Zadie Smith,YoUqDwAAQBAJ,Barack Obama,1,Literary Collections,2018,480 +Feminism Is for Everybody,bell hooks,0au7QbAJH0gC,Emma Watson,1,Social Science,2000,140 +Feminist Theory,bell hooks,uvIQbop4cdsC,Emma Watson,1,African American women,2000,179 +Feynman Lectures on Computation,Richard P. Feynman,-olQAAAAMAAJ,Patrick Collison,1,Computers,1996,303 +Fiasco,Frank Partnoy,4PCePwAACAAJ,Charlie Munger,1,Business & Economics,1999,283 +Fiasco,Thomas E. Ricks,bLWJWJ0qXEAC,Bryan Callen,1,History,2007,528 +Ficciones,Jorge Luis Borges,qZpbQ2PgnPIC,Naval Ravikant,1,Argentine fiction,1983,279 +Field Gray,Philip Kerr,leJyEu_oglUC,Lewis Cantley,1,Fiction,2011,464 +Fields of Fire,James Webb,uZSODwAAQBAJ,Jocko Willink,1,Fiction,2019,400 +Fierce Femmes and Notorious Liars,Kai Cheng Thom,gk3-MAAACAAJ,Emma Watson,1,Fiction,2016,200 +Fierce Invalids Home From Hot Climates,Tom Robbins,R3dlWXoGGaIC,Ev Williams,1,Fiction,2012,417 +Fifty Shades of Chicken,F.L. Fowler,lyWH9gGHP5YC,Shaun White,1,Cooking,2012,160 +Fifty Shades of Grey,E L James,GbVdlAEACAAJ,Aubrey Marcus,1,Fiction,2013,514 +Fight Club,Chuck Palahniuk,hoGkPfds4tAC,Ryan Holiday,1,Fiction,2005,224 +Fighting for Your Marriage,Howard J. Markman,4ea0-Qzw1CkC,Esther Perel,1,Family & Relationships,2010,464 +Finding the Next Steve Jobs,Nolan Bushnell,xdGKBAAAQBAJ,Ashton Kutcher,1,Biography & Autobiography,2014,256 +Fingerprints of the Gods,Graham Hancock,nP7-It_ol84C,Joe Rogan,1,History,2011,768 +Finite and Infinite Games,James Carse,ObLBJ_w2ZlcC,Graham Duncan|Jane McGonigal|Kevin Kelly|Stewart Brand|Tristan Harris,5,Philosophy,2011,256 +First A Dream,Jim Clayton,78laAAAACAAJ,Warren Buffett,1,Biography & Autobiography,2002,399 +Fishbone,Aimee Nezhukumatathil,1ScgAQAAIAAJ,Rolf Potts,1,Fishbone [musical group],2000,27 +Fishes of the World,Joseph S. Nelson,exTV-GLnCB4C,Tim Ferriss,1,Nature,2007,624 +Florida,Lauren Groff,tHbUugEACAAJ,Barack Obama,1,Florida,2019,277 +Flowers for Algernon,Daniel Keyes,_oG_iTxP1pIC,Jordan Peterson|Naval Ravikant,2,Fiction,2007,304 +Flu,Gina Kolata,1CVLH5XzdBsC,Jonathan Eisen,1,History,2001,330 +Flying Start,Hugh Dundas,s6hczgAACAAJ,Paul Graham,1,History,2011,224 +Focus,Al Ries,VMO9wAEACAAJ,Ev Williams,1,Business & Economics,1997,320 +Food of the Gods,Terence McKenna,mDKJGHtE7VUC,Joe Rogan,1,Religion,2010,336 +Fooled by Randomness,Nassim Nicholas Taleb,DCqFYOrGyegC,Art De Vany|Ev Williams|Howard Marks|James Altucher|Matt Mullenweg|Naval Ravikant|Nick Kokonas,7,Business & Economics,2008,368 +For Whom the Bell Tolls,Ernest Hemingway,TdVQAQAAQBAJ,Jordan Peterson|Josh Waitzkin,2,Fiction,2014,501 +For the Love of Physics,Walter Lewin,xkgzB5kGGwkC,Bill Gates,1,Biography & Autobiography,2012,302 +Forest Bathing,Dr. Qing Li,gjM9DwAAQBAJ,Kevin Rose,1,Self-Help,2018,320 +Forgive and Remember,Charles L. L. Bosk,2CNHgkLW-dAC,Peter Attia,1,Medical,2003,276 +Forgotten Highlander,Alistair Urquhart,AlqCDwAAQBAJ,Jocko Willink,1,History,2010,320 +Fortunate Son,Lewis B. Puller Jr.,04c4XSpgxXEC,Jocko Willink,1,Biography & Autobiography,1991,389 +Forward the Foundation,Isaac Asimov,nuzCP7fWPHEC,Elon Musk,1,Fiction,2012,464 +Foucault's Pendulum,Umberto Eco,_JJOBAAAQBAJ,Patrick Collison,1,Fiction,2014,656 +Foundation,Isaac Asimov,PKV6swEACAAJ,Adam Gazzaley|Elon Musk|Naval Ravikant|Stewart Brand,4,Archives,2016,240 +Foundation and Earth,Isaac Asimov,QoI6QptJvrYC,Elon Musk,1,Fiction,2012,528 +Foundation and Empire,Isaac Asimov,BJcgLVibkrEC,Elon Musk|Stewart Brand,2,Fiction,2004,304 +Foundation's Edge,Isaac Asimov,uoE7v9OJ6rIC,Elon Musk,1,Fiction,1991,450 +Foundations of Tibetan Mysticism,Lama Anagarika Govinda,lRCINAEACAAJ,Steve Jobs,1,"Body, Mind & Spirit",2012,318 +Founders at Work,Jessica Livingston,ktm885vGIXEC,Alexis Ohanian|Paul Graham|Ron Conway|Ryan Holiday,4,Business & Economics,2008,488 +Four Hours in My Lai,Michael Bilton,WENuAAAAMAAJ,Jocko Willink,1,"Mỹ Lại Massacre, Vietnam, 1968",1992,430 +Fragments,Heraclitus,4Zl6LNbWwXMC,Ryan Holiday,1,Aphorisms and apothegms,1987,214 +Frames of Mind,Howard Gardner,wxj6npSaykgC,Charles Koch,1,Education,2011,528 +Francis Crick,Matt Ridley,ublcaqIgPiIC,Naval Ravikant,1,Biography & Autobiography,2012,224 +Frank Stewart's Bridge Club,Frank Stewart,jEx5_SJXl2sC,Bill Gates,1,Games & Activities,2003,192 +Fratricides,Nikos Kazantzakis,qiubQgAACAAJ,Jordan Peterson,1,Greece,1964,252 +Freakonomics,Steven D. Levitt,2pphyRUF3eoC,Daymond John|Ev Williams|James Altucher,3,Business & Economics,2009,336 +Frederick Douglass,David W. Blight,ylTDDwAAQBAJ,Barack Obama,1,Biography & Autobiography,2020,912 +Free Will,Sam Harris,iRpkNcRt1IcC,A.J. Jacobs,1,Science,2012,96 +Free to Choose,Milton Friedman,uq47PgAACAAJ,Arnold Schwarzenegger,1,Business & Economics,2008,338 +Free-Range Kids,Lenore Skenazy,krE1y1SC3uEC,Paul Graham,1,Family & Relationships,2009,256 +Freedom,Jonathan Franzen,s1bs4FKO-lcC,Oprah Winfrey,1,Literary Collections,2013,789 +Freedom from the Known,Jiddu Krishnamurti,YKWHrZpmzYcC,Naval Ravikant,1,Religion,1975,128 +Friday Black,Nana Kwame Adjei-Brenyah,WRFxDwAAQBAJ,Vinod Khosla,1,Fiction,2018,208 +Friday Night Lights,H.G. Bissinger,aRZpCQAAQBAJ,Brian Grazer,1,Sports & Recreation,2015,432 +From Bacteria to Bach and Back,Daniel C. Dennett,PEp8DAAAQBAJ,Esther Dyson|Ray Dalio|Vinod Khosla,3,Philosophy,2017,496 +From Chocolate to Morphine,Andrew Weil,p6zyPxi4PYoC,Patrick Arnold,1,Health & Fitness,2004,304 +From Simi Valley to Silicon Valley,Stephen Gillett,PkfEyQEACAAJ,Eric Schmidt,1,Self-Help,2019,288 +Fundamentals of Modern Physics,Robert Eisberg,7JwxAQAAIAAJ,Bill Nye,1,Science,1967,729 +Furious Love,Sam Kashner,M9fYAgAAQBAJ,Taylor Swift,1,Biography & Autobiography,2013,512 +Future Shock,Alvin Toffler,PJHi444dlRcC,Kevin Kelly,1,Social Science,1990,561 +Futureface,Alex Wagner,rJ9-DwAAQBAJ,Barack Obama,1,Biography & Autobiography,2019,352 +Fuzzy Thinking,Bart Kosko,wIKRGQAACAAJ,Ev Williams,1,Technology & Engineering,1994,336 +Gaia,James Lovelock,6PIkPQAACAAJ,Stewart Brand,1,,2001,192 +Gandhi,Mahatma Gandhi,HUbUcXcXES8C,Cory Booker|Kevin Kelly,2,Religion,2010,248 +Gang Leader for a Day,Sudhir Venkatesh,Y7iY7ACSb7AC,Mark Zuckerberg,1,Biography & Autobiography,2009,320 +Gap Creek,Robert Morgan,wp-2BaWF1UUC,Oprah Winfrey,1,Fiction,2000,336 +Garden Cities of To-Morrow,Ebenezer Howard,ST40B9M9H48C,Soman Chainani,1,Science,2013,176 +Gates,Stephen Manes,cynR_pehxHgC,Ev Williams,1,Biography & Autobiography,1994,560 +Gates of Fire,Steven Pressfield,Oy3EfknwaGAC,Chris Fussell|Ron Conway,2,Fiction,2010,528 +Gathering Moss,Robin Wall Kimmerer,Wcg50WcWJT4C,Maria Popova,1,Nature,2003,168 +"Gauge Theories Of Strong, Weak, And Electromagnetic Interactions",Chris Quigg,Z2WYDwAAQBAJ,Eric Weinstein,1,Science,2013,496 +"Gazelles, Baby Steps & 37 Other Things",Jonathan Acuff,4pJHYgEACAAJ,Dave Ramsey,1,Business & Economics,2011,197 +Geek in Japan,Hector Garcia,6DnRAgAAQBAJ,Derek Sivers,1,Travel,2012,160 +General Relativity for Mathematicians,R.K. Sachs,StziBwAAQBAJ,Eric Weinstein,1,Mathematics,2012,292 +Generating Inequality,Lester C. Thurow,jhpKtAEACAAJ,Paul Graham,1,,1979,258 +Generation X,Douglas Coupland,ma1oBgAAQBAJ,Dave Elitch,1,Fiction,2015,224 +Generations,William Strauss,FTGY-uoCCCoC,Tony Robbins,1,History,1992,544 +Genghis Khan and the Making of the Modern World,Jack Weatherford,A8Y9B5uHQcAC,Ben Horowitz|Daymond John|Lisa Ling|Tim Ferriss,4,History,2005,352 +Genius,Eysenck,eOMi4cCJboMC,Jordan Peterson,1,Psychology,1995,344 +Genius,James Gleick,j42RD66g72oC,Naval Ravikant,1,Biography & Autobiography,2011,532 +Genome,Matt Ridley,7O775xBxfMoC,Charlie Munger|Mark Zuckerberg|Naval Ravikant,3,Science,2013,368 +George's Marvelous Medicine,Roald Dahl,9Z_7DAAAQBAJ,Richard Branson,1,Juvenile Fiction,2016,96 +Get Back in the Box,Douglas Rushkoff,ACDdoOYVXboC,Ev Williams|Keith Rabois,2,Business & Economics,2010,336 +Get What You Deserve!,Various,09FTGwAACAAJ,Seth Godin,1,Self-Help,1997,237 +Getting Better,Charles Kenny,XCdWDgAAQBAJ,Bill Gates,1,Business & Economics,2012,256 +Getting Everything You Can Out of All You've Got,Jay Abraham,q90CGjAOjycC,Neville Medhora|Ramit Sethi,2,Business & Economics,2001,384 +Getting Past No,William Ury,sS2amtSiHYQC,Tim Ferriss,1,Business & Economics,2007,208 +Getting Things Done,David Allen,7PoYBAAAQBAJ,Dustin Moskovitz|Ev Williams|Michael McCullough|Tony Hsieh,4,Business & Economics,2015,352 +Getting To Maybe,Richard Michael Fischl,GQDrAQAAQBAJ,Nick Szabo,1,Study Aids,1999,348 +Getting the Love You Want,Harville Hendrix Ph.D.,Pu9WDwAAQBAJ,Julie Rice|Whitney Cummings,2,Family & Relationships,2019,202 +Getting to Yes,Roger Fisher,sjH3emOkC1MC,Charlie Munger|Drew Houston|Dustin Moskovitz|Nick Ganju|Tim Ferriss,5,Business & Economics,1991,200 +Ghosts of Manila,Mark Kram,2n8mpVHLmVIC,Ben Shapiro,1,Biography & Autobiography,2009,240 +Girl in Landscape,Jonathan Lethem,a4kQBQAAQBAJ,Adam Savage,1,Fiction,2014,288 +Give People Money,Annie Lowrey,QmQ_DwAAQBAJ,Ezra Klein,1,Political Science,2018,272 +Give Smart,Thomas J. Tierney,xl03AwEACAAJ,Bill Gates,1,Business & Economics,2012,257 +Give War a Chance,P. J. O'Rourke,QQEB4j4hHxsC,Eric Weinstein,1,"Persian Gulf War, 1991",1993,238 +Give and Take,Adam Grant,Q16JDQAAQBAJ,Arianna Huffington|Ashton Kutcher|Chip Conley|Daniel Pink|Gretchen Rubin|Krista Tippett|Seth Godin|Susan Cain|Tony Hsieh,9,Business & Economics,2014,307 +Glass,Alan Macfarlane,QjGLee6DZHkC,Nick Szabo,1,Technology & Engineering,2011,189 +Global Catastrophes and Trends,Vaclav Smil,KNxUghLDWG8C,Bill Gates,1,Science,2008,307 +Global Health,Ann Lindstrand,oS6sOwAACAAJ,Bill Gates,1,Medical,2006,326 +Global Warming,John Theodore Houghton,YgTpMEUHtmsC,Bill Gates,1,Science,1997,251 +Go To,Steve Lohr,q4_mNwAACAAJ,Keith Rabois,1,Computer programmers,2002,248 +Go the F**k to Sleep,Adam Mansbach,dNhMzfp-ekAC,A.J. Jacobs,1,Humor,2011,32 +God Emperor of Dune,Frank Herbert,oTgvJWFmjOoC,Elon Musk,1,Fiction,2008,432 +God Is Not Great,Christopher Hitchens,Lm9VdHv0OWEC,Sam Harris,1,Religion,2011,300 +God's Debris,Scott Adams,lP5jAgAAQBAJ,Naval Ravikant,1,Religion,2013,132 +Going Clear,Lawrence Wright,ANOejwEACAAJ,Bryan Callen|Joe Rogan,2,,2016,556 +Going Red,Ed Morrissey,EpkmCgAAQBAJ,Ben Shapiro,1,Political Science,2016,240 +Golden Gates,Conor Dougherty,-TOaDwAAQBAJ,Marc Andreessen,1,Social Science,2020,288 +Gone Tomorrow,Lee Child,FQI7ZsYy2SwC,Malcolm Gladwell,1,"Reacher, Jack (Fictitious character)",2010,557 +"Good Calories, Bad Calories",Gary Taubes,Xdm40JUD9HwC,Naval Ravikant|Peter Attia|Zooko Wilcox,3,Health & Fitness,2008,609 +Good Hope Road,Stuart Dischell,QG-wjwEACAAJ,Rolf Potts,1,Poetry,2016,96 +"Good Night, Little Bear",Patsy Scarry,wxEHzQEACAAJ,Paul Graham,1,,1969, +Good to Great,Jim Collins,7io-2eqxSS0C,Brian Armstrong|Dave Ramsey|Ev Williams|Frank Blake|Jeff Bezos|Max Levchin|Tracy DiNunzio,7,Business & Economics,2011,320 +Goodnight Moon,Margaret Wise Brown,S8_NugAACAAJ,Krista Tippett,1,Bedtime,2012,30 +Googled,Ken Auletta,r12JDQAAQBAJ,Brian Chesky|Keith Rabois,2,Business & Economics,2010,418 +Governing the Commons,Elinor Ostrom,daKNCgAAQBAJ,Stewart Brand,1,Business & Economics,2015,294 +Grand Design,Georg Gerster,J5kuGwAACAAJ,Stewart Brand,1,Aerial photography in geography,1976,200 +Grand Unified Theories,Graham Ross,ccj_swEACAAJ,Eric Weinstein,1,Science,2003,512 +Gratitude,Oliver Sacks,Vd61CgAAQBAJ,Tim Ferriss,1,Biography & Autobiography,2015,64 +Gravitation,Charles W. Misner,zAAuDwAAQBAJ,Eric Weinstein,1,Science,2017,1336 +Great Expectations,Charles Dickens,fhUXAAAAYAAJ,Oprah Winfrey|Richard Branson,2,,1881, +Great Short Poems,Paul Negri,D5MoAwAAQBAJ,Naval Ravikant,1,Poetry,2000,64 +Greeks Bearing Gifts,Philip Kerr,QrmHDwAAQBAJ,Lewis Cantley,1,Fiction,2019,528 +Green Hills of Africa,Ernest Hemingway,ZdFQAQAAQBAJ,Josh Waitzkin,1,Biography & Autobiography,2014,208 +Grimble,Clement Freud,B86WJkKGu0oC,J.K. Rowling,1,Juvenile Fiction,2009,128 +Grit,Angela Duckworth,p14yCwAAQBAJ,Josh Waitzkin|Tim Ferriss,2,Self-Help,2016,464 +Growth,Vaclav Smil,52yuDwAAQBAJ,Bill Gates,1,Political Science,2019,664 +Growth of the Soil,Knut Hamsun,pWlKuv48dQsC,Caterina Fake,1,Fiction,2007,328 +Guerilla Marketing,Jay Conrad Levinson,5yP00eRWSgcC,Drew Houston,1,Business & Economics,2013, +Gulliver's Travels,Jonathan Swift,srVbAAAAQAAJ,Neil deGrasse Tyson,1,,1863,344 +"Gun, with Occasional Music",Jonathan Lethem,kIkQBQAAQBAJ,Adam Savage,1,Fiction,2014,272 +"Guns, Germs, and Steel",Jared Diamond,XLo9DgAAQBAJ,Bill Gates|Charlie Munger|Daniel Ek|Jesse Williams|Joe Rogan|Patrick Arnold|Stewart Brand,7,History,2017,528 +"Guns, Sails, and Empires",Carlo M. Cipolla,ASF8twEACAAJ,Paul Graham,1,Europe,1985,192 +"Gödel, Escher, Bach",Douglas R. Hofstadter,grzEQgAACAAJ,Kevin Kelly|Naval Ravikant|Steve Jurvetson,3,Art and music,2000,832 +Hackers,Steven Levy,mShXzzKtpmEC,Ev Williams,1,Computers,2010,520 +Hackers & Painters,Paul Graham,V9VkmdYlvK4C,Brian Armstrong|Ev Williams|Keith Rabois|Ryan Holiday,4,Computers,1999,198 +Hacks,Donna Brazile,s8YrDwAAQBAJ,Marc Andreessen,1,Political Science,2017,256 +Hagakure,Yamamoto Tsunetomo,KZu3CwAAQBAJ,Naval Ravikant,1,Fiction,2015,89 +Hal Moore on Leadership,Harold G. Moore,MHt-tAEACAAJ,Jocko Willink,1,Command of troops,2017,168 +Half the Sky,Nicholas D. Kristof,tgb8jR280jUC,Emma Watson,1,Political Science,2010,296 +Hallucinogenic Plants,Richard Evans Schultes,H408AAAACAAJ,Dr. Andrew Weil,1,Hallucinogenic plants,1976,160 +Hamlet,William Shakespeare,iAcMAJ4cEGIC,Naval Ravikant|Ryan Holiday,2,Literary Collections,2012,127 +Handbook of the Navigator,Eric Pepin,GgOgJYPWT7sC,Dorian Yates,1,"Body, Mind & Spirit",2011,262 +Hannah Versus the Tree,Leland de la Durantaye,LkvAswEACAAJ,Caterina Fake,1,Fiction,2018,170 +Hansel and Gretel,Neil Gaiman,XRvWoAEACAAJ,Tim Ferriss,1,Children's stories,2014,56 +Happiness,Matthieu Ricard,lfJof4vMsQ0C,Richard Branson,1,Self-Help,2008,304 +Happy City,Charles Montgomery,lWcTAAAAQBAJ,Mr. Money Mustache,1,Political Science,2013,368 +Happy Money,Elizabeth Dunn,DSWylrWYrYgC,Tim Ferriss,1,Business & Economics,2013,224 +Hard Drive,James Wallace,XdYOGBhp0SAC,Charlie Munger,1,Business & Economics,1993,426 +Hard Landing,Thomas Petzinger Jr.,YVORjxZv3VEC,Patrick Collison,1,Business & Economics,1996,594 +Hard-Boiled Wonderland and the End of the World,Haruki Murakami,BgruFujfHF8C,Matt Mullenweg,1,Fiction,2011,416 +Hard-Core,Harley Flanagan,uQgNDQAAQBAJ,Jocko Willink,1,Biography & Autobiography,2016,448 +Harriet the Spy,Louise Fitzhugh,dojO5RBS1x0C,Gretchen Rubin,1,Juvenile Fiction,2009,320 +Harry Potter,J.K. Rowling,txcuDwAAQBAJ,Emma Watson|Gretchen Rubin|Paul Graham|Phil Keoghan|Taylor Swift,5,Juvenile Fiction,2017,448 +Harvesting the Biosphere,Vaclav Smil,IKHopZG3drgC,Bill Gates,1,Nature,2013,307 +He Was No Coward,Janet Booth,qRNaswEACAAJ,Jocko Willink,1,,2017,254 +Healing Back Pain,John E. Sarno,EnN2sVVZOAIC,Tim Ferriss,1,Health & Fitness,2001,208 +Health Care Will Not Reform Itself,George C. Halvorson,St2ajsesGlEC,Bill Gates,1,Business & Economics,2009,184 +Heart Berries,Terese Marie Mailhot,bYktDwAAQBAJ,Emma Watson,1,Biography & Autobiography,2018,142 +Heart for the Fight,Brian Stann,PWV_F0DnxaQC,Jocko Willink,1,Biography & Autobiography,2010,320 +"Hell Yes, I'd Do It Again",T. Fred Harvey,SaSTtgEACAAJ,Jocko Willink,1,,2017,334 +Helmet for My Pillow,Robert Leckie,TdDWDwAAQBAJ,Jocko Willink,1,History,, +Henry V,William Shakespeare,hvsnAAAAYAAJ,Jocko Willink,1,,1868,93 +Heraclitean Fire,Erwin Chargaff,xM5qAAAAMAAJ,Eric Weinstein,1,Science,1978,252 +Here Comes Everybody,Clay Shirky,mafZyckH_bAC,Ryan Holiday,1,Business & Economics,2008,327 +Here on Earth,Alice Hoffman,OTziP1HwWlkC,Oprah Winfrey,1,Fiction,2013,304 +Heretics of Dune,Frank Herbert,nWtewwEACAAJ,Elon Musk,1,Fiction,2019,688 +Hidden Champions of the Twenty-First Century,Hermann Simon,zoj3R9DuXwwC,Tom Peters,1,Business & Economics,2009,402 +High Growth Handbook,Elad Gil,9U1BuQEACAAJ,Brian Armstrong,1,,2018, +High Output Management,Andrew S. Grove,piCeCgAAQBAJ,Ben Horowitz|Brian Armstrong|Brian Chesky|Drew Houston|Keith Rabois|Larry Ellison|Marc Andreessen|Mark Zuckerberg|Ron Conway|Tobi Lütke,10,Business & Economics,2015,272 +Hillbilly Elegy,J. D. Vance,7Y9KDwAAQBAJ,Ben Shapiro|Bill Gates|Bill Nye|Jason Calacanis,4,Social Science,2018,288 +Hindu Mysticism,S. N. Dasgupta,UCc4ngEACAAJ,Steve Jobs,1,,2013,190 +Hiroshima,John Hersey,SIiVDwAAQBAJ,Alex Blumberg,1,History,2019,160 +His Dark Materials Trilogy,Philip Pullman,T9lSPgAACAAJ,Emma Watson|Gretchen Rubin|Soman Chainani,3,Juvenile Fiction,2001, +History of Western Philosophy,Bertrand Russell,SA_hLTf__QMC,Sam Harris,1,Philosophy,2013,728 +History of the Peloponnesian War,Thucydides,ywIqAAAAYAAJ,Steven Pressfield,1,Greece,1858,594 +History of the World,J.M. Roberts,kz_KxAEACAAJ,Paul Graham,1,Juvenile Nonfiction,2000,1968 +Hit Men,Fredric Dannen,aJTugyGjLOQC,Daniel Ek,1,Music,2011,432 +Hit Refresh,Satya Nadella,kDeLDgAAQBAJ,Bill Gates,1,Business & Economics,2017,288 +Hitch-22,Christopher Hitchens,R_3s8FOjSH0C,Sam Harris,1,Biography & Autobiography,2011,516 +Hitler,Ian Kershaw,W4sUi6omc3cC,Brandon Stanton,1,History,2001,299 +Holes,Louis Sachar,TofnwAEACAAJ,Gretchen Rubin,1,Adventure stories,2010,315 +Homage to Catalonia,George Orwell,bAqcCwAAQBAJ,Ben Shapiro,1,History,2016,198 +Homo Deus,Yuval Noah Harari,H2t_CwAAQBAJ,Bill Gates|Naval Ravikant|Richard Branson|Vinod Khosla,4,Science,2017,464 +Homo Ludens,Johan Huizinga,ALeXRMGU1CsC,Stewart Brand,1,Social Science,1998,220 +Honey From a Weed,Patience Gray,k54JAAAACAAJ,Samin Nosrat,1,Cooking,1997,374 +Hons and Rebels,Jessica Mitford,jjfhAQAACAAJ,J.K. Rowling,1,Biography & Autobiography,2004,284 +Hooked,Nir Eyal,dsz5AwAAQBAJ,Marc Goodman,1,Business & Economics,2014,256 +Hope for the Flowers,Trina Paulus,qXAsDwAAQBAJ,"Mike Maples, Jr.",1,Fiction,2017,160 +Horns,Joe Hill,UTnop6nTpX0C,Neil Gaiman,1,Fiction,2010,416 +"Hot, Flat, and Crowded",Thomas L. Friedman,BpkALHFTnhUC,Bill Gates,1,Political Science,2009,528 +House of Leaves,Mark Z. Danielewski,qGA_3RGqTkQC,Amelia Boone,1,Fiction,2000,709 +House of Sand and Fog,Andre Dubus III,-Lc-BAAAQBAJ,Oprah Winfrey,1,Fiction,2014,368 +House on Fire,William H. Foege,C2Fk2OJ9wwQC,Bill Gates,1,Medical,2011,240 +How Adam Smith Can Change Your Life,Russ Roberts,4PfaCwAAQBAJ,Tim O’Reilly,1,Business & Economics,2015,272 +How Asia Works,Joe Studwell,dNs33Q1cAX0C,Bill Gates|Patrick Collison,2,Business & Economics,2013,320 +How Buildings Learn,Stewart Brand,zkgRgdVN2GIC,Caterina Fake,1,Architecture,1995,252 +How Democracies Die,Steven Levitsky,TwtFDwAAQBAJ,Barack Obama,1,History,2018,320 +How Full Is Your Bucket?,Tom Rath,Qd5DCwAAQBAJ,Peter Mallouk,1,Business & Economics,2009,32 +How Google Works,Eric Schmidt,Yk9zAwAAQBAJ,Keith Rabois,1,Business & Economics,2014,352 +How Innovation Works,Matt Ridley,0ymwDwAAQBAJ,Naval Ravikant,1,Business & Economics,2020,416 +How Life Imitates Chess,Garry Kasparov,dRlW4jQ1fQEC,Safi Bahcall,1,Business & Economics,2010,240 +How Not to Be Wrong,Jordan Ellenberg,_EQCDAAAQBAJ,Bill Gates|Keith Rabois|Nick Ganju,3,Business & Economics,2015,480 +How Proust Can Change Your Life,Alain de Botton,sTlqDwAAQBAJ,Matt Mullenweg,1,Literary Criticism,2019, +How To Make Maximum Money In Minimum Time,Gary C. Halbert,XGPEGwAACAAJ,Neville Medhora,1,"Advertising, Direct-mail",1990,111 +How To Win Friends and Influence People,Dale Carnegie,1rW-QpIAs8UC,DJ Vlad|Dave Ramsey|Daymond John|Derek Sivers|Dustin Moskovitz|Ken Block|Paul Graham|Scott Adams|Shay Carl|Strauss Zelnick|Warren Buffett,11,Self-Help,2010,320 +How Will You Measure Your Life?,Clayton M. Christensen,MWa_DQAAQBAJ,"Mike Maples, Jr.",1,Business & Economics,2017,64 +How the Scots Invented the Modern World,Arthur Herman,3e9DAT257LkC,Charlie Munger,1,History,2007,480 +How to Actually Change Your Mind,Eliezer Yudkowsky,YPWdvwEACAAJ,Liv Boeree,1,,2018, +How to Be Topp,Ronald Searle,l9XcAQAACAAJ,Paul Graham,1,Endowed public schools (Great Britain),1992,105 +How to Be a Movie Star,William J. Mann,JauvKeSpnEYC,Margaret Cho,1,Biography & Autobiography,2010,496 +How to Be a Woman,Caitlin Moran,K3dul9hRZOMC,Amanda Palmer|Emma Watson,2,Feminism,2011,313 +How to Change Your Mind,Michael Pollan,UfG1uwEACAAJ,Aubrey Marcus|Bryan Johnson|Hamilton Morris|Naval Ravikant|Paul Stamets|Peter Attia|Tim Ferriss|Vinod Khosla|Yuval Noah Harari,9,Hallucinations and illusions,2019,480 +How to Cook Everything,Mark Bittman,QzZhicXEZ3cC,Laura R Walker,1,Cooking,2011,1056 +How to Dress an Egg,Peter Kaminsky,iLGoDwAAQBAJ,Michael Pollan,1,Cooking,2020,272 +How to Fail at Almost Everything and Still Win Big,Scott Adams,7FZ6AcGmT0AC,Naval Ravikant,1,Business & Economics,2013,256 +How to Fly a Horse,Kevin Ashton,yvSaBwAAQBAJ,Joel McHale,1,,2015, +How to Get Filthy Rich in Rising Asia,Mohsin Hamid,aebV0bRgN_MC,Chris Sacca|Tim Ferriss,2,Fiction,2013,240 +How to Get Rich,Felix Dennis,7OslR26XcNEC,Neville Medhora,1,Business & Economics,2011,352 +How to Lie with Statistics,Darrell Huff,5oSU5PepogEC,Bill Gates|Neil deGrasse Tyson,2,Mathematics,2010,144 +How to Live,Sarah Bakewell,27yZQxm0OX8C,Marc Andreessen|Ryan Holiday,2,Biography & Autobiography,2011,400 +How to Make Millions with Your Ideas,Dan S. Kennedy,1kbu9BmuzZcC,Tim Ferriss,1,Business & Economics,1996,264 +How to Make People Like You in 90 Seconds or Less,Nicholas Boothman,RJ1gJ6xakiQC,Derek Sivers,1,Family & Relationships,2008,203 +How to Measure Anything,Douglas W. Hubbard,693e2X6XV3MC,Julia Galef|Nick Ganju,2,Business & Economics,2007,287 +How to Read a Book,Mortimer J. Adler,Z5PpkQadm5EC,Kevin Systrom,1,Language Arts & Disciplines,2011,426 +How to Spend $50 Billion to Make the World a Better Place,Bjørn Lomborg,vwlUmwEACAAJ,Bill Gates,1,Economic development,2013,183 +How to Spend $75 Billion to Make the World a Better Place,Bjørn Lomborg,vwlUmwEACAAJ,Jordan Peterson,1,Economic development,2013,183 +How to Stop Worrying and Start Living,Dale Carnegie,WSsXDQAAQBAJ,Terry Crews|Tim Ferriss,2,Self-Help,2016,278 +How to Talk So Kids Will Listen & Listen So Kids Will Talk,Adele Faber,2KFcJln1ozIC,Brian Armstrong,1,Family & Relationships,2012,345 +How to Talk to Anyone,Leil Lowndes,wH43PObvfugC,Derek Sivers,1,Business & Economics,2003,368 +How to Teach Your Baby Math,Glenn Doman,EjSIGQAACAAJ,Naval Ravikant,1,Education,2001,242 +How to Teach Your Baby to Read,Glenn Doman,PSisDwAAQBAJ,Naval Ravikant,1,,, +How to Win at the Sport of Business,Mark Cuban,AIy0VgBESqIC,Jason Khalipa,1,Business & Economics,2011,67 +How to Write a Good Advertisement,Victor O. Schwab,lCPrCgAAQBAJ,Scott Adams,1,Business & Economics,2015,252 +"How to be Strong, Healthy and Happy",Bob Hoffman,tnqXpwAACAAJ,Jocko Willink,1,Sports & Recreation,2011,456 +Howard Hughes,Donald L. Barlett,ivZGrgLszbcC,Elon Musk,1,Biography & Autobiography,2011,688 +Howl and Other Poems,Allen Ginsberg,SXbesgEACAAJ,Darren Aronofsky,1,,2015,46 +Human Action,Ludwig Von Mises,dmsiDAAAQBAJ,Charles Koch,1,Business & Economics,2016, +Human Compatible,Stuart Russell,VMq_wwEACAAJ,Elon Musk,1,,2019,320 +Humans Need Not Apply,Jerry Kaplan,yatJCgAAQBAJ,Brian Armstrong,1,Computers,2015,256 +Humiliation,William Ian Miller,a6GIohQF_BMC,Sam Harris,1,Literary Collections,1995,270 +Hunger Makes Me a Modern Girl,Carrie Brownstein,pyBhDQAAQBAJ,Emma Watson,1,Biography & Autobiography,2016,256 +Hyperbole and a Half,Allie Brosh,rBNupiFKTGEC,Bill Gates,1,Humor,2013,288 +I Always Look Up the Word Egregious,Maxwell Nurnberg,DoFlPwAACAAJ,Eric Weinstein,1,Vocabulary,1981,290 +I Am That,Nisargadatta Maharaj,brX5vQAACAAJ,Sam Harris,1,,2016,142 +I Capture the Castle,Dodie Smith,vfHr_GVR_wYC,J.K. Rowling|Lisa Randall,2,Young Adult Fiction,2012,592 +I Contain Multitudes,Ed Yong,4qzrCgAAQBAJ,Bill Gates,1,Science,2016,368 +I Didn't Do It for You,Michela Wrong,Yz2kmFZqU1MC,Patrick Collison,1,History,2009,480 +I Don't Want to Talk About It,Terrence Real,t1oTjCzKPEsC,Peter Attia,1,Self-Help,1999,384 +I Fought With Custer,Charles Windolph,E6t3ODKOQkkC,Jocko Willink,1,History,1987,236 +I Heard My Country Calling,James Webb,d1woAgAAQBAJ,Jocko Willink,1,Biography & Autobiography,2014,400 +I Know This Much Is True,Wally Lamb,KZpUyvnWdIoC,Oprah Winfrey,1,Fiction,1999,912 +I Know Why the Caged Bird Sings,Maya Angelou,Z2q_1A0nlvIC,Richard Branson,1,Biography & Autobiography,2010,288 +I Put a Spell on You,Nina Simone,5FvQAQAACAAJ,Nicholas McCarthy,1,Music,1993,208 +I Remember The Last War,Bob Hoffman,qM8BAAAAMAAJ,Jocko Willink,1,"World War, 1914-1918",1940,320 +I Said No!,Kimberly King,84aVPAAACAAJ,Jocko Willink,1,Juvenile Fiction,2008,38 +I'm No Hero,Charlie Plumb,nSSNPQAACAAJ,Jocko Willink,1,Biography & Autobiography,1991,287 +"I, Claudius",Robert Graves,ZqsaAwAAQBAJ,Jordan Peterson,1,Fiction,2014,472 +Iacocca,Lee Iacocca,UrUDoIDN2voC,Ramit Sethi,1,Biography & Autobiography,1986,365 +Ibogaine Explained,Peter Frank,9tv3nAEACAAJ,Martin Polanco,1,,2013,76 +Ice Age,John Gribbin,0EVRAAAAMAAJ,Charlie Munger,1,History,2001,104 +Iceland Small World,Sigurgeir Sigurjonsson,PBE7mwEACAAJ,Anníe Mist Þórisdóttir,1,,2012,118 +Icy Sparks,Gwyn Hyman Rubio,vNVrmr-lNPQC,Oprah Winfrey,1,Fiction,2001,336 +Identity,Francis Fukuyama,OjpIDwAAQBAJ,Bill Gates,1,Political Science,2018,240 +Idoru,William Gibson,r8ezxsszSr0C,Jason Calacanis,1,Fiction,2003,400 +If The Dead Rise Not,Philip Kerr,-pL-wAEACAAJ,Lewis Cantley,1,Fiction,2010,455 +If This Is a Man and The Truce,Primo Levi,6ZyHAgAAQBAJ,David Blaine|Esther Perel,2,History,2014,400 +If the Universe Is Teeming with Aliens ... Where is Everybody?,Stephen Webb,Kp6g79LuKWEC,Elon Musk|Patrick Collison,2,Science,2002,288 +Ignition!,John Drury Clark,_JZcDwAAQBAJ,Elon Musk,1,Biography & Autobiography,2018,302 +Ikigai,Héctor García,rkBRDwAAQBAJ,Ryan Hoover,1,Family & Relationships,2018,194 +Illusions,Richard Bach,abAiAQAAQBAJ,Naval Ravikant,1,Fiction,2013,144 +Imagined Worlds,Freeman Dyson,MOC8UJPuvO8C,Stewart Brand,1,,1999,216 +"Immigrant, Montana",Amitava Kumar,y-FWDwAAQBAJ,Barack Obama,1,Fiction,2018,320 +Impossible to Ignore,Carmen Simon,lvnnCwAAQBAJ,Scott Adams,1,Business & Economics,2016,256 +In Cold Blood,Truman Capote,TH5uM_f0MRwC,Ben Shapiro|Sam Harris,2,True Crime,2013,396 +In Defense of Food,Michael Pollan,kX8D_7RvqTsC,Richard Branson,1,Business & Economics,2008,256 +In FED We Trust,David Wessel,nSgC25PBTuUC,Bill Gates,1,Business & Economics,2009,336 +In Other Words,Ellen Bialystok,r2djAAAAMAAJ,Tim Ferriss,1,Language Arts & Disciplines,1994,246 +In Over Our Heads,Robert Kegan,qQ6YlMKfyQ4C,Graham Duncan|Ray Dalio,2,Psychology,1994,396 +In Patagonia,Bruce Chatwin,-U7pirMQuZEC,Richard Branson,1,Travel,2003,240 +In Praise of Idleness,Bertrand Russell,CnlbMP_vBmgC,Ed Cooke,1,Philosophy,2004,171 +In Praise of Shadows,Junichiro Tanizaki,jCGwDwAAQBAJ,Tim Ferriss,1,Antiques & Collectibles,2019,128 +In Search of Excellence,Tom Peters,4uiSPgAACAAJ,Ev Williams,1,Language Arts & Disciplines,2008,32 +In Search of Lost Time,Marcel Proust,GPhcAAAAMAAJ,Alain de Botton,1,Fiction,2003,864 +In The Plex,Steven Levy,V1u1f8sv3k8C,Charlie Munger|Paul Graham,2,Business & Economics,2011,432 +In an Uncertain World,Robert Rubin,CqsG3SuHSXcC,Warren Buffett,1,Business & Economics,2004,427 +In the Beginning...Was the Command Line,Neal Stephenson,T39vdDvyPzUC,Ev Williams,1,Computers,2009,160 +In the Body of the World,Eve Ensler,ITNbkVvfYZsC,Emma Watson,1,Biography & Autobiography,2013,240 +In the Company of Giants,Rama Dev Jager,OlmZPwAACAAJ,Keith Rabois,1,Business & Economics,1997,232 +In the Footsteps of Mr. Kurtz,Michela Wrong,2h814GrJUskC,Patrick Collison,1,History,2012,336 +In the Heart of the Sea,Nathaniel Philbrick,roXy5kT34j4C,Richard Branson,1,History,2001,320 +In the Shadow of Statues,Mitch Landrieu,ZtCIDwAAQBAJ,Barack Obama,1,,2019,240 +In-N-Out Burger,Stacy Perman,m3RcBwAAQBAJ,Richard Branson,1,,, +Inch and Miles,John R. Wooden,OfFjMQAACAAJ,Michael Gervais,1,Reading (Elementary),2004,48 +Incognito,David Eagleman,fyWwDrn6_H4C,Ray Dalio,1,Science,2011,304 +Incompleteness,Rebecca Goldstein,tXk2AAAAQBAJ,Patrick Collison,1,Biography & Autobiography,2006,296 +Indistractable,Nir Eyal,_KjNDwAAQBAJ,Ryan Hoover,1,Distraction (Psychology),2020,318 +Infinite Jest,David Foster Wallace,9uXSayGPlgYC,Peter Attia,1,Fiction,2011,1104 +Infinite Powers,Steven Strogatz,AzKQDwAAQBAJ,Naval Ravikant,1,History,2019,384 +Infinite in All Directions,Freeman J. Dyson,ahOq7Fy4WAoC,Stewart Brand,1,Science,2004,352 +Influence,Robert B. Cialdini PhD,5dfv0HJ1TEoC,Adam Robinson|Charlie Munger|Max Levchin|Naval Ravikant|Ramit Sethi|Samy Kamkar|Scott Adams|Tobi Lütke|Warren Buffett,9,Self-Help,2009,336 +Infomocracy,Malka Older,fYoUvgAACAAJ,Daniel Pink,1,Fiction,2017,400 +Information Rules,Carl Shapiro,aE_J4Iv_PVEC,Tim O’Reilly,1,Business & Economics,1998,352 +Innovation and Entrepreneurship,Peter F. Drucker,1y331zUzhTEC,Matt Mullenweg,1,Business & Economics,2012,272 +Insanely Simple,Ken Segall,f-rfwWCgt8UC,Keith Rabois,1,Creative ability in business,2012,225 +Instructions for His Generals,Frederick the Great,M0M6MtSXVkwC,Jocko Willink,1,History,2012,112 +Intermediate Microeconomics,Hal R. Varian,YTGQuAAACAAJ,Tim O’Reilly,1,,2011,779 +Interventions,Kofi Annan,oR04gnJHpTAC,Bill Gates,1,Biography & Autobiography,2012,400 +Into Thin Air,Jon Krakauer,gt7EQgH8-b4C,Richard Branson,1,Travel,1998,320 +Into the Fire,Dakota Meyer,iHNHPxswpQUC,Jocko Willink,1,Biography & Autobiography,2012,256 +Into the Wild,Jon Krakauer,m9BiDwAAQBAJ,Gretchen Rubin,1,Biography & Autobiography,2018, +Introduction to Econometrics,H Stock James,MtdNNgAACAAJ,Eric Weinstein,1,Business & Economics,2008,379 +Introduction to Linear Algebra,Gilbert Strang,eewnAQAAIAAJ,Eric Weinstein,1,Mathematics,1993,472 +Introduction to Mathematical Philosophy,Bertrand Russell,WQ7tnG07_68C,Vlad Zamfir,1,Philosophy,2007,220 +Introduction to Superstrings,Michio Kaku,RYQHCAAAQBAJ,Eric Weinstein,1,Science,2012,587 +Introductory Econometrics,Jeffrey M. Wooldridge,64vt5TDBNLwC,Eric Weinstein,1,Business & Economics,2008,896 +Inversions,Iain M. Banks,cO00U2Llra8C,Elon Musk,1,Fiction,2007,352 +Investing Between the Lines,L.J. Rittenhouse,LmhVdgm0GnkC,Warren Buffett,1,Business & Economics,2012,240 +Invisible Man,Ralph Ellison,foSLDQAAQBAJ,Jacqueline Novogratz,1,Fiction,1995,581 +Invisible Selling Machine,Ryan Deiss,R5YSrgEACAAJ,Daymond John,1,,2015, +Island,Aldous Huxley,IMpp6wIG5IIC,Aubrey Marcus|Jordan Peterson,2,Classical fiction,2005,286 +Island of the Blue Dolphins,Scott O'Dell,8oV5m9phpoYC,Kelly Starrett,1,Juvenile Fiction,1990,181 +Islandia,Austin Tappan Wright,GEBJPgAACAAJ,Tim O’Reilly,1,Consuls,2007,1024 +It Can't Happen Here,Sinclair Lewis,pXMZAwAAQBAJ,Daniel Pink,1,Foreign Language Study,2011,458 +It Would Be So Nice If You Weren't Here,Charles Grodin,AhwIAQAAMAAJ,Jon Favreau,1,Actors,1989,317 +It's All Too Much,Peter Walsh,WrntwXf46ysC,Kevin Kelly,1,Self-Help,2009,240 +It's Called a Breakup Because It's Broken,Greg Behrendt,BhfVkEMcbjwC,Dita Von Teese,1,Self-Help,2005,208 +It's Not About the Bike,Lance Armstrong,7zO0mbJUWHUC,Ev Williams,1,Biography & Autobiography,2012,320 +"It's Not How Good You Are, It's How Good You Want to Be",Paul Arden,ZWnGQgAACAAJ,Casey Neistat,1,Self-Help,2003,128 +Ivanhoe,Sir Walter Scott,NY3P7vfu2PoC,Murray Carter,1,,1874, +"Jab, Jab, Jab, Right Hook",Gary Vaynerchuk,he_IlgEACAAJ,Chase Jarvis,1,Business & Economics,2013,224 +Jack,Jack Welch,7Ns0HQAACAAJ,Warren Buffett,1,Chief executive officers,2003,586 +Jack Kennedy,Chris Matthews,vKNGhCqmFRYC,Patrick Arnold,1,Biography & Autobiography,2011,496 +Jailhouse Strong,Josh Bryant,1hTusgEACAAJ,Charles Poliquin,1,Exercise,2015,106 +Jane Eyre,Charlotte Bronte,64sGAAAAQAAJ,Gretchen Rubin,1,,1868, +Japanese Chess,Trevor Leggett,DgnRAgAAQBAJ,Tim Ferriss,1,Games & Activities,2011,128 +Japanese Verbs & Essentials of Grammar,Rita Lampkin,hJZUDt9587wC,Tim Ferriss,1,Foreign Language Study,2003,157 +Jerusalem,Yotam Ottolenghi,GZkGpG0eybwC,Sam Kass,1,Cooking,2012,320 +Jesus' Son,Denis Johnson,Jh7La5EIaWMC,James Altucher,1,Fiction,2009,133 +Jewel,Bret Lott,0RlW6FIdvMYC,Oprah Winfrey,1,Fiction,2011,368 +Jim Grant,Peter Adamson,nTlXdqrnBeQC,Bill Gates,1,Social Science,2002,172 +Jimmy Corrigan,Chris Ware,v1NQAAAAMAAJ,Ev Williams,1,Comics & Graphic Novels,2000,380 +Jitterbug Perfume,Tom Robbins,9K6oJ3mezL4C,Ev Williams,1,Fiction,2003,352 +Joe Beef,Frederic Morin,GmxKDwAAQBAJ,Joe Rogan,1,Cooking,2018,352 +Joel on Software,Joel Spolsky,xdxrDYZyNLUC,Ev Williams,1,Computers,2004,384 +John Bogle on Investing,John C. Bogle,TAD0BgAAQBAJ,Mr. Money Mustache,1,Business & Economics,2015,512 +Johnny Got His Gun,Dalton Trumbo,GKlEAgAAQBAJ,Cheryl Strayed,1,Fiction,2007,288 +Johnny and the Dead,Terry Pratchett,k_HrwAEACAAJ,Neil Gaiman,1,Cemeteries,2018,224 +Jonathan Livingston Seagull,Richard Bach,0lHRBAAAQBAJ,"Ev Williams|Laird Hamilton|Mike Maples, Jr.|Peter Attia|Wim Hof",5,Fiction,2014,144 +Jonathan Strange and Mr Norrell,Susanna Clarke,_i_DLILJzUwC,Neil Gaiman,1,Fiction,2005,1024 +Journey to the End of the Night,Louis-Ferdinand Céline,pNF66OI692UC,Neil Strauss,1,Fiction,2006,453 +Joy on Demand,Chade-Meng Tan,D01evgAACAAJ,Tim Ferriss,1,Self-Help,2017,256 +Joyful Wisdom,Yongey Mingyur Rinpoche,md5P4Hv35y8C,Safi Bahcall,1,Religion,2010,304 +Judgment Under Uncertainty,Daniel Kahneman,zcJEAQAAIAAJ,Adam Robinson,1,,1985,144 +Judgment in Managerial Decision Making,Max H. Bazerman,xkruAAAAMAAJ,Charlie Munger,1,Business & Economics,2008,230 +Julia and Jacques Cooking at Home,Julia Child,g2xnQgAACAAJ,Adam Savage,1,Cooking,1999,430 +Jurassic Park,Michael Crichton,MNeEFe9qU3cC,Richard Branson,1,Fiction,2012,448 +Just Kids,Patti Smith,kwnLdtIfhh0C,Emma Watson|Seth Godin,2,Biography & Autobiography,2010,288 +Just Mercy,Bryan Stevenson,mTBXBgAAQBAJ,Cory Booker|Howard Schultz|Richard Branson,3,Biography & Autobiography,2015,352 +Justice,Michael J. Sandel,ZEbSSqwIhDsC,J.K. Rowling,1,Philosophy,1998,231 +Justice as Fairness,John Rawls,AjrXZIlbK1cC,Patrick Collison,1,Philosophy,2001,214 +Kelly,Clarence L. Johnson,S51fBgAAQBAJ,Paul Graham,1,Technology & Engineering,2012,224 +Kill Decision,Daniel Suarez,BGACDAAAQBAJ,Marc Andreessen,1,Fiction,2013,495 +Killers of the Flower Moon,David Grann,C5VstAEACAAJ,Jacqueline Novogratz,1,Homicide investigation,2018,339 +Killing Floor,Lee Child,ADiMDQAAQBAJ,Malcolm Gladwell,1,Fiction,2012,536 +King Lear,William Shakespeare,qodbLkpXG6AC,Steve Jobs,1,Literary Criticism,2008,340 +King of Clubs,Robert Dedman,ZV3DPAAACAAJ,Blake Mycoskie,1,Biography & Autobiography,1998,220 +King of Hearts,G. Wayne Miller,m34P6TK0-k8C,Peter Attia,1,Biography & Autobiography,2010,320 +King of the World,David Remnick,gMGVCwAAQBAJ,Peter Attia,1,African American boxers,2015,352 +Kissinger,Walter Isaacson,rDqcp3WtoqoC,George Raveling|Scott Belsky,2,Biography & Autobiography,2013,896 +Kitchen Confidential,Anthony Bourdain,cocVLbFkgyQC,Eric Ripert|Jon Favreau,2,Biography & Autobiography,2008,320 +Knowledge And Decisions,Thomas Sowell,oaKSswEACAAJ,Steven Pinker,1,Law,1996,448 +Knowledge and Power,George Gilder,nTVUWNt2_JsC,Ben Shapiro,1,Political Science,2013,400 +LISP 1.5 Programmer's Manual,John McCarthy,68j6lEJjMQwC,Alan Kay,1,Computers,1965,106 +Labyrinths,Jorge Luis Borges,Jumamrx5UgoC,Caterina Fake,1,Literary Collections,1964,260 +Lake Success,Gary Shteyngart,7LyWDwAAQBAJ,Max Levchin,1,Fiction,2019,352 +Land of Promise,Michael Lind,y_5MtQAACAAJ,Paul Graham,1,History,2013,592 +Last Exit to Brooklyn,Hubert Selby Jr.,MFh3ngEACAAJ,Darren Aronofsky,1,Fiction,2013,134 +Lateral Thinking,Edward de Bono,4k5UAwAAQBAJ,Tim Ferriss,1,Self-Help,2014,160 +Lead Yourself First,Raymond M. Kethledge,x4VWswEACAAJ,Brené Brown|Dustin Moskovitz,2,Business & Economics,2018,240 +Leadership,Doris Kearns Goodwin,qz9QswEACAAJ,LeBron James|Scott Belsky,2,,2018,288 +Leadership and Self-Deception,The Arbinger Institute,ZjYP5o18qQUC,Dustin Moskovitz,1,Business & Economics,2010,199 +Leadership on the Line,Martin Linsky,c3mYE7jNvn0C,Jonathan Sacks,1,Business & Economics,2002,252 +Leadership the Outward Bound Way,Outward Bound USA,PvcqSQ1A6_IC,Ray Dalio,1,Business & Economics,2007,430 +Leading,Alex Ferguson,qGLkCwAAQBAJ,Daniel Ek,1,Family & Relationships,2016,416 +Lean In,Sheryl Sandberg,y9_mxZLYiiMC,Richard Branson,1,Biography & Autobiography,2013,240 +Lean Thinking,James P. Womack,2eWHaAyiNrgC,Jeff Bezos,1,Business & Economics,2010,400 +Learn or Die,Edward Hess,a_fSBAAAQBAJ,Ray Dalio,1,Business & Economics,2014,288 +Learning Not to Drown,Anna Shinoda,wo2RDwAAQBAJ,Mike Shinoda,1,Young Adult Fiction,2019,352 +Learning To Love Yourself,Gay Hendricks Ph.D.,I5FbzgAACAAJ,Brian Armstrong,1,Family & Relationships,2011,122 +Learning to Breathe Fire,J.C. Herz,XHA6DQAAQBAJ,Stewart Brand,1,Health & Fitness,2015,368 +Leaves of Grass,Walt Whitman,X1d8gxhWQvMC,Kevin Kelly|Rolf Potts,2,Poetry,2005,184 +Lee Kuan Yew,Graham Allison,geiCymK1IWIC,Fareed Zakaria,1,Biography & Autobiography,2013,186 +Lenin,Victor Sebestyen,LkrTtAEACAAJ,Ben Horowitz,1,Biography & Autobiography,2018,592 +Leonardo da Vinci,Walter Isaacson,vkA5DwAAQBAJ,Bill Gates|Mukesh Ambani,2,Biography & Autobiography,2017,624 +Let Your Life Speak,Parker J. Palmer,lGwHBAAAQBAJ,Jerry Colonna,1,Religion,1999,128 +Letters from a Self-Made Merchant to His Son,George Horace Lorimer,Wg5FAAAAIAAJ,Ryan Holiday,1,Conduct of life,1902,312 +Letters from a Stoic,Lucius Annaeus Seneca,T5lhCgAAQBAJ,Jerzy Gregorek|Naval Ravikant|Ryan Holiday|Tim Ferriss,4,Religion,2015,414 +Letters of Note,Shaun Usher,0yZvzQEACAAJ,Caterina Fake,1,Rome,1889, +Letters to His Son on the Art of Becoming a Man of the World and a Gentleman,The Earl of Chesterfield,Ft9vDwAAQBAJ,Ryan Holiday,1,Fiction,2018,116 +Letters to a Young Poet,Rainer Maria Rilke,_wofmBiXXv0C,Joseph Gordon-Levitt|Krista Tippett|Tim Ferriss,3,Language Arts & Disciplines,2010,128 +Level 4,Joseph B McCormick,PCS_rQEACAAJ,Jonathan Eisen,1,Science,2015,400 +Levels of the Game,John McPhee,GDf_AwAAQBAJ,Daniel Pink|Samin Nosrat|Stephen Dubner|Tim Ferriss,4,,2014,176 +Liar's Poker,Michael Lewis,5NfZvS8gCeQC,Tim Ferriss|Tim O’Reilly,2,Biography & Autobiography,2010,256 +Liberating Learning,Terry M. Moe,Xz67xm3SxXYC,Bill Gates,1,Education,2009,223 +Liberty Under Siege,Walter Karp,4Hr0QsHDD4MC,Michael Pollan,1,Political Science,1993,261 +"Liberty, Equality, Fraternity",James Fitzjames Stephen,0I9fAAAAcAAJ,Ben Shapiro,1,Equality,1874,370 +Lie Algebras In Particle Physics,Howard Georgi,3kpnDwAAQBAJ,Eric Weinstein,1,Science,2018,340 +Life 101,Peter McWilliams,w_OY3XMVv1UC,Charles Poliquin,1,Philosophy,1997,535 +Life 3.0,Max Tegmark,2hIcDgAAQBAJ,Barack Obama|Bill Gates|Elon Musk|Lex Fridman,4,Technology & Engineering,2017,384 +Life Is Elsewhere,Milan Kundera,BahkPwAACAAJ,Neil Strauss,1,Fiction,2000,261 +Life Is So Good,George Dawson,UWiUUxOrJqEC,George Raveling,1,Biography & Autobiography,2013,288 +Life Is What You Make It,Peter Buffett,a1537l253csC,Bill Gates|Warren Buffett,2,Biography & Autobiography,2011,257 +Life at the Bottom,Theodore Dalrymple,GR5vAAAAQBAJ,Jordan Peterson,1,Social Science,2003,256 +Life in the English Country House,Mark Girouard,8KmrdrHhZusC,Paul Graham,1,History,1978,344 +Life on the Edge,Johnjoe McFadden,BirqBQAAQBAJ,Vinod Khosla,1,Science,2015,368 +Lifespan,David Sinclair,bY6zyQEACAAJ,Vinod Khosla,1,,2019,132 +Light in August,William Faulkner,eldXAAAAYAAJ,Oprah Winfrey,1,Fiction,1987,188 +Lights Out,Ted Koppel,DGbaCwAAQBAJ,Kaskade,1,Political Science,2015,279 +Limitless,Ajaz Ahmed,ME-JAwAAQBAJ,Richard Branson,1,Business & Economics,2015,304 +Limits to Growth,Donella H. Meadows,gU7h7UccUJ8C,Bill Gates,1,Economic development,2004,363 +Limping on Water,Philip Beuth,JPSHjgEACAAJ,Warren Buffett,1,,2015,360 +Lincoln,Gore Vidal,xhdB9Wk1tJEC,David Sabatini,1,French language,1985,686 +Lincoln in the Bardo,George Saunders,Ldd7DwAAQBAJ,Bill Gates,1,Fiction,2019,400 +Liquid Life,Zygmunt Bauman,eKrhrXBFNdEC,Esther Perel,1,Social Science,2005,164 +Little Brother,Cory Doctorow,QF2HvH4vykMC,Seth Godin,1,Fiction,2013,400 +Little House in the Big Woods,Laura Ingalls Wilder,5t-XDwAAQBAJ,Gretchen Rubin,1,Juvenile Fiction,2019,254 +Little Moments of Love,Catana Chetwynd,c-BUDwAAQBAJ,Ryan Hoover,1,Comics & Graphic Novels,2018,160 +"Little Science, Big Science...and Beyond",Derek J.De Solla Price,b5P3sgEACAAJ,Jordan Peterson,1,,1969,118 +Little Women,Louisa May Alcott,v0iuYlsc8EIC,J.K. Rowling,1,Fiction,1998,528 +Live Your Truth,Kamal Ravikant,t9_SngEACAAJ,Naval Ravikant,1,Happiness,2013,140 +Lives of Girls and Women,Alice Munro,zoY_pMA6ea0C,Cheryl Strayed,1,Fiction,2011,288 +Living Forward,Michael Hyatt,uAw_CgAAQBAJ,"Mike Maples, Jr.",1,Business & Economics,2016,208 +Living with a SEAL,Jesse Itzler,oyb3BgAAQBAJ,Cory Booker|Marc Andreessen,2,Biography & Autobiography,2015,256 +Living within Limits,Garrett Hardin,oA9-TUK3TrkC,Charlie Munger,1,Philosophy,1995,352 +Lolita,Vladimir Nabokov,S0lVyYcw8tsC,Ev Williams|J.K. Rowling,2,Fiction,2012,336 +London Labour and the London Poor,Henry Mayhew,G4oBAAAAQAAJ,Neil Gaiman,1,,1861, +Lone Survivor,Marcus Luttrell,eQflBgAAQBAJ,Larry Ellison|Marc Andreessen,2,,2007, +Long Walk to Freedom,Nelson Mandela,_ewvL93kFx4C,Barack Obama|Richard Branson,2,Political Science,2013,784 +Longitude,Dava Sobel,4Yj8-1xrt6YC,Patrick Collison|Richard Branson,2,History,2011,208 +Look to Windward,Iain M. Banks,HovpJmfv4wAC,Elon Musk|Stewart Brand,2,Fiction,2002,483 +Loonshots,Safi Bahcall,cZ9aDwAAQBAJ,Keith Rabois|Vinod Khosla,2,Business & Economics,2019,304 +Lord of Light,Roger Zelazny,7qtUPwAACAAJ,Naval Ravikant|Neil Gaiman,2,"Science fiction, American",2010,304 +Lord of the Flies,William Golding,DKU1EsmnpMQC,Ev Williams|Jordan Peterson|Scott Belsky,3,Fiction,2012,256 +Lost Ocean,Johanna Basford,eOfYCwAAQBAJ,Richard Branson,1,Art,2015,80 +Louise Bourgeois,Louise Bourgeois,VgBKAQAAIAAJ,Caterina Fake,1,Art,1998,105 +Love & Respect,Emerson Eggerichs,yIOwfHhj_v8C,Dave Ramsey,1,Family & Relationships,2003,280 +Love Letters to the Dead,Ava Dellaira,RwsSBgAAQBAJ,Emma Watson,1,Juvenile Fiction,2014,288 +Love Warrior,Glennon Doyle,4qQyDwAAQBAJ,Oprah Winfrey,1,Biography & Autobiography,2017,304 +Love You Forever,Robert Munsch,7ep09WAFbDwC,Evan Goldberg,1,Juvenile Fiction,1986,32 +"Love Your Life, Not Theirs",Rachel Cruze,lMeSDwAAQBAJ,Dave Ramsey,1,Business & Economics,2016,272 +Love Yourself Like Your Life Depends On It,Kamal Ravikant,c1efDwAAQBAJ,"Mike Maples, Jr.|Naval Ravikant",2,Self-Help,2020,224 +Love in the Time of Cholera,Gabriel Garcia Marquez,Oa3MBwAAQBAJ,Oprah Winfrey,1,,1985, +Loving Every Child,Janusz Korczak,jIJEDAAAQBAJ,Tim O’Reilly,1,Family & Relationships,2016,84 +Lucky Fish,Aimee Nezhukumatathil,xjGfcQAACAAJ,Rolf Potts,1,Biography & Autobiography,2011,79 +Lud-in-the-Mist,Hope Mirrlees,KuIMM_8WwkwC,Neil Gaiman,1,Fiction,2007,292 +Lulu's Provençal Table,Richard Olney,88SIDwAAQBAJ,Samin Nosrat,1,Cooking,2013,176 +Lying,Sam Harris,aVz_BgAAQBAJ,A.J. Jacobs|Brian Armstrong|Elon Musk|Tim Ferriss|Vinod Khosla,5,Philosophy,2013,108 +Macbeth,William Shakespeare,6vFDY3o_bCgC,J.K. Rowling,1,,1876,266 +Machete Season,Jean Hatzfeld,o1PKXJBO6vMC,Jocko Willink|Sam Harris,2,History,2006,272 +Machines Who Think,Pamela McCorduck,uIBhygEACAAJ,Lex Fridman,1,,2019,600 +Machines of Loving Grace,John Markoff,DTW5jgEACAAJ,Stewart Brand,1,History,2016, +Made In America,Sam Walton,5ym_S0pa_L0C,Jeff Bezos,1,Biography & Autobiography,1993,346 +Made to Stick,Chip Heath,Yfp79AAohiMC,Brian Armstrong,1,Business & Economics,2007,336 +"Mae West on Sex, Health, and ESP",Mae West,u1FpAAAACAAJ,Dita Von Teese,1,Extrasensory perception,1975,237 +Magic Mushrooms Around the World,Jochen Gartz,B2spvgAACAAJ,Hamilton Morris,1,"Mushrooms, Hallucinogenic",1996,136 +Magicians of the Gods,Graham Hancock,8iLVCQAAQBAJ,Aubrey Marcus,1,"Body, Mind & Spirit",2015,528 +Maisy Mouse Collection,Lucy Cousins,TAsUAQAAMAAJ,Paul Graham,1,Juvenile Fiction,2004,16 +Makam,Karl L. Signell PhD,JHMHAQAAMAAJ,Eric Weinstein,1,Music,1977,200 +Make Me,Lee Child,nTGiBQAAQBAJ,Malcolm Gladwell,1,Fiction,2015,512 +Makers,Cory Doctorow,Hgvi3wyYzkcC,Seth Godin,1,Businesspeople,2010,432 +Makers and Takers,Rana Foroohar,wZAxDwAAQBAJ,Tim O’Reilly,1,Business & Economics,2017,400 +Making Sense of People,Samuel Barondes,cehUbzsk-jsC,Graham Duncan,1,Self-Help,2011,256 +Making the Modern World,Vaclav Smil,aZUzAQAAQBAJ,Bill Gates,1,Technology & Engineering,2013,248 +Man 2.0: Engineering the Alpha,John Romaniello,_lLRcfhyTfYC,Terry Crews,1,Health & Fitness,2013,288 +Man Who Sold the Moon,Robert Heinlein,fAekBQAAQBAJ,Peter Diamandis,1,Fiction,2014,249 +Man of War,Sean Parnell,CLZFDwAAQBAJ,Jocko Willink,1,Fiction,2018,448 +Man's Search for Meaning,Viktor E. Frankl,8SERAAAAQBAJ,Aniela Gregorek|Bryan Johnson|Chelsea Handler|Chip Conley|Daniel Pink|Dave Elitch|David Blaine|Dustin Moskovitz|Emma Watson|Esther Perel|Ev Williams|Fedor Holz|Jimmy Fallon|Jocko Willink|Jordan Peterson|Maria Popova|Michael Gervais|Naval Ravikant|Ryan Holiday|Terry Crews|Tony Robbins|Turia Pitt,22,Psychology,2006,168 +Managing,Harold Geneen,IxSUPwAACAAJ,Marc Benioff,1,Business & Economics,1993,297 +Mandela's Way,Richard Stengel,V2kr0gIIMdAC,Richard Branson,1,Self-Help,2009,243 +Manhattan Beach,Jennifer Egan,pFU3DwAAQBAJ,Gretchen Rubin,1,Fiction,2017,448 +Manifesto for a Moral Revolution,Jacqueline Novogratz,JnGVDwAAQBAJ,Chris Anderson,1,Business & Economics,2020,256 +Manxmouse,Paul Gallico,z5iPygAACAAJ,J.K. Rowling,1,Adventure and adventurers,2012,253 +Mao,Jung Chang,ZyhQAAAACAAJ,Richard Branson,1,China,2006,843 +Map and Territory,Eliezer Yudkowsky,hPW_vwEACAAJ,Liv Boeree,1,,2018, +Maps of Meaning,Jordan Peterson,jp2Z5BW2AF8C,Jocko Willink,1,Psychology,2002,564 +Marine!,Burke Davis,vG2LCwAAQBAJ,Jocko Willink,1,Biography & Autobiography,2016,369 +Markings,Dag Hammarskjold,Xv2QPwAACAAJ,Kara Swisher,1,Statesmean,1997,148 +Marriage,Susan Ferrier,IVWTD4_5ClMC,Paul Graham,1,,1825, +Master of the Game,Connie Bruck,w-rIDwAAQBAJ,Charlie Munger,1,Biography & Autobiography,2020,416 +Mastering the Core Teachings of the Buddha,Daniel Ingram,B99hDwAAQBAJ,Naval Ravikant,1,"Body, Mind & Spirit",2018,800 +Masters of Doom,David Kushner,yyaxyKjyp2YC,Alexis Ohanian|Patrick Collison,2,Biography & Autobiography,2004,339 +Masters of the Word,William J. Bernstein,C3vGAgAAQBAJ,Nick Szabo,1,History,2013,448 +Mastery,George Leonard,HkvqUOO5g4QC,Ev Williams|Maurice Ashley|Terry Laughlin|Tim Ferriss,4,Self-Help,1991,176 +Mastery,Robert Greene,ObtCSg3BZBIC,Aubrey Marcus|Mark Hart|Ryan Holiday,3,Business & Economics,2012,612 +"Math, Better Explained",Kalid Azad,kS1UjwEACAAJ,Naval Ravikant,1,,2015,98 +Mating,Norman Rush,vezTAAAAQBAJ,Ev Williams,1,Fiction,2013, +Mating in Captivity,Esther Perel,h5Yh9ExByMkC,Dan Engle,1,Health & Fitness,2012,272 +Matter,Iain M. Banks,4MrHCamY_GEC,Elon Musk,1,Fiction,2009,624 +Matterhorn,Karl Marlantes,Lmv9yDJhxGQC,Patrick Collison,1,Fiction,2010,598 +Maverick,Ricardo Semler,zzm8lLrTq6sC,David Heinemeier Hansson,1,Businesspeople,2001,336 +Mawson's Will,Lennard Bickel,mrvLiS3fvTgC,Chelsea Handler,1,History,2011,272 +Maxims,François duc de La Rochefoucauld,tOc_AQAAMAAJ,Neil Strauss,1,Maxims,1749,198 +Maxims and Reflections,Johann Wolfgang von Goethe,3ytnCQAAQBAJ,Ed Cooke,1,,1893,213 +McMafia,Misha Glenny,LlaciGnL4uEC,Vinod Khosla,1,Organized crime,2009,426 +Me Talk Pretty One Day,David Sedaris,MPNS0j-kGwcC,Ev Williams,1,Humor,2010,288 +Meaningful Work,Shawn Askinosie,XqonDgAAQBAJ,Seth Godin,1,Business & Economics,2017,224 +Measure What Matters,John Doerr,u2NDDwAAQBAJ,Bill Gates|Dustin Moskovitz|Jim Collins|Larry Page|Reid Hoffman|Walter Isaacson,6,Business & Economics,2018,320 +Medieval Civilization,Jacques Le Goff,nIjgBocF_PEC,Stewart Brand,1,History,1991,448 +Medieval Technology and Social Change,Lynn White,xa7zPNkxswQC,Patrick Collison|Paul Graham,2,Biography & Autobiography,1962,194 +Meditation in Action,Chogyam Trungpa,UbgVrUusaRIC,Steve Jobs,1,Religion,2010,112 +Meditation within Eternity,Eric Pepin,RC6ZMQEACAAJ,Dorian Yates,1,Meditation,2012,161 +Meditations,Marcus Aurelius,24a_o-VJvGsC,Arianna Huffington|Chip Conley|Jack Dorsey|Naval Ravikant|Neil Strauss|Ryan Holiday|Stewart Brand,7,Philosophy,2002,256 +Meetings with Remarkable Men,G. I. Gurdjieff,YjLxAwAAQBAJ,Steve Jobs,1,Biography & Autobiography,2015,304 +Memoirs of My Life,Edward Gibbon,juAkAINmcP0C,Paul Graham,1,Biography & Autobiography,1984,237 +Memoirs of a Geisha,Arthur Golden,SOM54qQ6BgkC,Alice Little,1,Fiction,1999,448 +Memoirs or Chronicle of the Fourth Crusade and the Conquest of Constantinople,Geoffrey de Villehardouin,MynKDwAAQBAJ,Paul Graham,1,History,2020,96 +"Memories, Dreams, Reflections",Carl Jung,g1TXQwAACAAJ,Arianna Huffington|Gretchen Rubin,2,Conscience,1995,448 +Memory of the World,UNESCO,FUAohvfsvrEC,Stewart Brand,1,Business & Economics,2012,607 +Memos from the Chairman,Alan C. Greenberg,GYEiAQAAMAAJ,Jeff Bezos,1,Business & Economics,1997,156 +Men Against Fire,S.L. A. Marshall,rsfA3LkUsTYC,Jocko Willink,1,Psychology,2012,224 +Men Explain Things to Me,Rebecca Solnit,unDkwgEACAAJ,Chelsea Handler,1,Humor,2019,176 +Men at Arnhem,Geoffrey Powell,4gWSAwAAQBAJ,Jocko Willink,1,History,1990,216 +"Men, Machines, and Modern Times",Elting E. Morison,0NsPDQAAQBAJ,Patrick Collison,1,Social Science,2016,344 +Mental Toughness Training for Sports,James E. Loehr,QZprAAAACAAJ,Tim Ferriss,1,Sports & Recreation,1986,190 +Mephistopheles,Jeffrey Burton Russell,1TMF6-5b4XkC,Jordan Peterson,1,Religion,1990,333 +Merchants of Doubt,Naomi Oreskes,CrtoNFTuPwwC,Elon Musk,1,Science,2011,368 +Metamagical Themas,Douglas Hofstadter,NSpMDQAAQBAJ,Patrick Collison,1,Psychology,2008,880 +Metaphors We Live By,George Lakoff,r6nOYYtxzUoC,Nick Szabo|Tristan Harris,2,Language Arts & Disciplines,2008,256 +Metropolis,Philip Kerr,ykN-tQEACAAJ,Lewis Cantley,1,Berlin (Germany),2019,400 +Microbe Hunters,Paul de Kruif,Ds5-KGdMa9YC,Jonathan Eisen,1,Medical,2002,372 +Microserfs,Douglas Coupland,Iodt2MFYSGUC,Ev Williams,1,Fiction,2011,400 +Middlesex,Jeffrey Eugenides,Bzg8AAAAIAAJ,Oprah Winfrey,1,,, +Midnight's Children,Salman Rushdie,S2u3hqmYCvkC,Lisa Ling|Patrick Collison,2,Fiction,2011,647 +Midwives,Chris Bohjalian,JTyAcjYXi_cC,Oprah Winfrey,1,Fiction,2002,384 +Mila 18,Leon Uris,mvVQgpzmpe0C,Ben Shapiro,1,Fiction,2011,576 +Military Misfortunes,Eliot A. Cohen,zn1tBEKLb2wC,Stewart Brand,1,History,2012,320 +Million Dollar Consulting,Alan Weiss,lC5xGbQTcVcC,Noah Kagan,1,Business & Economics,2002,292 +Mind,Daniel J. Siegel M.D.,lF-BA_cdEO0C,Jack Kornfield,1,Psychology,2012,506 +Mind Games,Michael Powell,XG7qmgEACAAJ,Jocko Willink,1,Games,2013,143 +Mind Gym,Gary Mack,arDM9Zbd1ZwC,Michael Gervais,1,Sports & Recreation,2002,240 +Mind Wide Open,Steven Johnson,Ojttc1nru7sC,Ev Williams,1,Science,2004,288 +Mind-Body Problem,Rebecca Goldstein,Ahy_AQAACAAJ,Patrick Collison,1,,1985,303 +Mindful Design,Scott Riley,oYR-DwAAQBAJ,Ryan Hoover,1,Computers,2018,359 +Mindfulness,Ellen J. Langer,OW0fDgAAQBAJ,Dave Elitch,1,Self-Help,2017,144 +Mindfulness,Mark Williams,aV_YAAAAQBAJ,Will MacAskill,1,"Body, Mind & Spirit",2012,288 +Mindfulness for Beginners,Jon Kabat-Zinn,Ogk7DwAAQBAJ,Ev Williams,1,,, +Mindfulness in Plain English,Henepola Gunaratana,nY9j66he0NkC,Vinod Khosla,1,Philosophy,2011,224 +Mindless Eating,Brian Wansink Ph.d.,hWolLeVb3lwC,Ramit Sethi,1,Health & Fitness,2010,292 +Mindset,Carol S. Dweck,Pff9Xzpsj4oC,Bill Gates|Dustin Moskovitz|Ev Williams|Josh Waitzkin|Tobi Lütke|Tony Robbins,6,Psychology,2006,277 +Mindstorms,Seymour A. Papert,LVU_zQEACAAJ,Patrick Collison,1,Education,2020,304 +Mindwise,Nicholas Epley,aySODQAAQBAJ,Derek Sivers,1,BUSINESS & ECONOMICS,2015,272 +Miracle Fruit,Aimee Nezhukumatathil,ZihbAAAAMAAJ,Rolf Potts,1,Poetry,2003,75 +Missoula,Jon Krakauer,ICzZCwAAQBAJ,Jimmy Chin,1,True Crime,2016,416 +Moab Is My Washpot,Stephen Fry,26gJAAAACAAJ,Paul Graham,1,Biography & Autobiography,1999,366 +Moby Dick,Herman Melville,XV8XAAAAYAAJ,Steve Jobs,1,Adventure stories,1892,545 +Models of My Life,Herbert A Simon,dFgwBQAAQBAJ,Charlie Munger,1,Biography & Autobiography,1996,415 +Modern Elementary Particle Physics,Gordon Kane,54PuDQAAQBAJ,Eric Weinstein,1,Science,2017,256 +Modern Engineering for Design of Liquid Propellant Rocket Engines,Dieter K Huzel,TKdIbLX51NQC,Elon Musk,1,Liquid propellant rocket engines,1992,425 +Modern Geometry ― Methods and Applications,B.A. Dubrovin,tlzc7xXYKd8C,Eric Weinstein,1,Mathematics,1985,432 +Modern Man In Search of a Soul,Carl Jung,U6lMnx8AQsYC,Jordan Peterson,1,Jungian psychology,2001,250 +Modern Operating Systems,Andrew S Tanenbaum,3PM5ngEACAAJ,Patrick Collison,1,Operating systems (Computers).,2009,1072 +Modern Romance,Aziz Ansari,MP11DgAAQBAJ,Emma Watson,1,Literary Collections,2017,288 +Modern Times,Paul Johnson,Le-sxf8U5p0C,Ben Shapiro,1,History,2001,880 +Modernist Cuisine,Nathan Myhrvold,vymjpwAACAAJ,Bill Gates,1,,2011,2440 +Mohammed and Charlemagne,Henri Pirenne,zLGeWH7WPmUC,Paul Graham,1,Religion,2013,296 +Molecular Biology of the Cell,Bruce Alberts,jK6UBQAAQBAJ,Alan Kay,1,Science,2017,1464 +Molecular Biology of the Gene,James D. Watson,BjuXMgEACAAJ,Alan Kay,1,Medical,2014,872 +Mom & Me & Mom,Maya Angelou,2kdWtTrKFxMC,Emma Watson,1,,2005,92 +Mona Lisa Overdrive,William Gibson,QojrNYyGMyEC,Adam Savage,1,Fiction,2012,320 +Money Changes Everything,William N. Goetzmann,MeTgCgAAQBAJ,Nick Szabo,1,Business & Economics,2016,600 +Money Well Spent,Paul Brest,QIj7tj3vKCYC,Bill Gates,1,Business & Economics,2010,304 +Moneyball,Michael Lewis,oIYNBodW-ZEC,Ev Williams,1,Sports & Recreation,2004,320 +Moonwalking with Einstein,Joshua Foer,pLkShhZ4WxAC,Bill Gates|Chelsea Handler|Tim Ferriss,3,Memory,2012,307 +Moorish Spain,Richard Fletcher,wrMG-LfuU7oC,Paul Graham,1,History,2006,189 +Moral Mazes,Robert Jackall,qVupDVBhfUsC,Patrick Collison,1,Political Science,1989,249 +Moranifesto,Caitlin Moran,5RnJCwAAQBAJ,Emma Watson,1,Literary Collections,2016,352 +More Heat than Light,Philip Mirowski,rmVhZnHId-oC,Eric Weinstein,1,Business & Economics,1991,450 +More Money Than God,Sebastian Mallaby,SuAkejQbpdIC,Tim Ferriss,1,Business & Economics,2011,496 +More from Less,Andrew McAfee,TLiuDwAAQBAJ,Marc Andreessen,1,Business & Economics,2019,352 +Mortal Questions,Thomas Nagel,7T1dAAAAQBAJ,Sam Harris,1,Philosophy,2012, +Mortal Republic,Edward J. Watts,zdRLyQEACAAJ,Evan Spiegel,1,History,2020,352 +Mother Night,Kurt Vonnegut,k7xUPgAACAAJ,Derek Sivers,1,Nazi propaganda,1992,192 +Mother of Pearl,Melinda Haynes,bV4MYgEACAAJ,Oprah Winfrey,1,Fiction,1999,464 +Mountain Light,Galen Rowell,vvfQQgAACAAJ,Adam Gazzaley,1,Nature,1995,224 +Mountains Beyond Mountains,Tracy Kidder,sgJCn-K3xcMC,Bill Gates|Rainn Wilson|Richard Branson,3,Biography & Autobiography,2011,447 +Mucusless Diet Healing System,Arnold Ehret,mcI_vaeMMxMC,Steve Jobs,1,,2000,194 +Multipliers,Liz Wiseman,kF26e_S6l_cC,Dustin Moskovitz,1,Business & Economics,2010,3 +Musashi,Eiji Yoshikawa,kl4qDwAAQBAJ,Jimmy Chin|Jocko Willink,2,Fiction,2012,984 +Musicophilia,Oliver Sacks,8ErjswEACAAJ,Aniela Gregorek|Justin Boreta|Tim Ferriss,3,,2018,464 +My 60 Memorable Games,Bobby Fischer,Whm_CAAAQBAJ,Adam Robinson,1,Crafts & Hobbies,2012,300 +My American Journey,Colin Powell,Bf4up--WyzMC,Ben Horowitz,1,Biography & Autobiography,2010,656 +My Family and Other Animals,Gerald Durrell,Dm4dDQAAQBAJ,Paul Graham,1,Biography & Autobiography,2016,312 +My Father's Glory & My Mother's Castle,Marcel Pagnol,aNa1JAAACAAJ,Eric Ripert,1,,1991,352 +My Forty Years with Ford,Charles E Sorensen,fv9WPvAXpGMC,Paul Graham,1,Biography & Autobiography,2006,345 +My Inventions,Nikola Tesla,aisnk03zsZYC,Larry Page,1,Biography & Autobiography,2007,60 +My Life on the Road,Gloria Steinem,712WBgAAQBAJ,Emma Watson|Karlie Kloss,2,Biography & Autobiography,2015,352 +My Stroke of Insight,Jill Bolte Taylor,oGIleQI257AC,Ray Dalio,1,Biography & Autobiography,2009,300 +Mysterium Coniunctionis,Carl Jung,yzcTAQAAMAAJ,Jordan Peterson,1,Alchemy,1976, +Mysticism Sacred and Profane,R. C. Zaehner,qvRWswEACAAJ,Stanislav Grof,1,,1978,256 +Myth and Reality,Mircea Eliade,CaIUAAAAQBAJ,Jordan Peterson,1,Social Science,1998,204 +Myth of the Machine,Lewis Mumford,ODBkAQAACAAJ,Patrick Collison,1,Technological civilization,1967, +Mythology,Edith Hamilton,H8cjDwAAQBAJ,Alan Kay,1,History,2017,384 +Myths Dreams and Mysteries,Mircea Eliade,SBwHyAEACAAJ,Jordan Peterson,1,Dreams,1967,254 +Myths and Facts,Mitchell G. Bard,43QbMQAACAAJ,Ben Shapiro,1,Arab-Israeli conflict,2016,400 +Naked,David Sedaris,XHiTxMTBI88C,David Blaine,1,Biography & Autobiography,2010,352 +Naked Statistics,Charles Wheelan,kNqEnAEACAAJ,Keith Rabois,1,Mathematics,2014,304 +Napoleon,Vincent Cronin,jQOq8Cb6h8wC,Larry Ellison,1,France,2009,480 +Narrow Road to the Interior,Matsuo Basho,OIWZBAAAQBAJ,Rainn Wilson,1,Poetry,2006,136 +National Geographic Field Guide to the Birds of North America,Jon L. Dunn,AKFk7ONhk7oC,Jonathan Eisen,1,Nature,2011,574 +Natural Born Heroes,Christopher McDougall,pQnTCwAAQBAJ,Laird Hamilton,1,Health & Fitness,2016,352 +Natural Capitalism,Paul Hawken,47bSS5RhvgcC,Ashton Kutcher|Joe Gebbia,2,Business,1999,396 +Nature Via Nurture,Matt Ridley,LWXkloKInqAC,Naval Ravikant,1,Science,2011,352 +Navy SEAL Dogs,Mike Ritland,yXYiUtjgXAIC,Jocko Willink,1,Young Adult Nonfiction,2013,208 +Necessary Endings,Henry Cloud,LodQVckS0LkC,Dave Ramsey,1,Business & Economics,2011,256 +Necessary Illusions,Noam Chomsky,VT3NFACu8IsC,Eric Weinstein,1,Brainwashing,1989,422 +Neon Vernacular,Yusef Komunyakaa,1nclTH1WxScC,Ta-Nehisi Coates,1,Poetry,1993,178 +Nerve,Eva Holland,TwtBzQEACAAJ,Alex Honnold,1,,2020,320 +Neural Darwinism,Gerald Edelman,hOdqAAAAMAAJ,Art De Vany,1,Psychology,1987,371 +Neuromancer,William Gibson,MMXWjgEACAAJ,Adam Savage|Naval Ravikant|Tim Ferriss,3,,2016,352 +Neuropsychedelia,Nicolas Langlitz,XCDQKZoU8mgC,Hamilton Morris,1,Social Science,2013,316 +Never Eat Alone,Keith Ferrazzi,N_XIEQmc9YcC,Ramit Sethi,1,Business & Economics,2005,320 +Never Go Back,Lee Child,quLcDAAAQBAJ,Malcolm Gladwell,1,Fiction,2016,400 +Never Split the Difference,Chris Voss,PkPRswEACAAJ,Dustin Moskovitz,1,Business & Economics,2018,288 +Nevertheless,Alec Baldwin,eE6oDAAAQBAJ,Larry King,1,Biography & Autobiography,2017,288 +New and Selected Poems,Mary Oliver,VVpVAQAAQBAJ,Cheryl Strayed,1,Poetry,2006,192 +News of a Kidnapping,Gabriel García Márquez,p7iFBAAAQBAJ,Lisa Ling,1,Biography & Autobiography,2014,304 +Nexus,Ramez Naam,AUyzBgAAQBAJ,Naval Ravikant,1,Fiction,2012, +Night,Elie Wiesel,mRTCswEACAAJ,Oprah Winfrey,1,Biography & Autobiography,2013,144 +Night School,Lee Child,PykwCwAAQBAJ,Malcolm Gladwell,1,Fiction,2016,384 +Night Sky with Exit Wounds,Ocean Vuong,yHEfDAAAQBAJ,Tim Ferriss,1,Poetry,2016,70 +Night Train to Lisbon,Pascal Mercier,FMLFDiIeYyoC,Tim O’Reilly,1,Fiction,2008,470 +Nightmare in Pink,John D. MacDonald,bcup70w4uKoC,Mike Rowe,1,Fiction,2013,224 +Nights at the Circus,Angela Carter,WniK3FSfREIC,Emma Watson,1,Fiction,2012,368 +Nine Pints,Rose George,5G7bvgEACAAJ,Bill Gates,1,Science,2019,368 +Nine Stories,J. D. Salinger,DGCjDwAAQBAJ,Ben Stiller,1,Fiction,2019,320 +Nixon Agonistes,Garry Wills,5cVKKLSC788C,Patrick Collison,1,Biography & Autobiography,2002,617 +Nixonland,Rick Perlstein,dM_enWzoghoC,Patrick Collison,1,History,2010,896 +No B.S. Marketing to the Affluent,Dan S. Kennedy,PasVuQEACAAJ,Ramit Sethi,1,Business & Economics,2019,260 +No Easy Day,Mark Owen,K1wNDJIqUFUC,Paul Graham,1,Biography & Autobiography,2012,336 +No Filter,Sarah Frier,mcjcDwAAQBAJ,Casey Neistat,1,Business & Economics,2020,352 +No Future Without Forgiveness,Desmond Tutu,1mHVXIva80AC,Richard Branson,1,Biography & Autobiography,2012,256 +No Logo,Naomi Klein,Yq_WAUXqRAEC,Richa Chadha,1,Business & Economics,2009,512 +No Man's Land,Doug Tatum,1UsdZO69sAoC,Sophia Amoruso,1,Business & Economics,2007,245 +No bullshit guide to math and physics,Ivan Savov,mPcXBQAAQBAJ,Naval Ravikant,1,Mathematics,2014,445 +Nonstop Metropolis,Rebecca Solnit,pdElDQAAQBAJ,Laura R Walker,1,Social Science,2016,232 +Nonviolent Communication,Marshall B. Rosenberg,bTgQrgEACAAJ,Dustin Moskovitz|Esther Perel|Neil Strauss|Tim Ferriss,4,Psychology,2015,264 +Nonzero,Robert Wright,Nn0RYkAznY0C,Ev Williams|Nick Thompson,2,History,2001,435 +Normal People,Sally Rooney,kwBlDwAAQBAJ,Taylor Swift,1,Fiction,2019,288 +Not Afraid,Daniele Bolelli,C1hOBwAAQBAJ,Aubrey Marcus,1,Biography & Autobiography,2015,288 +Not Even Wrong,Peter Woit,pKKhVG5Bk5YC,Eric Weinstein,1,Science,2011,304 +Not Fade Away,Laurence Shames,HFouUAcsgvgC,Chris Sacca,1,Biography & Autobiography,2004,224 +Not the End of the World,Kate Atkinson,J7FM5_NgoN8C,Amanda Palmer,1,Fiction,2010,336 +Notes from Underground,Fyodor Dostoyevsky,jrkoscHRRBcC,Jordan Peterson,1,Reference,2002,77 +Nothing to Envy,Barbara Demick,RpQaSFOkXfwC,Jocko Willink,1,Social Science,2010,316 +Nothing to Lose,Lee Child,TTghVk9ebqIC,Malcolm Gladwell,1,Colorado,2009,554 +Nuclear Terrorism,Graham Allison,LPwcAQAACAAJ,Warren Buffett,1,Nuclear terrorism,2006,275 +Nudge,Richard H. Thaler,dSJQn8egXvUC,Ben Shapiro,1,Business & Economics,2008,293 +Number,Tobias Dantzig,Pg_RKtlVlNMC,Bryan Johnson,1,Mathematics,2007,398 +Ocean Flying,Louise Sacchi,ysweAQAAIAAJ,Patrick Collison,1,Overwater flying,1979,230 +Oceanic,Aimee Nezhukumatathil,M99XDwAAQBAJ,Rolf Potts,1,Poetry,2018,80 +Of Mice and Men,John Steinbeck,CeCuAVgRGCsC,Jordan Peterson,1,Drama,1964,71 +Ogilvy on Advertising,David Ogilvy,hVFwAAAAQBAJ,Ev Williams|Neville Medhora|Noah Kagan,3,Social Science,2013,224 +"Oh, the Places You'll Go!",Dr. Seuss,Iqm0QW-GkUkC,Lisa Ling|Richard Branson,2,Children's stories,2004,64 +"Olive, Again",Elizabeth Strout,4kSwDwAAQBAJ,Oprah Winfrey,1,FICTION,2019,304 +Omaha Beach and Beyond,John Slaughter,tEln0i-ZNLkC,Jocko Willink,1,History,2009,288 +On Becoming a Person,Carl Rogers,FTEPV9IYQ5EC,Jordan Peterson,1,Social Science,2012,448 +On Booze,F. Scott Fitzgerald,_Mike8u0tsQC,Chelsea Handler,1,Literary Collections,2011,96 +On Bullshit,Harry G. Frankfurt,bFpzNItiO7oC,Paul Graham,1,Philosophy,2009,80 +On China,Henry Kissinger,GldTEJnmbeAC,Greg Norman,1,History,2011,624 +On Confidence,The School of Life,CGIxtAEACAAJ,Peter Attia,1,Conduct of life,2018,96 +On Deaf Ears,George C. Edwards III,8rYfn5zDBc4C,Ezra Klein,1,Law,2006,303 +On Drugs,David Lenson,1eaRTJozfywC,Michael Pollan,1,Social Science,1999,240 +On Food and Cooking,Harold McGee,bKVCtH4AjwgC,Chris Young,1,Cooking,2007,896 +On Grief and Grieving,Elisabeth Kübler-Ross,rQE7BAAAQBAJ,Tim Ferriss,1,Family & Relationships,2014,237 +On Guerrilla Warfare,Mao Tse-Tung,s2yp0QbyvnsC,Jocko Willink,1,History,2000,114 +On Having No Head,Douglas Edison Harding,sfa-oAEACAAJ,Jack Dorsey|Sam Harris,2,Enlightenment (Zen Buddhism),2013,124 +On Immunity,Eula Biss,AdZvBQAAQBAJ,Bill Gates|Mark Zuckerberg,2,Social Science,2015,224 +On Inequality,Harry G. Frankfurt,1WyYDwAAQBAJ,Paul Graham,1,Philosophy,2015,120 +On Intelligence,Jeff Hawkins,Qg2dmntfxmQC,Ev Williams|Keith Rabois|Patrick Collison,3,Computers,2007,272 +On Lisp,Paul Graham,jbJQAAAAMAAJ,Patrick Collison,1,Computers,1994,413 +On The Ground,John Stryker Meyer,OKFnGQAACAAJ,Jocko Willink,1,"Vietnam War, 1961-1975",2007,288 +On War,Carl von Clausewitz,iY4yZEkphNgC,Dave Camarillo,1,History,2008,752 +On Writing,Stephen King,MvyTqyff_V4C,Jason Calacanis,1,Language Arts & Disciplines,2000,288 +On Writing Well,William Zinsser,z-INANBuMBQC,Derek Sivers|Matt Mullenweg|Tim Ferriss,3,Language Arts & Disciplines,1998,308 +"On science, necessity, and the love of God",Simone Weil,jyIuAAAAMAAJ,Maria Popova,1,India,1968,240 +On the Bus,Paul Perry,tOhHAAAACAAJ,Walter Isaacson,1,Subculture,1991,195 +On the Genealogy of Morals and Ecce Homo,Friedrich Nietzsche,Vr3YXhb8MfkC,Bryan Callen|Jordan Peterson,2,Philosophy,2010,384 +On the Move,Oliver Sacks,mW7CBgAAQBAJ,Maria Popova,1,Biography & Autobiography,2015,256 +On the Nature of Things,Lucretius,jwhnzQEACAAJ,Nick Kokonas|Stewart Brand,2,,2020,258 +On the Revolutions of Heavenly Spheres,Nicolaus Copernicus,LH4tWpJzzCcC,Stanislav Grof,1,Science,2010,344 +On the Road,Jack Kerouac,4w1vQRkAVxYC,Ev Williams|Steve Jobs|Walter Isaacson,3,Fiction,2002,307 +On the Run,Alice Goffman,UjedBAAAQBAJ,Alex Blumberg,1,Social Science,2015,304 +On the Shortness of Life,Lucius Seneca,HeN_YHY-R8gC,Chip Conley|Jim Collins|Maria Popova|Neil Strauss|Patrick Collison,5,Philosophy,2004,112 +Once an Eagle,Anton Myrer,d5GHcz4d-NQC,Stanley McChrystal,1,Fiction,2013,1312 +Once in Golconda,John Brooks,KzrlCD2d8NwC,Brendan Moynihan,1,Business & Economics,1999,320 +One Billion Hungry,Gordon Conway,-LLBk2QdURcC,Bill Gates,1,Social Science,2012,464 +One Bullet Away,Nathaniel C. Fick,mR2AGvWyPJAC,Peter Attia,1,Biography & Autobiography,2006,372 +One Flew Over the Cuckoo's Nest,Ken Kesey,wCP2qgXwXdUC,Jordan Peterson,1,Fiction,2012,320 +One Hundred & One Reasons To Get Out of Bed,Natasha Milne,bDEBAAAAYAAJ,Richard Branson,1,,1842,237 +One Hundred Years of Solitude,Gabriel Garcia Marquez,N3BekQEACAAJ,Cal Fussman|Neil Strauss|Oprah Winfrey|Richard Branson,4,Fiction,2014,512 +One Monster After Another,Mercer Mayer,Lit7AAAACAAJ,Ed Catmull,1,Monsters,1993,48 +One Police Plaza,William J. Caunitz,7tcoDwAAQBAJ,Marc Goodman,1,Fiction,2017,377 +One Question,Ken Coleman,h5JDvwtmHXEC,Dave Ramsey,1,Self-Help,2013,224 +One Shot,Lee Child,PDLi3p0eXSEC,Malcolm Gladwell,1,Indiana,2006,510 +One Simple Idea,Stephen Key,zFkREyg0HAMC,Tim Ferriss,1,Business & Economics,2011,256 +One Soldier's War,Arkady Babchenko,3Gj_eDqCuSAC,Jocko Willink,1,Biography & Autobiography,2009,420 +One True God,Rodney Stark,UpgAqc7-m38C,Stewart Brand,1,Religion,2003,319 +One Two Three . . . Infinity,George Gamow,fu-SjQudB_0C,Steven Pinker,1,Science,2012,384 +One of a Kind,Nolan Dalla,d3jmOUuPiE4C,Jason Calacanis,1,Biography & Autobiography,2006,336 +Only Don't Know,Seung Sahn,I8PAAdDzVP0C,Amanda Palmer,1,Philosophy,1999,230 +Only the Paranoid Survive,Andrew S. Grove,HjMYMLMy98oC,Charlie Munger|Marc Andreessen|Steve Jobs,3,Business & Economics,2010,240 +Onward,Howard Schultz,860GHA_J_hEC,Ron Conway,1,Business & Economics,2011,348 +Open,Andre Agassi,_DVSRsWZsksC,Bill Gates|Dave Elitch|Mark Zuckerberg|Shaun White|Tim Ferriss,5,Biography & Autobiography,2011,456 +Open House,Elizabeth Berg,ow_g2GS-SKoC,Oprah Winfrey,1,Fiction,2012,336 +Option B,Sheryl Sandberg,FaB7DQAAQBAJ,Katie Couric,1,Biography & Autobiography,2017,240 +Orality and Literacy,Walter J. Ong,gmI0E1KbCaQC,Patrick Collison,1,Literary Criticism,2013,216 +Oranges,John McPhee,mEQ8DQYchtcC,Daniel Pink,1,Literary Collections,2011,149 +Oranges Are Not the Only Fruit,Jeanette Winterson,CZOfOqstljIC,Emma Watson,1,Fiction,2007,187 +Ordinary Men,Christopher R. Browning,C3Q1DAAAQBAJ,Jocko Willink,1,History,2017,384 +Organic Chemistry As a Second Language,David R. Klein,HhFjPxvKWg0C,Hamilton Morris|Hamilton Morris,2,Science,2011,382 +Origin,Dan Brown,WonixQEACAAJ,Mukesh Ambani,1,Barcelona (Spain),2019,588 +Origin Story,David Christian,i-0zDwAAQBAJ,Bill Gates,1,Science,2018,368 +Originals,Adam Grant,pI3cDQAAQBAJ,Arianna Huffington|Peter Thiel|Ray Dalio|Richard Branson|Seth Godin|Tony Hsieh|Whitney Wolfe Herd,7,Business & Economics,2017,336 +Orwell's Revenge,Peter Huber,zAb5CQAAQBAJ,Mark Zuckerberg,1,Computers,2015,384 +Oscar and Lucinda,Peter Carey,WoqNnWsFfvcC,Danielle Teller,1,Fiction,2010,544 +Other People's Money,Charles V. Bagli,0uVvDwAAQBAJ,Vinod Khosla,1,Business & Economics,2014,402 +"Our Bodies, Ourselves",Boston Women's Health Book Collective,kCkc2HIzKhYC,Stewart Brand,1,Health & Fitness,2011,848 +"Our Culture, What's Left of It",Theodore Dalrymple,7rrsAAAACAAJ,Jordan Peterson,1,Literary Criticism,2007,341 +Our Final Invention,James Barrat,Y3TNoAEACAAJ,Elon Musk|Sam Harris,2,Computers,2015,336 +Our Mathematical Universe,Max Tegmark,FSMUAAAAQBAJ,Mark Cuban,1,Science,2014,432 +Out Of Control,Kevin Kelly,EGqaAAAAIAAJ,Ev Williams|Steve Jurvetson,2,Science,1994,521 +Out of Mao's Shadow,Philip P. Pan,Ac897TVPPBIC,Patrick Collison,1,History,2008,349 +Out of My Later Years,Albert Einstein,Q1UxYzuI2oQC,Eric Weinstein,1,Biography & Autobiography,1956,282 +"Outer Order, Inner Calm",Gretchen Rubin,05RfDwAAQBAJ,Ramit Sethi,1,Self-Help,2019,240 +Outlaw Platoon,Sean Parnell,B1KbygAACAAJ,Jocko Willink,1,History,2013,384 +Outliers,Malcolm Gladwell,G_osyXN-mm0C,Bill Gates|Charlie Munger|DJ Vlad|James Altucher|Joe Rogan|Shaun White,6,Business & Economics,2008,320 +Overreach,George C. Edwards III,aN1dgw7sTpkC,Ezra Klein,1,Political Science,2012,264 +PEAK,Chip Conley,3Vv1bK48gI4C,Liz Lambert,1,Business & Economics,2007,288 +Pachinko,Min Jin Lee,y_EoswEACAAJ,Emma Watson,1,Downloadable e-Books,2017,490 +Pacific,Simon Winchester,0pa0jgEACAAJ,Patrick Collison,1,History,2016,512 +Paco et L'orchestre,Magali Le Huche,y6C_oQEACAAJ,Neil Gaiman,1,,2014,24 +Paco et Mozart,Magali Le Huche,5ztFswEACAAJ,Neil Gaiman,1,Juvenile Nonfiction,2017,28 +Paco et le Jazz,Magali Le Huche,-_8-jgEACAAJ,Neil Gaiman,1,,2015,24 +Paco et le Rock,Magali Le Huche,1JhQvgAACAAJ,Neil Gaiman,1,Juvenile Nonfiction,2016,28 +Painting and Experience in Fifteenth-Century Italy,Michael Baxandall,dmpMcyeEX5EC,Paul Graham,1,Art,1988,183 +Pale Gray for Guilt,John D. MacDonald,c1IiKkUXypIC,Mike Rowe,1,Fiction,2013,320 +Pandemic 1918,Catharine Arnold,e35KDwAAQBAJ,Jonathan Eisen,1,History,2018,320 +Panzram,Thomas E. Gaddis,JWAUPQAACAAJ,Jocko Willink|Jordan Peterson,2,Biography & Autobiography,2002,312 +Paper Lion,George Plimpton,mFkyCwAAQBAJ,Michael Pollan,1,Biography & Autobiography,2016,384 +Parables and Paradoxes,Franz Kafka,SIzaxwEACAAJ,Ricardo Semler,1,,1961,190 +Paradigms of Artificial Intelligence Programming,Peter Norvig,QzGuHnDhvZIC,Patrick Collison,1,Computers,1992,946 +Paradise,Toni Morrison,kPaKDQAAQBAJ,Oprah Winfrey,1,Fiction,2014,318 +Parents Who Lead,Stewart D. Friedman,l1mnDwAAQBAJ,Arianna Huffington,1,Family & Relationships,2020,272 +Paroles,Jacques Prévert,w9mVDwAAQBAJ,Eric Ripert,1,,2019, +Parting the Waters,Taylor Branch,3gQN-jK8JI0C,Cory Booker,1,Biography & Autobiography,2007,1088 +Passages,Gail Sheehy,rY3dWN88Q7UC,Maurice Ashley,1,Self-Help,2006,546 +Past Tense,Lee Child,T8JyDwAAQBAJ,Malcolm Gladwell,1,FICTION,2018,400 +Paths to Wealth Through Common Stocks,Philip A. Fisher,KTD1ByjBJnUC,Warren Buffett,1,Business & Economics,2007,256 +Patriots,A.J. Langguth,BI5ivuRh7-sC,Ben Shapiro,1,History,2013,640 +Pattern Classification,Richard O. Duda,Br33IRC3PkQC,Eric Weinstein,1,Technology & Engineering,2012,680 +Pattern Recognition,William Gibson,5GvWmQKLchQC,Seth Godin,1,Fiction,2004,368 +Paul Bocuse's French Cooking,Paul Bocuse,FPwIAQAAMAAJ,Eric Ripert,1,"Cookery, French",1982,351 +Peak,Anders Ericsson,GmcpCgAAQBAJ,Josh Waitzkin,1,Self-Help,2016,336 +Peak Performance,Brad Stulberg,WXq8DgAAQBAJ,Dustin Moskovitz,1,Self-Help,2017,240 +Peddling Prosperity,Paul Krugman,GcmvijkDrEcC,Eric Weinstein,1,Business & Economics,1995,303 +Perfectly Reasonable Deviations from the Beaten Track,Richard P. Feynman,zDwx8nViavoC,Naval Ravikant,1,Science,2008,512 +Perfumes,Luca Turin,8a-Q0uZU9o8C,Eric Weinstein,1,Business & Economics,2010,620 +Permutation City,Greg Egan,FJjGpoPogJ4C,Naval Ravikant,1,Fiction,2010,384 +Personal,Lee Child,8vy0CAAAQBAJ,Malcolm Gladwell,1,Retired military personnel,2015,480 +Personal History,Katharine Graham,31aa8YxHO8kC,Warren Buffett,1,Biography & Autobiography,2011,688 +Personal Knowledge,Michael Polanyi,QPPIBQAAQBAJ,Charles Koch,1,Philosophy,2012,503 +Perspective on McKinsey,Marvin Bower,dXR_YgEACAAJ,Patrick Collison,1,,1979,317 +Persuader,Lee Child,mEbzPpHiKKAC,Malcolm Gladwell,1,Fiction,2008,544 +Peter Pan,J. M. Barrie,RMLDChge_koC,Gretchen Rubin|Richard Branson|Soman Chainani,3,Fiction,2009,285 +Pharmacotheon,Jonathan Ott,VMjwAAAAMAAJ,Hamilton Morris,1,Health & Fitness,1997,640 +Physics of the Impossible,Michio Kaku,coX3QMVjsYsC,Mark Zuckerberg,1,Fiction,2009,352 +Pihkal,Alexander Shulgin,O8AdHBGybpcC,Hamilton Morris|James Fadiman,2,Biography & Autobiography,1995,978 +Pilot's Handbook of Aeronautical Knowledge,Federal Aviation Administration (FAA)/Aviation Supplies & Academics (ASA),AWscFMlooH8C,Brian Armstrong,1,Education,2009,352 +Plagues and Peoples,William McNeill,KQR6iXMT11EC,Patrick Collison|Paul Graham,2,Social Science,2010,368 +Planetary,Warren Ellis,1yEWAgAAQBAJ,Naval Ravikant,1,Comics & Graphic Novels,2001, +Plants of the Gods,Richard Evans Schultes,5lB4QgAACAAJ,Tim Ferriss,1,Health & Fitness,2001,208 +Plato at the Googleplex,Rebecca Goldstein,aWGODQAAQBAJ,Patrick Collison,1,Philosophy,2015,480 +Platoon Leader,James R. McDonough,ZkVuppQLeyAC,Jocko Willink,1,Command of troops,1985,203 +Play Bigger,Al Ramadan,vNuUCgAAQBAJ,"Mike Maples, Jr.",1,Business & Economics,2016,272 +Play Dreams & Imitation in Childhood,Jean Piaget,tc53r6LKcecC,Jordan Peterson,1,Psychology,2013,308 +Play It Away,Charlie Hoehn,ApFLngEACAAJ,Chase Jarvis|Tim Ferriss|Tony Robbins,3,Self-Help,2014,168 +Plenty,Yotam Ottolenghi,Q1LWPna5DKYC,Sam Kass,1,Cooking,2011,288 +Plenty More,Yotam Ottolenghi,xNcMjwEACAAJ,Sam Kass,1,,2015,351 +Point Counter Point,Aldous Huxley,DQ_tAQAAQBAJ,Jordan Peterson,1,Fiction,2014,464 +Polio,David M. Oshinsky,cTliwSU62KIC,Bill Gates,1,Social Science,2005,368 +Political Order and Political Decay,Francis Fukuyama,Rj-eAwAAQBAJ,David Heinemeier Hansson,1,Political Science,2014,658 +Political Tribes,Amy Chua,EoMqDwAAQBAJ,Mark Cuban,1,Political Science,2018,304 +Poor Economics,Abhijit V. Banerjee,2dlnBoX4licC,Bill Gates,1,Business & Economics,2012,320 +Poor Numbers,Morten Jerven,_aqdDgAAQBAJ,Bill Gates,1,Political Science,2013,208 +Poor Richard's Almanack,Benjamin Franklin,8_c_vS40kMcC,Brandon Stanton|Walter Isaacson,2,Reference,2007,144 +Popper Selections,Karl R. Popper,1fhnQgAACAAJ,Patrick Collison,1,Philosophy,1985,479 +Portfolios of the Poor,Daryl Collins,XZIF1gshRL0C,Mark Zuckerberg,1,Business & Economics,2009,296 +Positioning,Al Ries,_BHj1OYgF7wC,Ev Williams,1,Business & Economics,2001,213 +Positive Discipline,Jane Nelsen Ed.D.,PBiGH-oKXxoC,Brené Brown,1,Family & Relationships,2006,349 +Positive Discipline A-Z,Jane Nelsen Ed.D.,hSwRNkMJquMC,Brené Brown,1,Family & Relationships,2007,336 +Positive Discipline Parenting Tools,Jane Nelsen Ed.D.,QTFNDQAAQBAJ,Brené Brown,1,FAMILY & RELATIONSHIPS,2016,192 +Positive Discipline for Preschoolers,Jane Nelsen Ed.D.,LX3by5vHYYwC,Brené Brown,1,Family & Relationships,2007,368 +Positive Discipline: The First Three Years,Jane Nelsen Ed.D.,J0j6swEACAAJ,Brené Brown,1,Family & Relationships,2007,292 +Postcards from Tomorrow Square,James Fallows,0SGODQAAQBAJ,Patrick Collison,1,History,2009,262 +Postwar,Tony Judt,aU8laRbSvrMC,Ta-Nehisi Coates,1,History,2011,960 +Power Schmoozing,Terri Mandell,ChXcCbNyaQkC,Derek Sivers,1,Business & Economics,1996,173 +Power Up,Magdalena Yesil,M0jiDQAAQBAJ,Eric Schmidt|Ron Conway,2,Business & Economics,2017,256 +Powerful,Patty McCord,La3StAEACAAJ,Keith Rabois|Reed Hastings,2,Business & Economics,2018,152 +Powers of Ten,Philip Morrison,JX2BQgAACAAJ,Stewart Brand,1,Science,1994,150 +Prague Fatale,Philip Kerr,1tRaAgAAQBAJ,Lewis Cantley,1,Fiction,2014,407 +Pre-Suasion,Robert B. Cialdini PhD,lckjDgAAQBAJ,Naval Ravikant|Scott Adams,2,,2017,343 +Preacher,Garth Ennis,YxwFnwEACAAJ,Evan Goldberg|Seth Rogen,2,Comics & Graphic Novels,2014,368 +Predictably Irrational,Dr. Dan Ariely,T-db9SRf0XsC,Max Levchin,1,Business & Economics,2009,384 +Predicting the Presidency,George C. Edwards III,l2-YDwAAQBAJ,Ezra Klein,1,Political Science,2016,288 +Prelude to Foundation,Isaac Asimov,O1aLYcyIWjEC,Elon Musk,1,Fiction,2012,512 +Prepared,Diane Tavenner,JR6BDwAAQBAJ,Bill Gates,1,Family & Relationships,2019,256 +Presidents of War,Michael Beschloss,nLmxDwAAQBAJ,Bill Gates,1,Biography & Autobiography,2019,752 +Pride and Prejudice,Jane Austen,55AFYh5XadkC,Tim O’Reilly,1,Literary Criticism,2008,417 +Prime Movers of Globalization,Vaclav Smil,nmDGlX0UncsC,Bill Gates,1,Political Science,2010,261 +Prime Time,Jane Fonda,Y9sI0H4O2yQC,Emma Watson,1,Health & Fitness,2012,318 +Principles,Ray Dalio,qNNmDwAAQBAJ,Arianna Huffington|Bill Gates|Bryan Johnson|Diddy|Doug McMillon|Drew Houston|Dustin Moskovitz|Gary Vaynerchuk|Howard Marks|Jack Dorsey|Kevin Systrom|Marc Benioff|Mark Cuban|Naval Ravikant|Reed Hastings|Tim Ferriss|Tony Robbins,17,Business & Economics,2018,592 +Principles of Quantum Mechanics,R. Shankar,2zypV5EbKuIC,Eric Weinstein,1,Science,1994,694 +Priorities in Health,Dean T. Jamison,mXvJGuDmu4cC,Bill Gates,1,Communicable Disease Control,1993,746 +"Private Truths, Public Lies",Timur Kuran,HlKBaiCpSxYC,Marc Andreessen,1,Business & Economics,1997,423 +Product Design for the Web,Randy J. Hunt,paKPAQAAQBAJ,Ron Conway,1,Computers,2013,214 +Progress,Johan Norberg,fvxsDgAAQBAJ,Jordan Peterson,1,Political Science,2017,288 +Propaganda,Edward Bernays,3De8nd_B_C8C,Dave Elitch|Jérôme Jarre,2,Education,1928,168 +Prussian Blue,Philip Kerr,odqpDAAAQBAJ,Lewis Cantley,1,Fiction,2017,544 +Psychology For The Fighting Man,Committee Of The National Research Counc,ElURngEACAAJ,Jocko Willink,1,,2013,378 +Psychology and Alchemy,Carl Jung,70x-AAAAMAAJ,Jordan Peterson,1,Psychology,1953, +Psychology and Religion,Carl Jung,q8xk2-0VT8IC,Jordan Peterson,1,Psychology,1960,138 +Psychopolitics,Jean-Michel Oughourlian,8mMhXnjAuw8C,Peter Thiel,1,Philosophy,2012,98 +Punished by Rewards,Alfie Kohn,-fFsZWg-JfAC,David Heinemeier Hansson,1,Family & Relationships,1999,448 +Purple Cow,Seth Godin,WlnnQ6HklysC,Cindy Eckert|Joe Gebbia,2,Business & Economics,2005,160 +Q.E.D.,Burkard Polster,Ws-yAAAACAAJ,Naval Ravikant,1,Proof theory,2006,64 +QED,Richard P. Feynman,2o2JfTDiA40C,Larry Page,1,Science,2014,192 +QED and the Men Who Made It,Silvan S. Schweber,61n5dE7FJQgC,Eric Weinstein,1,Science,1994,732 +Quantum Computing since Democritus,Scott Aaronson,jRGfhSoFx0oC,Patrick Collison,1,Science,2013,370 +Quantum Field Theory and Topology,Albert S. Schwarz,RhXpCAAAQBAJ,Eric Weinstein,1,Mathematics,2013,276 +Quantum Mechanics,Leonard Susskind,LX2-AQAAQBAJ,Eric Weinstein,1,Science,2014,384 +Quicksilver,Neal Stephenson,sveycjTqoesC,Lewis Cantley,1,Fiction,2012,944 +Quiet,Susan Cain,z5x_MQEACAAJ,Emma Watson|Tom Peters,2,Introversion,2012,333 +Quirky,Melissa A Schilling,lSAcDgAAQBAJ,Keith Rabois,1,Business & Economics,2018,336 +Quitter,Jon Acuff,pP-SDwAAQBAJ,Dave Ramsey,1,Business & Economics,2011,256 +Race Matters,Cornel West,p89c2eTJgJgC,Joe Rogan,1,Social Science,2001,108 +Radical Acceptance,Tara Brach,njUp-vfM5DoC,Jerry Colonna|Tim Ferriss,2,Religion,2012,352 +Railroader,Howard Green,gUNLtAEACAAJ,Bill Gates,1,Chief executive officers,2018,336 +Rain and Other South Sea Stories,W. Somerset Maugham,BpyV8NMGbW4C,Andrew Zimmern,1,Fiction,2012,176 +Raising Girls,Steve Biddulph,PFPBMgEACAAJ,Daniel Ek,1,Child rearing,2013,250 +Ramakrishna and His Disciples,Christopher Isherwood,xqhYPgAACAAJ,Steve Jobs,1,,2002,348 +Range,David J. Epstein,obzNDwAAQBAJ,Keith Rabois|Vinod Khosla,2,Self-Help,2020,400 +Rapture of Canaan,Sheri Reynolds,zDinkyCJOSoC,Oprah Winfrey,1,Fiction,1997,320 +Rational Ritual,Michael Suk-Young Chwe,cMUMPcDJiHkC,Mark Zuckerberg,1,Mathematics,2013,138 +Ready Player One,Ernest Cline,J8ahqXjUhAAC,Astro Teller|Brian Armstrong|Steve Jurvetson,3,Fiction,2011,374 +Ready for Anything,David Allen,OXg2i1Vt2B4C,Ev Williams,1,Self-Help,2011,192 +Reality Is Not What It Seems,Carlo Rovelli,qYxEDwAAQBAJ,Naval Ravikant,1,Science,2018,288 +Reasons and Persons,Derek Parfit,i5wQaJI3668C,Sam Harris|Will MacAskill,2,Philosophy,1986,560 +Rebirth,Kamal Ravikant,MGoQtAEACAAJ,Matt Mullenweg,1,Fiction,2018,256 +Recapturing the Spirit of Enterprise,George Gilder,ew8ocv87P3YC,Marc Andreessen,1,Capitalists and financiers,1992,338 +"Red Blood, Black Sand",Chuck Tatum,RR1xDwAAQBAJ,Jocko Willink,1,Biography & Autobiography,2013,348 +Red Notice,Bill Browder,8kxrBgAAQBAJ,Jason Calacanis|Peter Attia,2,Biography & Autobiography,2015,396 +Reflexions,Richard Olney,QdWCDwAAQBAJ,Samin Nosrat,1,Biography & Autobiography,2009,418 +Regional Advantage,AnnaLee Saxenian,gnh2Rb1rcMIC,Kevin Kelly,1,Business & Economics,1996,226 +Reinventing American Health Care,Ezekiel J. Emanuel,YdQiBQAAQBAJ,Bill Gates,1,Health & Fitness,2014,400 +Reinventing Fire,Amory Lovins,ZW7EAgAAQBAJ,Bill Gates|Ev Williams,2,Business & Economics,2013,334 +Remix,Lawrence Lessig,nYu74GfyevgC,Joseph Gordon-Levitt,1,Business & Economics,2009,352 +Remote,Jason Fried,KeJE7Tyl6o8C,Richard Branson,1,Business & Economics,2013,256 +René Girard's Mimetic Theory,Wolfgang Palaver,MSFdppHDSpcC,Naval Ravikant,1,Literary Criticism,2013,420 +Replay,Ken Grimwood,wBnCvQEACAAJ,Noah Kagan,1,Fiction,1997,343 +Requiem for a Dream,Hubert Selby,E2U-UTULr6cC,Darren Aronofsky,1,Fiction,2011,284 +Retail Superstars,George Whalin,1qg6YiofMLYC,Tom Peters,1,Business & Economics,2009,222 +Retreat from Doomsday,John Mueller,6skEQgAACAAJ,Steven Pinker,1,,2009,393 +Return to the Little Kingdom,Michael Moritz,2WwjCQAAQBAJ,Keith Rabois,1,Business & Economics,2009,352 +Reveille for Radicals,Saul D. Alinsky,MqqKwgEACAAJ,Ryan Holiday,1,"Associations, institutions, etc",,228 +Reveries on the Art of War,Maurice de Saxe,J9WfbJ09e0oC,Jocko Willink,1,History,2012,128 +Revising Prose,Richard A. Lanham,yo5pAAAAMAAJ,Jason Fried,1,Language Arts & Disciplines,1979,126 +Revolution in The Valley,Andy Hertzfeld,VQQCtFT1CGIC,Keith Rabois,1,Business & Economics,2005,291 +Revolutionary Wealth,Alvin Toffler,WbBA0agxx6UC,Ev Williams,1,Business & Economics,2006,512 +Rhinoceros Success,Scott Alexander,pMqSDwAAQBAJ,Bear Grylls|Dave Ramsey,2,Self-Help,2003,128 +Rich Dad Poor Dad,Robert T. Kiyosaki,v8NTA2mHL5kC,Will Smith,1,Business & Economics,2001,272 +Richard Feynman,John Gribbin,lpY-DwAAQBAJ,Paul Graham,1,Biography & Autobiography,2018, +Richard Nixon,John A. Farrell,i87hDAAAQBAJ,Larry King,1,Biography & Autobiography,2017,752 +Rick and Morty Book Four,Zac Gorman,7uSLDwAAQBAJ,Naval Ravikant,1,Comics & Graphic Novels,2019,128 +Rick and Morty Book One,Zac Gorman,NycTDAEACAAJ,Naval Ravikant,1,Comics & Graphic Novels,2016,296 +Rick and Morty Book Three,Zac Gorman,NycTDAEACAAJ,Naval Ravikant,1,Comics & Graphic Novels,2016,296 +Rick and Morty Book Two,Zac Gorman,gDMGDAAAQBAJ,Naval Ravikant,1,Humor,2016,128 +Riders of the Purple Sage,Zane Grey,PWBTzQEACAAJ,Tim O’Reilly,1,,2020,284 +Rilke on Love and Other Difficulties,Rainer Maria Rilke,FgRSAwAAQBAJ,Sophia Amoruso,1,Poetry,1994,117 +Rilke's Book of Hours,Rainer Maria Rilke,INzND5mOuRgC,Krista Tippett,1,Poetry,2005,257 +Ring,Jonathan Yardley,kJRRZn2sYnYC,Stephen Dubner,1,Biography & Autobiography,2001,448 +Ringside,Scott Beekman,SzAHxRZtreQC,Eric Weinstein,1,Business & Economics,2006,188 +Rise of the Mystics,Ted Dekker,lQhYDwAAQBAJ,Aubrey Marcus,1,Fiction,2018,416 +River Out of Eden,Richard Dawkins,DxmKvnPyBSoC,Ray Dalio,1,Science,2008,192 +River Town,Peter Hessler,-aQBAgAAQBAJ,Patrick Collison,1,Travel,2013,416 +"River, Cross My Heart",Breena Clarke,X6KibwAACAAJ,Oprah Winfrey,1,African American families,2000,245 +Rocket Men,Robert Kurson,nKorDwAAQBAJ,Keith Rabois,1,History,2018,384 +Rome and Jerusalem,Martin Goodman,PrH56LHsxF0C,Rainn Wilson,1,History,2008,656 +Ruby,Cynthia Bond,ZLuVDAAAQBAJ,Oprah Winfrey,1,Fiction,2015,200 +Rules for Radicals,Saul D. Alinsky,4LbvAQAACAAJ,Ryan Holiday,1,,1972, +Running Blind,Lee Child,B3hutm39Fa8C,Malcolm Gladwell,1,Fiction,2007,498 +SOG Chronicles,John Stryker Meyer,gC2stQEACAAJ,Jocko Willink,1,"Vietnam War, 1961-1975",2018,206 +SPIN Selling,Neil Rackham,Xc2qtAEACAAJ,Noah Kagan,1,Sales management,2017,238 +Sacred Economics,Charles Eisenstein,bCeeKtQsunAC,Alex Honnold,1,Political Science,2011,496 +Salt Sugar Fat,Michael Moss,_TAMKzMJ3w4C,Scott Adams,1,Business & Economics,2013,352 +"Salt, Fat, Acid, Heat",Samin Nosrat,yvqxDgAAQBAJ,Ben Silbermann,1,Cooking,2017,480 +Samuel Johnson,Samuel Johnson,oL_fh83zidwC,Gretchen Rubin,1,,1825, +Sapiens,Yuval Noah Harari,FmyBAwAAQBAJ,Ashton Kutcher|Bill Gates|Daniel Ek|James Cameron|Joe Rogan|Keith Rabois|Lex Fridman|Mark Zuckerberg|Naval Ravikant|Peter Attia|Ray Dalio|Reid Hoffman|Richard Branson|Ryan Shea|Sam Kass|Sebastian Junger|Vinod Khosla|Whitney Cummings,18,Science,2015,464 +Save The Cat!,Blake Snyder,I1VjmAEACAAJ,Eric Weinstein|Joseph Gordon-Levitt|Neville Medhora|Tim Ferriss,4,Performing Arts,2005,195 +Say You're One of Them,Uwem Akpan,Vu2lCS1tkgkC,Oprah Winfrey,1,Fiction,2010,304 +Scale,Geoffrey West,bJPZDAAAQBAJ,Stewart Brand|Vinod Khosla,2,Science,2017,496 +Scarcity,Sendhil Mullainathan,bKapoAEACAAJ,Esther Dyson,1,Decision making,2014,304 +Schulz and Peanuts,David Michaelis,omiHL5hnqLcC,Marc Andreessen,1,Biography & Autobiography,2008,704 +Science,John Gribbin,rrraAAAAMAAJ,Patrick Collison,1,Science,2002,646 +Science Business,Gary P. Pisano,aAMtkR_OYcQC,Bill Gates,1,Business & Economics,2006,237 +Science Since Babylon,Derek De Solla Price,_91fAAAAMAAJ,Eric Weinstein,1,Science,1975,215 +Science and Method,Henri Poincaré,HFzCAgAAQBAJ,Naval Ravikant,1,Mathematics,2013,304 +Screenplay,Syd Field,5GgXl7h5qvQC,Rolf Potts,1,Reference,2007,336 +Screw Business As Usual,Richard Branson,cg5DDgAAQBAJ,Elon Musk,1,Biography & Autobiography,2017,384 +Sea Flight,Hugh Popham,PRlqBgAAQBAJ,Paul Graham,1,History,2010,208 +Sea Kayaking in Baja,Andromeda Romano-Lax,ekkFAAAACAAJ,Caroline Paul,1,Sports & Recreation,1993,153 +Search Inside Yourself,Chade-Meng Tan,E_U3NAEACAAJ,Chip Conley|Matt Mullenweg,2,Self-Help,2014,288 +Season of the Witch,David Talbot,-WIlCFe-iB4C,Patrick Collison,1,Biography & Autobiography,2013,480 +Second Foundation,Isaac Asimov,MLJvB8oTM1oC,Elon Musk|Stewart Brand,2,Fiction,1994,240 +Secrets of Closing the Sale,Zig Ziglar,aRPKNOC3GBQC,Seth Godin,1,Business & Economics,2004,432 +Secrets of Power Negotiating,Roger Dawson,ObdZzwlPZYIC,Tim Ferriss,1,Business & Economics,2012,320 +Secrets of Sand Hill Road,Scott Kupor,tryWDwAAQBAJ,Eric Schmidt|Ryan Hoover,2,Business & Economics,2019,320 +Secrets of Strength,Earle Liederman,dD1IHAAACAAJ,Pavel Tsatsouline,1,Physical education and training,1925,218 +Secrets of the Flesh,Judith Thurman,bRzkHkFDowQC,J.K. Rowling,1,Biography & Autobiography,2011,640 +Security Analysis,Benjamin Graham,-SVwCBG5ZiwC,Warren Buffett,1,Business & Economics,2008,700 +Seeing What's Next,Clayton M. Christensen,SZQnfdM9O7wC,Ev Williams,1,Business & Economics,2004,312 +Seeking Wisdom,Peter Bevelin,QkX6OQAACAAJ,Charlie Munger|Derek Sivers|Jason Fried|Warren Buffett,4,,2005,288 +Selected Epigrams,Martial,SQwwBQAAQBAJ,Ryan Holiday,1,History,2014,189 +Self Belief,Jamal Edwards,W81pgSuquCEC,Richard Branson,1,Biography & Autobiography,2013,64 +Self-Esteem,Virginia M. Satir,tjchy_3FwiMC,Michael Gervais,1,Self-Help,2001,64 +Self-Made Man,Norah Vincent,3flVbiAZmwMC,Emma Watson,1,Social Science,2006,304 +Self-Made Success,Shaan Patel,4AfQjwEACAAJ,Mark Cuban,1,,2016,278 +Selfish Reasons to Have More Kids,Bryan Caplan,nEw_swEACAAJ,Paul Graham,1,Family & Relationships,2012,240 +Serve to Lead,Winston Churchill,7Fy8oQEACAAJ,Jocko Willink,1,,2012,112 +Setting the Table,Danny Meyer,epnumt9tRsAC,Chip Conley|Julie Rice,2,Business & Economics,2009,336 +Seven Brief Lessons on Physics,Carlo Rovelli,Sg_VCQAAQBAJ,Naval Ravikant,1,Science,2016,96 +Seveneves,Neal Stephenson,Jrk2jgEACAAJ,Adam Savage|Bill Gates|Chris Young,3,Fiction,2016,368 +Several Short Sentences About Writing,Verlyn Klinkenborg,OsPxrXU9P5gC,Samin Nosrat,1,Language Arts & Disciplines,2013,203 +Sex and World Peace,Valerie Hudson,K7CrAgAAQBAJ,Emma Watson,1,Political Science,2012,256 +Sex at Dawn,Christopher Ryan,UKl-48uhFq8C,Aubrey Marcus|Esther Perel|Joe Rogan|Naval Ravikant,4,Marriage,2011,394 +Sex on the Brain,Deborah Blum,u9wpNS_RjnUC,Ryan Holiday,1,Social Science,1998,352 +Sexual Personae,Camille Paglia,8Fx2yBkLIqoC,Michael Pollan,1,Literary Criticism,1991,718 +Sexus,Henry Miller,f5-VDAAAQBAJ,Eric Ripert,1,Fiction,2011,656 +Shadow & Claw,Gene Wolfe,JSHvM2BMy24C,Neil Gaiman,1,,2012,329 +Shadow Divers,Robert Kurson,XLJB3gh7LgkC,Ryan Holiday,1,History,2004,400 +Shamanism,Mircea Eliade,OxCnDwAAQBAJ,Jordan Peterson,1,"Body, Mind & Spirit",2004,610 +Shamanism & the Sacred Cactus,Douglas Sharon,kTeW4iQj63EC,Hamilton Morris,1,Religion,2003,461 +Shame,Salman Rushdie,jDvt4W4XYAQC,Richa Chadha,1,Fiction,2011,320 +Shantaram,Gregory David Roberts,5JaxSJlpGmAC,Josh Waitzkin|Kevin Kelly|Richard Branson|Whitney Wolfe Herd,4,Fiction,2012,944 +Shattered,Jonathan Allen,QqvNDAAAQBAJ,Larry King|Marc Andreessen|Peter Attia,3,Biography & Autobiography,2017,496 +She Always Knew How,Charlotte Chandler,jxjMwF8sKBcC,Dita Von Teese,1,Biography & Autobiography,2012,352 +She's Come Undone,Wally Lamb,u7zm2XdT214C,Oprah Winfrey,1,Fiction,2012,480 +Sherman,B. H. Liddell Hart,8hZXNrfoZjsC,Ryan Holiday,1,History,2009,474 +Shikasta,Doris Lessing,8YASDQAAQBAJ,Adam Savage,1,Fiction,2016,474 +Shoe Dog,Phil Knight,lk76yQEACAAJ,Bill Gates|Brian Armstrong|Jason Calacanis|Vlad Tenev|Warren Buffett,5,Biography & Autobiography,2018,400 +Shook One,Charlamagne Tha God,L52nDwAAQBAJ,Joe Rogan,1,Self-Help,2019,288 +Shopgirl,Steve Martin,9jQ8DwAAQBAJ,Ev Williams,1,Fiction,2001,144 +Should We Eat Meat?,Vaclav Smil,PLaYN1RpemwC,Bill Gates,1,Technology & Engineering,2013,280 +Show Your Work!,Austin Kleon,NFOLAgAAQBAJ,Chase Jarvis|Derek Sivers,2,Self-Help,2014,224 +Showing Up for Life,Bill Gates Sr.,nHAVI8hnRvwC,Bill Gates,1,Self-Help,2009,208 +Shōgun,James Clavell,2wNuDwAAQBAJ,Edward Norton|Joe De Sena,2,Fiction,2018,1152 +Siddhartha,Hermann Hesse,TNK3NU6nuCUC,Bryan Johnson|David Blaine|Naval Ravikant|Navdeep Chandel|Neil Strauss|Wim Hof,6,Fiction,2010,128 +Simple & Direct,Jacques Barzun,O6kuAAAAYAAJ,Tim Ferriss,1,,1868,150 +Simple French Food,Richard Olney,zxWJAwAAQBAJ,Samin Nosrat,1,Cooking,2014,455 +Simply Brilliant,William C. Taylor,-EIKDAAAQBAJ,Tom Peters,1,Business & Economics,2016,272 +Six Days of the Condor,James Grady,VaPQBQAAQBAJ,Bill Gates,1,Fiction,2011, +Six Easy Pieces,Richard P. Feynman,2OCKrF6YNKEC,Naval Ravikant,1,Science,2011,176 +Six Thinking Hats,Edward de Bono,5rdESwAACAAJ,Tim Ferriss,1,Creative thinking,2008,177 +Sixteen Satires,Juvenal,44NfAAAAMAAJ,Ryan Holiday,1,Poetry,1983,212 +Size and Strength Blueprint,Josh Bryant,JTX9rQEACAAJ,Charles Poliquin,1,,2015,166 +Sizzling Chops and Devilish Spins,Jerome Charyn,y0M9PgAACAAJ,Brian Koppelman,1,Table tennis,2001,158 +Skin in the Game,Nassim Nicholas Taleb,4dQ0DwAAQBAJ,Ben Horowitz|Marc Andreessen|Matt Mullenweg|Naval Ravikant,4,Philosophy,2018,304 +Slack,Tom DeMarco,563gvssRPvkC,Ev Williams,1,Business & Economics,2002,227 +Slavery,James Walvin,lUHFBQAAQBAJ,Chelsea Handler,1,History,2002,216 +Sleep,Nick Littlehales,X7EqDwAAQBAJ,Aubrey Marcus,1,Health & Fitness,2018,208 +Slouching Towards Bethlehem,Joan Didion,OjunFwSibEMC,Kara Swisher|Liz Lambert,2,United States,2001,206 +Slow Sex,Nicole Daedone,K_21oQEACAAJ,Tony Robbins,1,HEALTH & FITNESS,2014,128 +Slugfest,Reed Tucker,WaUFDgAAQBAJ,Marc Andreessen,1,History,2017,304 +Small Fry,Lisa Brennan-Jobs,xSchwAEACAAJ,Vlad Tenev,1,Biography & Autobiography,2019,400 +Small Giants,Bo Burlingham,X1G0vPPlf50C,Noah Kagan|Tom Peters,2,Business & Economics,2007,268 +Small Is Beautiful,E. F. Schumacher,IKo3ALhVFKcC,Emma Watson,1,Business & Economics,2011,288 +Small Pieces Loosely Joined,David Weinberger,RWMwHreIh4QC,Ev Williams,1,History,2008,240 +Smallpox,D.A. Henderson,1u7Xw5i7Ky0C,Bill Gates,1,Science,2009,334 +Smart and Gets Things Done,Avram Joel Spolsky,xUYDm7nq2_AC,Ev Williams,1,Computers,2007,200 +Smartcuts,Shane Snow,avJzAwAAQBAJ,Noah Kagan,1,Business & Economics,2014,272 +Snow Crash,Neal Stephenson,RMd3GpIFxcUC,Adam Savage|Brandon Stanton|Ev Williams|Larry Page|Naval Ravikant|Ryan Shea|Seth Godin|Tim Ferriss,8,Fiction,2003,480 +So Good They Can't Ignore You,Cal Newport,g13ZDAAAQBAJ,Kevin Kelly,1,Business & Economics,2016,304 +Society Of The Spectacle,Guy Debord,8Cd5nmMKkNMC,Dave Elitch,1,Philosophy,1998,94 +Solve for Happy,Mo Gawdat,03_FCgAAQBAJ,Peter Attia,1,Self-Help,2017, +Someday This Pain Will Be Useful to You,Peter Cameron,ju_5U7iw3qoC,Gretchen Rubin,1,Young Adult Fiction,2009,240 +Something Deeply Hidden,Sean Carroll,xGSJDwAAQBAJ,Joe Rogan,1,Science,2019,355 +Something Incredibly Wonderful Happens,K. C. Cole,A9qS4hFB9DoC,Patrick Collison,1,Biography & Autobiography,2012,420 +Sometimes a Great Notion,Ken Kesey,WToh-xW3cfoC,Jordan Peterson,1,Fiction,2006,715 +Son of Hamas,Mosab Hassan Yousef,QFYw0R8S-KMC,Ayaan Hirsi Ali,1,Religion,2011,304 +Son of the Morning Star,Evan S. Connell,KcUAHCM47TIC,Joe Rogan,1,History,2011,448 +Song of Solomon,Toni Morrison,RxkWfF2s7EUC,Bozoma Saint John|Jesse Williams|Oprah Winfrey,3,Fiction,2007,352 +Songs in Ordinary Time,Mary McGarry Morris,iUM7DwAAQBAJ,Oprah Winfrey,1,Fiction,2017,732 +Songs of Milarepa,Milarepa,DcbCAgAAQBAJ,Steve Jobs,1,Poetry,2012,128 +Soon I Will Be Invincible,Austin Grossman,SSazhpp9YEQC,Naval Ravikant,1,Fiction,2008,304 +Spacetime and Geometry,Sean Carroll,PTGdDwAAQBAJ,Patrick Collison,1,Science,2019,500 +Spark,John J. Ratey,p3WyoQEACAAJ,Tim Ferriss,1,HEALTH & FITNESS,2014,150 +Spastic Diplegia--Bilateral Cerebral Palsy,Lily Collison MA MSc,QEI-zQEACAAJ,Patrick Collison,1,Family & Relationships,2020,368 +"Speak Like Churchill, Stand Like Lincoln",James C. Humes,k6t_DmrWam8C,Cal Fussman,1,Language Arts & Disciplines,2009,224 +Speaker for the Dead,Orson Scott Card,JJ8ubAShaQYC,Ev Williams,1,Fiction,2009,304 +Speed Trap,Charlie Francis,tyj8PAAACAAJ,Ryan Flaherty,1,Anabolic steroids,1991,306 +Sperm Wars,Robin Baker,R_prQ-xUCNUC,Brian Armstrong,1,Psychology,2006,300 +Sphere,Michael Crichton,t4b69z5hs58C,Ev Williams,1,Fiction,2012,384 +Spillover,David Quammen,ezeIZReBMt4C,Jonathan Eisen,1,Medical,2012,587 +"Spiritual Enlightenment, the Damnedest Thing",Jed McKenna,y-Go8BNKiDEC,Naval Ravikant,1,"Body, Mind & Spirit",2009, +Spiritual Warfare,Jed McKenna,oMwNJgAACAAJ,Naval Ravikant,1,"Body, Mind & Spirit",2007,328 +Spiritually Incorrect Enlightenment,Jed McKenna,IOksQv4dreMC,Naval Ravikant,1,Religion,2009, +Spoken and Written Hindi,Bal Govind Misra,BxwBuwEACAAJ,Eric Weinstein,1,Foreign Language Study,1966,468 +Stalin,Edvard Radzinsky,3DtwdU7921YC,Jordan Peterson,1,Biography & Autobiography,2011,624 +Stalin,Oleg V. Khlevniuk,YPQ7jgEACAAJ,Brandon Stanton,1,,2016,408 +Stalin,Simon Sebag Montefiore,7kZNnKlKNp4C,Elon Musk,1,Biography & Autobiography,2010,820 +Stalingrad,Antony Beevor,7n1WnhX17GkC,Richard Branson,1,History,1999,560 +Stalingrad,Joachim Wieder,zLIuAAAAIAAJ,Jocko Willink,1,"Stalingrad, Battle of, 1942-1943",1955,112 +Standing on Z,Stuart Dischell,nYL6jwEACAAJ,Rolf Potts,1,American poetry,2016,27 +Star Maker,Olaf Stapledon,ZGCmVpuuk9QC,Stewart Brand,1,Fiction,2008,192 +Stargirl,Jerry Spinelli,1UpjXRSEGA0C,Taylor Swift,1,Juvenile Fiction,2011,192 +Start with Why,Simon Sinek,r2yCRUxo0EYC,Julie Rice|Richard Branson|Robert Rodriguez|Tony Hsieh,4,Business & Economics,2011,256 +State of the Art,Iain M. Banks,CD8212z2MpcC,Elon Musk|Stewart Brand,2,Fiction,2010,224 +Stay the Course,John C. Bogle,Mwh0DwAAQBAJ,Mr. Money Mustache,1,Business & Economics,2018,320 +Steal Like an Artist,Austin Kleon,NVZuUSJtpcQC,Chase Jarvis,1,Self-Help,2012,160 +Stealing Fire,Steven Kotler,I2tinQAACAAJ,Aubrey Marcus|Joe Rogan,2,Business & Economics,2018,304 +Steppenwolf,Hermann Hesse,aplMBAAAQBAJ,Amanda Palmer,1,"Civilization, Western",2010,166 +Steve Jobs,Walter Isaacson,8U2oAAAAQBAJ,Bill Gates|Chris Fussell|Ed Zschau|Elon Musk|Gary Vaynerchuk|George Raveling|Ray Dalio|Scott Adams|Scott Belsky,9,Biography & Autobiography,2011,630 +Steve Jobs & the Next Big Thing,Randall E. Stross,8U2oAAAAQBAJ,Keith Rabois,1,Biography & Autobiography,2011,630 +Still Writing,Dani Shapiro,envGAgAAQBAJ,Maria Popova,1,Reference,2013,256 +Stolen Lives,Malika Oufkir,2OMOAAAACAAJ,Oprah Winfrey,1,Biography & Autobiography,2002,431 +Stone Age Economics,Marshall Sahlins,LTUlDwAAQBAJ,Seth Godin,1,Business & Economics,2017,376 +Stones from the River,Ursula Hegi,oMx9k6wH5aMC,Oprah Winfrey,1,Fiction,2011,528 +Stop Stealing Sheep & Find Out How Type Works,Erik Spiekermann,wKlKAgAAQBAJ,Debbie Millman,1,Computers,2013,213 +Stories of Your Life and Others,Ted Chiang,VbbyBgAAQBAJ,Naval Ravikant|Patrick Collison|Tim Ferriss,3,Fiction,2015,320 +Storm of Steel,Ernst Jünger,q-LjDQAAQBAJ,Jocko Willink,1,History,2016,320 +Story,Robert McKee,6y_AR8EZI54C,Rolf Potts,1,Performing Arts,2010,480 +Strangers Drowning,Larissa MacFarquhar,yWRTDQAAQBAJ,Nick Thompson,1,Philosophy,2016,336 +Strangers to Ourselves,Timothy D. Wilson,W4yzugYjz08C,Malcolm Gladwell,1,Psychology,2004,272 +Strengths Based Leadership,Tom Rath,F9xDCwAAQBAJ,Brian Armstrong,1,Business & Economics,2008,266 +StrengthsFinder 2.0,Tom Rath,gttDCwAAQBAJ,Neil Strauss,1,Business & Economics,2007,175 +"Stress Less, Accomplish More",Emily Fletcher,f8putwEACAAJ,Aubrey Marcus,1,"Body, Mind & Spirit",2019,272 +Stress Test,Timothy F. Geithner,gGmKDQAAQBAJ,Bill Gates|Mr. Money Mustache|Warren Buffett,3,Biography & Autobiography,2014,580 +Stretch,Scott Sonenshein,ku8qDAAAQBAJ,Brené Brown,1,Business & Economics,2017,304 +Stretching the School Dollar,Frederick M. Hess,eg25cQAACAAJ,Bill Gates,1,Education,2010,351 +Striking Thoughts,Bruce Lee,FbqHCgAAQBAJ,Naval Ravikant,1,Sports & Recreation,2015,256 +String Theory,David Foster Wallace,7gnujgEACAAJ,Ben Shapiro|Bill Gates,2,Biography & Autobiography,2016,176 +"Strong Fathers, Strong Daughters",Meg Meeker,ysxOl41noKMC,Dave Ramsey,1,Family & Relationships,2006,296 +"Strong Mothers, Strong Sons",Meg Meeker,_clvDwAAQBAJ,Dave Ramsey,1,Family & Relationships,2014,341 +Structure and Interpretation of Classical Mechanics,Gerald Jay Sussman,a4-pBgAAQBAJ,Patrick Collison,1,Science,2015,584 +Structure and Interpretation of Computer Programs,Harold Abelson,1DrQngEACAAJ,Max Levchin|Patrick Collison|Paul Graham,3,Computers,1996,657 +Stuff Matters,Mark Miodownik,_5yUAwAAQBAJ,Bill Gates|Patrick Collison,2,History,2014,252 +Stumbling on Happiness,Daniel Todd Gilbert,2U-HbwwjR24C,Derek Sivers|Ev Williams|Maria Popova|Sam Harris|Tim Ferriss,5,Psychology,2009,336 +Subliminal,Leonard Mlodinow,V7wt3Sqj_X8C,Ray Dalio,1,Business & Economics,2013,260 +Suffering Is Optional,Cheri Huber,p-YOAAAACAAJ,Jane McGonigal,1,"Body, Mind & Spirit",2002,240 +Sugar Blues,William Dufty,7hZkPwAACAAJ,Maurice Ashley,1,,1981, +Sula,Toni Morrison,7LeVDAAAQBAJ,Oprah Winfrey,1,Fiction,2015,186 +Sum,David Eagleman,-cjWiI8DEywC,Derek Sivers|Patrick Collison|Tim Ferriss,3,Fiction,2009,107 +Super Sad True Love Story,Gary Shteyngart,dkG23PnEXIkC,Whitney Cummings,1,Fiction,2011,331 +SuperFreakonomics,Steven D. Levitt,bT_mCTfPFWYC,Bill Gates,1,Business & Economics,2011,304 +Superforecasting,Philip E. Tetlock,hC_qBQAAQBAJ,Julia Galef,1,Business & Economics,2015,352 +Superintelligence,Nick Bostrom,7_H8AwAAQBAJ,Elon Musk|Marc Goodman|Naval Ravikant|Sam Harris|Will MacAskill,5,Computers,2014,328 +Supermanifolds,Bryce DeWitt,0NinYnTQa-gC,Eric Weinstein,1,Science,1992,407 +Supermoney,Adam Smith,5LKCQgAACAAJ,Warren Buffett,1,Investments,1973,301 +Surface Detail,Iain M. Banks,eDt6lmVX_k0C,Elon Musk,1,Fiction,2010,640 +Sustainable Energy,David JC MacKay,IsgiPQAACAAJ,Bill Gates,1,Business & Economics,2009,366 +Sustainable Materials,Julian M. Allwood,GGaHtQAACAAJ,Bill Gates,1,Science,2012,373 +Swallows and Amazons,Arthur Ransome,8NWGAAAACAAJ,Richard Branson,1,Adventure,1993,392 +Sweet Soul Music,Peter Guralnick,IRycxiRjvKoC,Ta-Nehisi Coates,1,Music,2002,384 +Swimming Across,Andrew S. Grove,vUKoDwAAQBAJ,Keith Rabois,1,Biography & Autobiography,2019, +Symbols of Transformation,Carl Jung,xxR9AAAAMAAJ,Jordan Peterson,1,Psychology,1956, +Symmetry,Hermann Weyl,GG1FCQAAQBAJ,Eric Weinstein,1,Science,2015,176 +Symposium,Plato,pgzAAwAAQBAJ,Bryan Callen,1,Philosophy,2003,49 +Synchronicity,Carl Jung,usrGSaO7QosC,Ricardo Semler,1,Psychology,1997,177 +Systemantics,John Gall,Yb5aAAAAMAAJ,Jordan Peterson,1,Humor,1986,319 +Take on the Street,Arthur Levitt,Gqg_DwAAQBAJ,Warren Buffett,1,Business & Economics,2003,364 +Taking the Work Out of Networking,Karen Wickre,RJZ5DwAAQBAJ,Chip Conley|Chris Anderson|Ryan Hoover,3,Business & Economics,2018,240 +Talent Wins,Ram Charan,xXMzDwAAQBAJ,Keith Rabois,1,Business & Economics,2018,192 +Tales of Magic Boxed Set,Edward Eager,esEzCwAAQBAJ,Gretchen Rubin,1,Juvenile Fiction,2016,896 +Tales of the Unexpected,Roald Dahl,4WEPAQAAIAAJ,Richard Branson,1,Fiction,1980,127 +Talking to Humans,Giff Constable,ggzGoQEACAAJ,Ron Conway,1,Customer relations,2014,87 +Tao Te Ching,Lao Tzu,kpWfW4-8bCEC,Brian MacKenzie|Jason Nemer|Josh Waitzkin|Michael Gervais|Naval Ravikant|Rick Rubin|Soman Chainani|Stewart Brand|Tim Ferriss,9,,1842, +Tao of Jeet Kune Do,Bruce Lee,g37ysgEACAAJ,Ed Latimore,1,Sports & Recreation,2011,245 +Tao of Philosophy,Alan Watts,GLLFHGoHPJwC,Naval Ravikant,1,Philosophy,1999,128 +Tap Dancing to Work,Carol J. Loomis,SspKuwAACAAJ,Bill Gates,1,Capitalists and financiers,2012,345 +Tara Road,Maeve Binchy,gD1WXiSrdSMC,Oprah Winfrey,1,Fiction,2009,656 +Teach Yourself Hindi,Rupert Snell,dpgYgumi-s8C,Eric Weinstein,1,Foreign Language Study,2011,496 +Team Dog,Mike Ritland,T-1vDwAAQBAJ,Jocko Willink,1,Dogs,2016,232 +Team of Rivals,Doris Kearns Goodwin,ONhhui9SRsMC,Bill Gates|J.K. Rowling|Scott Belsky,3,Biography & Autobiography,2006,916 +Team of Teams,Stanley McChrystal,wW4CDAAAQBAJ,Doug McMillon|M. Sanjayan,2,Business & Economics,2015,290 +TechGnosis,Erik Davis,kdJnBAAAQBAJ,Jason Silva,1,Computers,2015,456 +Technics and Civilization,Lewis Mumford,PU7PktesGUoC,Patrick Collison,1,History,2010,495 +Technopoly,Neil Postman,gYrIVidSiLIC,Tristan Harris,1,Technology & Engineering,2011,240 +Teenage Mutant Ninja Turtles,Kevin Eastman,BH1gCgAAQBAJ,Joe Gebbia,1,Comics & Graphic Novels,, +Tenth of December,George Saunders,wQz-1BR2rTYC,Dave Elitch,1,Fiction,2013,272 +Tesla,Margaret Cheney,HIuK7iLO9zgC,Ev Williams,1,Biography & Autobiography,2011,400 +That Used to Be Us,Thomas L. Friedman,ueZYkM1JWvEC,Bill Gates,1,Political Science,2012,432 +That Will Never Work,Marc Randolph,2ZqZDwAAQBAJ,Reed Hastings,1,Business & Economics,2019,336 +That's What She Said,Joanne Lipman,-hncDgAAQBAJ,Mark Cuban,1,Business & Economics,2018,320 +The 10 Habits of Happy Mothers,Meg Meeker,s2LLwAEACAAJ,Dave Ramsey,1,Family & Relationships,2011,222 +"The 10,000 Year Explosion",Gregory Cochran,VrpUh0rRYvsC,Nick Szabo,1,Science,2009,304 +The 100-Year Life,Lynda Gratton,Zm4wDQAAQBAJ,Chip Conley,1,"Finance, Personal",2016,256 +The 13 Clocks,James Thurber,HdCoDAAAQBAJ,Neil Gaiman,1,Fiction,2016,128 +The 15 Commitments of Conscious Leadership,Jim Dethmer,8JsKogEACAAJ,Brian Armstrong|Dustin Moskovitz|Tony Robbins,3,Leadership,2015,361 +The 21 Irrefutable Laws of Leadership,John C. Maxwell,p-NaVKOmmG4C,Dave Ramsey,1,Business & Economics,2007,336 +The 22 Immutable Laws of Branding,Al Ries,P78R-5OnaqsC,Ramit Sethi,1,Business & Economics,2009,272 +The 22 Immutable Laws of Marketing,Al Ries,e8SgPwAACAAJ,Brian Armstrong|Chase Jarvis|Tim Ferriss|Tristan Harris,4,Marketing,1994,160 +The 4 Disciplines of Execution,Chris McChesney,wu4A8LJpYD8C,Tim Ferriss,1,Business & Economics,2012,352 +The 4-Hour Workweek,Tim Ferriss,MemLDgAAQBAJ,A.J. Jacobs|Blake Mycoskie|Bryan Callen|Caterina Fake|Charles Poliquin|Daniel Pink|David Heinemeier Hansson|Eric Weinstein|Jason Silva|Laura R Walker|Marc Goodman|Mark Bell|Maurice Ashley|Mike Shinoda|Tristan Harris|Walter Isaacson,16,Business & Economics,2017,96 +The 48 Laws of Power,Robert Greene,P_zMW3EHnTEC,Alice Little|Aubrey Marcus|DJ Vlad|Ryan Holiday,4,"Body, Mind & Spirit",2010,463 +The 49th Mystic,Ted Dekker,wICnvAEACAAJ,Aubrey Marcus,1,Fiction,2019,432 +The 5 Love Languages,Gary Chapman,ppLwoOk5A8MC,Dustin Moskovitz,1,Family & Relationships,2009,80 +The 7 Habits of Highly Effective People,Stephen R. Covey,sm4TAgAAQBAJ,Daniel Pink|Dave Ramsey|Dustin Moskovitz|Ken Block|Michael McCullough|Shay Carl,6,Business & Economics,2013,391 +The 80/20 Principle and 92 Other Powerful Laws of Nature,Richard Koch,qmTgG0LseYQC,Dave Camarillo|Keith Rabois|Tim Ferriss,3,Science,2013,338 +The Act of Creation,Arthur Koestler,IbLEjwEACAAJ,Adam Robinson,1,"Creation (Literary, artistic, etc.)",2014,752 +The Adventures of Hajji Baba of Ispahan,James Morier,K1QJAAAAQAAJ,Patrick Collison,1,Iran,1824,387 +The Adventures of Johnny Bunko,Daniel Pink,U27lU1ibfBgC,Kevin Kelly,1,Business & Economics,2008,160 +The Adventures of Tom Sawyer,Mark Twain,-HpXBAAAQBAJ,Richard Branson,1,Juvenile Fiction,2014,324 +The Affair,Lee Child,QV_BfCQUvq4C,Malcolm Gladwell,1,Fiction,2012,590 +The Age of Absurdity,Michael Foley,CAZHAfhi-UkC,David Heinemeier Hansson,1,Philosophy,2010,272 +The Age of Giant Corporations,Robert Sobel,0W3sAAAAMAAJ,Paul Graham,1,Business & Economics,1972,257 +The Age of Innocence,Edith Wharton,6s4cn6fzQUgC,Ta-Nehisi Coates,1,Fiction,1995,400 +The Age of Napoleon,Will & Ariel Durant,JiE3GbPcJcwC,Larry Ellison,1,History,2011,872 +The Age of Spiritual Machines,Ray Kurzweil,lbl4MN3iUHsC,Steve Jurvetson,1,Computers,2000,400 +The Age of Surveillance Capitalism,Shoshana Zuboff,MJ5ADwAAQBAJ,Vinod Khosla,1,Business & Economics,2019,704 +The Age of Wonder,Richard Holmes,sSLJnGMUw9wC,Ed Cooke,1,Science,2009,576 +The Agile Gene,Matt Ridley,KM46oPVi66UC,Naval Ravikant,1,Science,2012,352 +The Alchemist,Paulo Coelho,FEL8DlqjYEkC,Aubrey Marcus|Big Sean|Brené Brown|Daniel Ek|Eric Ripert|Gabby Reece|LeBron James|Lisa Ling|Ryan Flaherty|Ryan Shea|Tim Ferriss|Will Smith,12,Fiction,2009,208 +The Alliance,Reid Hoffman,OvefAwAAQBAJ,Brian Armstrong|Phil Libin,2,Business & Economics,2014,193 +The Almagest,Claudius Ptolemy,M4K4oQEACAAJ,Neil deGrasse Tyson,1,Science,2014,264 +The Amazing Adventures of Kavalier & Clay,Michael Chabon,d0aVDAAAQBAJ,Ev Williams,1,Literary Criticism,2016,33 +The American Challenge,Jean-Jacques Servan-Schreiber,19gfAQAAIAAJ,Peter Thiel,1,Computers,1986,111 +The Anatomy of Disgust,William Ian Miller,YpPnwmxgsX0C,Sam Harris,1,Psychology,2009,336 +The Ancient City,Peter Connolly,zMRlmgEACAAJ,Paul Graham,1,Juvenile Nonfiction,2000,256 +The Annotated Alice,Lewis Carroll,bd0AAQAAQBAJ,Eric Weinstein,1,Fiction,2000,312 +The Annotated Flatland,Ian Stewart,l5sjMcbobB8C,Bryan Johnson,1,Science,2008,272 +The Anti-Christ,Friedrich Nietzsche,0ao8AAAAYAAJ,Jordan Peterson,1,Antichrist,1920,182 +The Antidote,Oliver Burkeman,UhImO0N0b2gC,David Allen,1,Psychology,2012,256 +The Apprenticeship of Duddy Kravitz,Mordecai Richler,XNVuITZr9EMC,Ryan Holiday,1,Fiction,1999,377 +The Arabs,Eugene Rogan,fj8ytAEACAAJ,Patrick Collison,1,HISTORY,2017, +The Archetypes and The Collective Unconscious ,Carl Jung,hmXfBQAAQBAJ,Jordan Peterson|Ricardo Semler,2,Psychology,2014,480 +The Argonauts,Maggie Nelson,q4CLCwAAQBAJ,Emma Watson,1,Biography & Autobiography,2016,192 +The Armed Forces Officer,U.S. Department of Defense,N_hek4msSEMC,Jocko Willink,1,History,2007,162 +The Art Of War,Sun Tzu,V-7DAgAAQBAJ,Dave Camarillo|Evan Spiegel|Jocko Willink|Marc Benioff|Neil deGrasse Tyson|Vlad Tenev,6,History,2012,96 +The Art Spirit,Robert Henri,YxCbL7TPPwQC,Jack Dorsey|Ron Conway,2,Art,2007,288 +The Art of Asking,Amanda Palmer,xq-MAwAAQBAJ,Tim Ferriss,1,Self-Help,2014,224 +The Art of Being Unreasonable,Eli Broad,LJZqGV1SsasC,Bill Gates,1,Business & Economics,2012,208 +The Art of Computer Programming,Donald E. Knuth,x9AsAwAAQBAJ,Max Levchin,1,Computers,1997,672 +The Art of Doing Science and Engineering,Richard W. Hamming,tE59QgAACAAJ,Patrick Collison,1,Probabilities,1991,344 +The Art of Dramatic Writing,Lajos Egri,1bp7P0-dEMMC,Seth Rogen,1,Language Arts & Disciplines,1972,320 +The Art of Fielding,Chad Harbach,65p0FWFyFR4C,Sam Kass,1,Fiction,2011,528 +The Art of Game Design,Jesse Schell,kRMeBQAAQBAJ,Ryan Hoover,1,Computers,2014,600 +The Art of Happiness,Epicurus,z4NWJKprR1MC,Jack Dorsey,1,Philosophy,2012,272 +The Art of Learning,Josh Waitzkin,XUwOtdcIWdkC,Bryan Callen|Dave Elitch|Ed Latimore|Mark Hart|Safi Bahcall,5,Biography & Autobiography,2008,265 +The Art of Living and Dying,Osho,8fsjDwAAQBAJ,Joe Rogan,1,Social Science,2017,272 +The Art of Loving,Erich Fromm,XEKtAwAAQBAJ,Esther Perel,1,Psychology,2000,130 +The Art of Manipulation,R. B. Sparkman,StyOmwEACAAJ,Naval Ravikant,1,Influence (Psychology),1978,182 +The Art of Nonfiction,Ayn Rand,ThwKSLHGrX8C,Tim Ferriss,1,Literary Criticism,2001,208 +The Art of Possibility,Rosamund Stone Zander,K-nqOvyQZNkC,Seth Godin,1,Business & Economics,2000,206 +The Art of War in the Middle Ages,Charles Oman,XRBkDwAAQBAJ,Paul Graham,1,Military art and science,1953,176 +The Art of the Long View,Peter Schwartz,fILtwg777hsC,Stewart Brand,1,Business & Economics,1996,272 +The Art of the Metaobject Protocol,Gregor Kiczales,3X5Gnudn3k0C,Alan Kay,1,Computers,1991,335 +The Art of the Pimp,Dennis Hof,ewVxBgAAQBAJ,Alice Little,1,Biography & Autobiography,2015,352 +The Art of the Start,Guy Kawasaki,-gXlwJnnNoEC,Ev Williams,1,Business & Economics,2004,226 +The Art of the Start 2.0,Guy Kawasaki,jhN-BAAAQBAJ,Matt Mullenweg,1,Business & Economics,2015,336 +The Artist's Way,Julia Cameron,N82aqC0P2rsC,Brian Koppelman|Tim Ferriss,2,Language Arts & Disciplines,2012,240 +The Ascent of Money,Niall Ferguson,QJHgjwEACAAJ,Max Levchin,1,History,2009,442 +The Aspirational Investor,Ashvin B. Chhabra,ba7dCQAAQBAJ,Graham Duncan,1,Business & Economics,2015,240 +The Autobiography of Benjamin Franklin,Benjamin Franklin,UPyWAwAAQBAJ,Brandon Stanton|Charlie Munger|Cory Booker|Paul Graham|Vince Vaughn|Walter Isaacson,6,,1901,299 +The Autobiography of Malcolm X,Malcolm X,EtVfCgAAQBAJ,Casey Neistat|Jason Calacanis|Jerrod Carmichael|Steve Aoki,4,Biography & Autobiography,2015,544 +"The Autobiography of Martin Luther King, Jr.","Martin Luther King, Jr.",bFFiuAEACAAJ,Brandon Stanton,1,Biography & Autobiography,1998,400 +The Awakening of Intelligence,Jiddu Krishnamurti,qwfvVpSsxRcC,Dave Elitch,1,Religion,1987,544 +The BFG,Roald Dahl,XJH7DAAAQBAJ,Emma Watson,1,Juvenile Fiction,2016,176 +The Barefoot Investor,Scott Pape,6HiYDQAAQBAJ,Turia Pitt,1,Business & Economics,2017,296 +The Battle for the Soul of Capitalism,John C. Bogle,jjPX-wB8KTcC,Mr. Money Mustache,1,Business & Economics,2006,260 +The Battle of Alcazar,E.W. Bovill,Y1BpAAAAMAAJ,Paul Graham,1,"Alcazarquivir, Battle of, Qasṛ al-Kabīr, Larache, Morocco, 1578",1952,198 +The Beat of a Different Drum,Jagdish Mehra,1f9pQgAACAAJ,Eric Weinstein,1,Science,1996,630 +The Beautiful and Damned,F. Scott Fitzgerald,MavWDwAAQBAJ,Taylor Swift,1,,, +The Bed of Procrustes,Nassim Nicholas Taleb,anF6BX3xoRgC,Matt Mullenweg|Naval Ravikant,2,Philosophy,2010,160 +The Beggar King and the Secret of Happiness,Joel ben Izzy,NclB9DHfteEC,Maria Sharapova,1,Biography & Autobiography,2005,240 +The Beginning of Infinity,David Deutsch,WFZl7YvsiuIC,Chris Anderson|Mark Zuckerberg|Naval Ravikant|Patrick Collison|Sam Harris|Steven Pinker,6,Explanation,2012,487 +The Best Way to Play,Bill Cosby,jYJQGQAACAAJ,Oprah Winfrey,1,Juvenile Fiction,2007,40 +The Best We Could Do,Thi Bui,mmqsswEACAAJ,Bill Gates,1,Biography & Autobiography,2018,336 +The Bet,Paul Sabin,NAWXoAEACAAJ,Bill Gates,1,Business & Economics,2014,304 +The Better Angels of Our Nature,Steven Pinker,8-vYCwAAQBAJ,A.J. Jacobs|Ben Silbermann|Bill Gates|Chris Anderson|Eric Schmidt|Jack Kornfield|John Arnold|Lex Fridman|Mark Zuckerberg|Stewart Brand,10,Psychology,2012,802 +The Bhagavad Gita,-,wtQVewSq7SAC,Naval Ravikant|Wim Hof,2,Religion,1965,152 +The Bible,-,fMWXlHKwehsC,Jordan Peterson,1,History,1979,286 +The Big Book of Jewish Humor,William Novak,qQ1B3mgw1XoC,B.J. Novak,1,Humor,1981,336 +The Big Book of New American Humor,William Novak,GpsNAQAAMAAJ,B.J. Novak,1,Humor,1990,339 +The Big Change,Frederick Lewis Allen,iqT2M0xXP_cC,Paul Graham,1,"National characteristics, American",1955,308 +The Big Picture,Sean Carroll,lufkDAAAQBAJ,Elon Musk|Liv Boeree,2,Science,2016,464 +The Big Score,Michael S. Malone,ZZK1AAAAIAAJ,Patrick Collison,1,Business & Economics,1985,442 +The Big Secret for the Small Investor,Joel Greenblatt,iM0l19ND9Y4C,Mr. Money Mustache,1,Business & Economics,2011,156 +The Big Short,Michael Lewis,erDXCgAAQBAJ,David Heinemeier Hansson|Malcolm Gladwell,2,Business & Economics,2015,320 +The Big Sleep,Raymond Chandler,ZgfbDwAAQBAJ,Jordan Peterson,1,Fiction,2020,173 +The Big Switch,Nicholas Carr,t6QY-c0XN7UC,Marc Benioff,1,Computers,2009,304 +The Biology of Desire,Marc Lewis,SbE4DgAAQBAJ,Esther Dyson,1,Psychology,2015,256 +The Black Book of Communism,Mark Kramer,c5-TewmRvzsC,Nick Szabo,1,Religion,2011,264 +The Black Jacobins,C.L.R. James,MwqF2592AMQC,Ben Horowitz,1,History,2001,384 +The Black Riders,Violet Needham,9aqotAEACAAJ,Paul Graham,1,Adventure stories,1971,190 +The Black Swan,Nassim Nicholas Taleb,gWW4SkJjM08C,Art De Vany|Bill Gates|Edward Norton|James Altucher|Jeff Bezos|Matt Mullenweg|Naval Ravikant|Nick Kokonas,8,Business & Economics,2007,480 +The Blade Itself,Joe Abercrombie,SlizBgAAQBAJ,Joel McHale,1,Fiction,2015,560 +The Blind Side,Michael Lewis,RIPdMkiKipMC,Ev Williams,1,Biography & Autobiography,2009,352 +The Blind Watchmaker,Richard Dawkins,u4d0CgAAQBAJ,Steven Pinker,1,Science,2015,496 +The Bloody Chamber,Angela Carter,kij3DAAAQBAJ,Emma Watson,1,Fairy tales,2016,240 +The Blue Sweater,Jacqueline Novogratz,wN-mAgAAQBAJ,Seth Godin,1,Social Science,2010,320 +The Bluest Eye,Toni Morrison,SsFhBAAAQBAJ,Oprah Winfrey,1,Fiction,2014,224 +The Body Reset Diet,Harley Pasternak,sWdaAQAAQBAJ,Joel Stein,1,Health & Fitness,2013,256 +The Bonfire of the Vanities,Tom Wolfe,JDteDwAAQBAJ,Ev Williams,1,Fiction,2018,752 +The Book of Dust,Philip Pullman,pwMEDgAAQBAJ,Gretchen Rubin|Patrick Collison,2,Young Adult Fiction,2017,464 +The Book of Five Rings,Miyamoto Musashi,o06YP08dp2gC,Jocko Willink|Joe Rogan|Naval Ravikant|Tim Ferriss,4,Philosophy,2005,192 +The Book of Freedom,Paul Selig,a95NDwAAQBAJ,Aubrey Marcus,1,"Body, Mind & Spirit",2018,368 +The Book of Hadith,Charles Le Gai Eaton,e5MkAQAAIAAJ,Ayaan Hirsi Ali,1,History,2008,152 +The Book of Joy,Dalai Lama,fN7ACwAAQBAJ,Jack Kornfield,1,Self-Help,2016,368 +The Book of Laughter and Forgetting,Milan Kundera,hux47U4KMREC,Tim Ferriss,1,Fiction,1999,320 +The Book of Life,J. Krishnamurti,lLMa6isBtk8C,Naval Ravikant,1,Devotional calendars,2001,403 +The Book of Mormon,Joseph Smith,19HYDCPYmvwC,Shay Carl,1,Philosophy,2009,580 +The Book of Nothing,John D. Barrow,ZYL6bO0MpTUC,Naval Ravikant,1,Mathematics,2011,400 +The Book of Ruth,Jane Hamilton,Qp7iBAAAQBAJ,Oprah Winfrey,1,Fiction,2014,336 +The Book of Strange New Things,Michel Faber,BmtyAwAAQBAJ,Joel McHale,1,Fiction,2014,592 +The Book of Truth,Paul Selig,-x8mDQAAQBAJ,Aubrey Marcus,1,"Body, Mind & Spirit",2017,368 +The Book of Virtues,William J. Bennett,9TPH7BRde7wC,Glenn Beck,1,Literary Criticism,2010,832 +The Book of Why,Judea Pearl,9H0dDQAAQBAJ,Keith Rabois|Naval Ravikant,2,Computers,2018,432 +The Boron Letters,Gary Halbert,y_uJnQEACAAJ,Neville Medhora|Noah Kagan,2,,2013,146 +The Botany of Desire,Michael Pollan,Woywyw8LlcgC,Samin Nosrat,1,Gardening,2002,271 +The Bottom Billion,Paul Collier,xyKIteKMNXUC,Bill Gates,1,Business & Economics,2007,224 +The Box,Marc Levinson,zo3yq9JSKIkC,Bill Gates|Paul Graham|Tobi Lütke,3,Political Science,2011,480 +The Boys Vol. 1,Garth Ennis,LgkiDAAAQBAJ,Naval Ravikant,1,Comics & Graphic Novels,2012,144 +The Brand Flip,Marty Neumeier,4MA9CgAAQBAJ,Vinod Khosla,1,Business & Economics,2015,160 +The Breakthrough,Charles Graeber,lWhPDwAAQBAJ,Keith Rabois|Vinod Khosla,2,Health & Fitness,2018,320 +The Broken Ladder,Keith Payne,IPTGDgAAQBAJ,Barack Obama,1,business & economics,2017,246 +The Brothers Karamazov,Fyodor Dostoyevsky,mMNKAAAAYAAJ,Jordan Peterson,1,Brothers,1922,838 +The Brutality of Fact,David Sylvester,qMMzSQAACAAJ,Dave Elitch,1,,1988,208 +The Bully Pulpit,Doris Kearns Goodwin,4W7Q-qr_TSAC,Bill Gates,1,History,2013,928 +The Business Value of Computers,Paul A Strassmann,4JFYNybuNmYC,Steve Jobs,1,Business & Economics,1990,530 +The Call,Oriah Mountain Dreamer,YMxzQiezE58C,Michael Gervais,1,Religion,2009,224 +The Case Against Sugar,Gary Taubes,BVHgCwAAQBAJ,Vinod Khosla,1,Health & Fitness,2016,384 +The Cat's Table,Michael Ondaatje,IAptB4TZ3nkC,Bill Gates,1,Fiction,2012,256 +The Catcher in the Rye,J.D. Salinger,Ar1jswEACAAJ,Bill Gates|Ev Williams|Gretchen Rubin|Larry King,4,Fiction,2018,288 +The Cathedral & the Bazaar,Eric S. Raymond,Li7P67rthboC,Ryan Holiday,1,,1788,30 +The Causes of War,Geoffrey Blainey,EcuxgjB6W-sC,Stewart Brand,1,,1973, +The Champion's Mind,Jim Afremow,CqEiAgAAQBAJ,Katrín Davíðsdóttir,1,Sports & Recreation,2014,288 +The Charterhouse of Parma,Stendhal,7xdehD9jXd4C,Jordan Peterson,1,Fiction,2007, +The Checklist Manifesto,Atul Gawande,9T3yxD8UhKoC,Bill Gates|Charles Poliquin|Jack Dorsey|Keith Rabois|Malcolm Gladwell|Michael McCullough|Ramit Sethi|Tim Ferriss,8,,2010,224 +The Cheese Trap,Neal D Barnard,TKfbDAAAQBAJ,James Cameron|Suzy Amis Cameron,2,Health & Fitness,2017,288 +The China Study,T. Colin Campbell,kmhADwAAQBAJ,Ev Williams|James Cameron|Suzy Amis Cameron,3,Health & Fitness,2016,496 +The Chip,T. R. Reid,lKd-PwAACAAJ,Patrick Collison,1,Science,2008,309 +The Churchill Factor,Boris Johnson,6wUiAwAAQBAJ,Arnold Schwarzenegger,1,History,2014,384 +The Circle,Dave Eggers,sbxWAAAAQBAJ,Emma Watson,1,Fiction,2013,504 +The City That Became Safe,Franklin E. Zimring,_HcTDAAAQBAJ,Bill Gates,1,Law,2013,272 +The City We Became,N. K. Jemisin,CD-DDwAAQBAJ,Neil Gaiman,1,Fiction,2020,448 +The City in History,Lewis Mumford,q0NNgjY03DkC,Keith Rabois|Patrick Collison,2,History,1961,657 +The Civil War,Bruce Catton,lSOwSO5l5OUC,Tim O’Reilly,1,History,2005,382 +The Civilization of the Middle Ages,Norman F. Cantor,d1rHCgAAQBAJ,Stewart Brand,1,History,2015,624 +The Clash of Civilizations and the Remaking of World Order,Samuel P. Huntington,1CM3GUNLzOAC,Ayaan Hirsi Ali|Stewart Brand,2,Political Science,2007,368 +The Clash of the Cultures,John C. Bogle,9WmHM2y8AEEC,Mr. Money Mustache|Warren Buffett,2,Business & Economics,2012,384 +The Clay Pigeons of St. Lo,Joseph Balkoski,LeGVAwAAQBAJ,Jocko Willink,1,History,2012,432 +The Clock Of The Long Now,Stewart Brand,Ed0XwaX_fHIC,Phil Libin,1,Philosophy,2008,208 +The Cluetrain Manifesto,Rick Levine,g2vMtAEACAAJ,Ev Williams,1,Business & Economics,2011,320 +The Coddling of the American Mind,Greg Lukianoff,9-o6DwAAQBAJ,Max Levchin|Vinod Khosla,2,Social Science,2018,352 +The Coldest War,James Brady,dO09Ln326lMC,Jocko Willink,1,History,2007,256 +The Coldest Winter,David Halberstam,9oQC0T8J7pYC,Bill Rasmussen,1,History,2011,736 +The Collected Poems,Wallace Stevens,-QJwDwAAQBAJ,Caterina Fake|Tim O’Reilly,2,Poetry,2015,583 +The Collected Poems of Dylan Thomas,Dylan Thomas,-eVJAAAAQBAJ,Steve Jobs,1,Poetry,2010,240 +The Collected Poems of Emily Dickinson,Emily Dickinson,J8c9vgAACAAJ,Caterina Fake,1,American poetry,2016,208 +The Collected Poems of W. B. Yeats,W. B. Yeats,J6H0uAEACAAJ,Tim O’Reilly,1,,2018,802 +The Collected Stories of Colette,Colette,xv8SY39zG9YC,J.K. Rowling,1,Fiction,2011,624 +The Collected Works of P. G. Wodehouse,P. G. Wodehouse,otCSDwAAQBAJ,J.K. Rowling|Paul Graham,2,Fiction,2018,5685 +The Color Purple,Alice Walker,CX6m7scQ4wcC,Emma Watson,1,Fiction,1982,294 +The Colour of Magic,Terry Pratchett,6Fbv-886Iv4C,Neil Gaiman,1,Fiction,1985,284 +The Columbian Exchange,Alfred Crosby,n-y_bn3ZM4EC,Nick Szabo,1,Biography & Autobiography,2003,283 +The Coming Plague,Laurie Garrett,O8vSDwAAQBAJ,Jonathan Eisen,1,Medical,1995,750 +The Coming Population Crash,Fred Pearce,KWBqYzt10L0C,Stewart Brand,1,Science,2010,289 +The Company,John Micklethwait,JTp2eWZCh98C,Paul Graham,1,History,2005,227 +The Compleat Strategyst,J. D. Williams,lAv_hd2KybYC,Naval Ravikant,1,Mathematics,2012,268 +The Complete Calvin and Hobbes,Bill Watterson,wmjG5g4Yx7gC,Paul Graham,1,Comics & Graphic Novels,2005,1440 +The Complete Essays,Michel de Montaigne,VCrII-QPaucC,Alain de Botton,1,Literary Collections,2004,1360 +The Complete Greek Tragedies,David Grene,pfmwAAAAIAAJ,Stewart Brand,1,English drama,1959, +The Complete Guide to Trail Building and Maintenance,Carl Demrow,29cAAAAACAAJ,Stewart Brand,1,Sports & Recreation,1998,245 +The Complete Life's Little Instruction Book,H. Jackson Brown Jr,hNjDk75RCD8C,Scott Belsky,1,Self-Help,1997,320 +The Complete Novels of Jane Austen,Jane Austen,3GOFouoFqoIC,Paul Graham,1,England,2007,1440 +The Complete Persepolis,Marjane Satrapi,lWJ_PgAACAAJ,Emma Watson,1,BIOGRAPHY & AUTOBIOGRAPHY,2007,341 +The Complete Sherlock Holmes,Arthur Conan Doyle,kcw-GGgGPcAC,Paul Graham,1,Fiction,2012,800 +The Complete Stories,Isaac Asimov,BVnaF63RVs0C,Max Levchin,1,American fiction,1994,429 +The Complete Works of Henry David Thoreau,Henry David Thoreau,cZfbyAEACAAJ,Ricardo Semler,1,,1929, +The Confessions,Jean-Jacques Rousseau,JpeFvnPUEuIC,Paul Graham,1,Comics & Graphic Novels,1996,645 +The Confusion,Neal Stephenson,C0zkK0Kg4yMC,Lewis Cantley,1,Fiction,2012,832 +The Conquest of Happiness,Bertrand Russell,PZLXEn5ekwEC,Seth Rogen,1,Literary Collections,2015,200 +The Constitution of Liberty,F. A. Hayek,PotEBAAAQBAJ,Ayaan Hirsi Ali,1,Business & Economics,2014,512 +The Continuum Concept,Jean Liedloff,pMJtcfwF1L4C,Whitney Cummings,1,Family & Relationships,2004,176 +The Control of Nature,John McPhee,qQMFOctR7AoC,Jim Collins,1,Nature,2011,272 +The Copernican Revolution,Thomas S. Kuhn,sWScX_aduGMC,Paul Graham,1,Science,1957,297 +The Corner,David Simon,pEp8ILjTcrcC,Peter Attia,1,Social Science,2013,576 +The Corrections,Jonathan Franzen,PU3fAAAAQBAJ,Ev Williams|Oprah Winfrey,2,Fiction,2013,640 +The Cosmic Serpent,Jeremy Narby,aOXQssPdIIYC,Aubrey Marcus|Dan Engle,2,Science,1999,272 +The Cost of Hope,Amanda Bennett,gojrg8kVm6QC,Bill Gates,1,Biography & Autobiography,2012,228 +The Count of Monte Cristo,Alexandre Dumas,RyEEAAAAQAAJ,"Mike Maples, Jr.|Patrick Collison",2,,1846,636 +The Country Between Us,Carolyn Forche,rCDFbwAACAAJ,Ta-Nehisi Coates,1,Poetry,1982,64 +The Courage to Be Disliked,Ichiro Kishimi,Yj5qDwAAQBAJ,Marc Andreessen|Ryan Hoover|Tobi Lütke,3,Self-Help,2019,288 +The Courage to be Happy,Ichiro Kishimi,ch17DwAAQBAJ,Ryan Hoover,1,Philosophy,2019, +The Cowshed,Ji Xianlin,gCw8DwAAQBAJ,Patrick Collison,1,Biography & Autobiography,2016,188 +The Crack in the Cosmic Egg,Joseph Chilton Pearce,2F8oDwAAQBAJ,Adam Robinson,1,"Body, Mind & Spirit",2014,208 +The Craft of Scientific Writing,Michael Alley,z2ggBAAAQBAJ,Dr. Martin Gibala,1,Education,2013,282 +The Crisis of Islam,Bernard Lewis,YLkoQQAACAAJ,Jordan Peterson,1,History,2008,240 +The Crossroads of Should and Must,Elle Luna,FpKdBAAAQBAJ,Richard Betts,1,Self-Help,2015,176 +The Crowd,Gustave Le Bon,Lj3CAgAAQBAJ,Brendan Moynihan,1,Social Science,2012,160 +The Culture Code,Daniel Coyle,SwtFDwAAQBAJ,Graham Duncan,1,Business & Economics,2018,304 +The Cure,Geeta Anand,bx1eDwAAQBAJ,John Crowley,1,Literary Collections,2010,496 +The Curious Incident of the Dog in the Night-Time,Mark Haddon,1YgdBpXZZ-AC,Ev Williams,1,Asperger's syndrome,2005,271 +The Curse of the Mogul,Jonathan A. Knee,JsdbJYu_TC8C,Keith Rabois,1,Business & Economics,2009,320 +The Da Vinci Code,Dan Brown,2mmGFALfiWcC,Ev Williams,1,Art museum curators,2006,604 +The Dance,Oriah Mountain Dreamer,5qy8KaLodhcC,Michael Gervais,1,Self-actualization (Psychology),2001,184 +The Dance of Anger,Harriet Lerner,hU-zAAAAQBAJ,Brené Brown,1,Self-Help,2014,256 +The Dark Forest,Cixin Liu,WJfYBQAAQBAJ,Adam Savage,1,Fiction,2015,480 +The Dark is Rising,Susan Cooper,WGdhvUo6tDYC,Gretchen Rubin,1,Juvenile Fiction,2007,244 +The Day of the Jackal,Frederick Forsyth,TffdmAEACAAJ,Ben Shapiro,1,Assassination,2013,500 +The Death of Woman Wang,Jonathan D. Spence,X8TKGgAACAAJ,Edward Norton,1,China,2008,169 +The Decadent Society,Ross Gregory Douthat,8rDMDwAAQBAJ,Peter Thiel,1,Political Science,2020,272 +The Deep Blue Good-by,John D. MacDonald,xtXcx7OmwGQC,Mike Rowe,1,Fiction,2013,240 +The Deep End of the Ocean,Jacquelyn Mitchard,247V71TlJ0MC,Oprah Winfrey,1,Fiction,1999,434 +The Denial of Death,Ernest Becker,G67wXZ94JmoC,Darren Aronofsky|Eric Weinstein|Jason Silva|Jordan Peterson|Shay Carl,5,Philosophy,2007,336 +The Design of Everyday Things,Don Norman,nVQPAAAAQBAJ,Scott Adams,1,Design,2013,384 +The Dhammapada,Eknath Easwaran,8czJAAAAQBAJ,Dr. Gabor Maté|Steve Jobs,2,Religion,2007,275 +The Dharma Bums,Jack Kerouac,Es3fmFyTrIIC,Josh Waitzkin|Steve Jobs,2,Fiction,1986,244 +The Diamond Age,Neal Stephenson,aAV6wV4Rn00C,Ev Williams|Kelly Starrett|Naval Ravikant|Peter Thiel|Seth Godin,5,Fiction,2003,512 +The Diaries of Auberon Waugh,Auberon Waugh,vHFbAAAAMAAJ,J.K. Rowling,1,Biography & Autobiography,1985,207 +The Diary of Anais Nin,Anais Nin,3B99vQEACAAJ,Eric Weinstein,1,"Authors, American",1969,327 +The Dip,Seth Godin,6H6nRZRsKOQC,Brian Armstrong|Ev Williams,2,Business & Economics,2011,96 +The Discoverers,Daniel J. Boorstin,aEr07wJ21NYC,Stewart Brand,1,Science,2011,768 +The Discovery of the Mind,Bruno Snell,phWfjceDwOMC,Tim O’Reilly,1,Philosophy,2012,352 +The Discovery of the Unconscious,Henri F. Ellenberger,DrfCswEACAAJ,Jordan Peterson,1,Psychology,1981,976 +The Diving Bell and the Butterfly,Jean-Dominique Bauby,4C7evgEACAAJ,Emma Watson,1,,2019,144 +The Doctor and the Soul,Viktor E. Frankl,4zgbvwEACAAJ,Jerzy Gregorek,1,Existentialism,2019,336 +The Dog Stars,Peter Heller,dswjulAtjQ4C,Caroline Paul,1,Fiction,2012,336 +The Doors of Perception and Heaven and Hell,Aldous Huxley,tpkpAgAAQBAJ,Dr. Andrew Weil|Michael Pollan,2,Fiction,2014,172 +The Double Helix,James D. Watson Ph.D.,0TeVw2PMUp4C,Matt Ridley|Paul Graham|Peter Attia,3,Science,2012,192 +The Drama of the Gifted Child,Alice Miller,pV827ez1FlYC,Dr. Gabor Maté|Josh Waitzkin|Whitney Cummings,3,Family & Relationships,2008,144 +The Dream Machine,M. Mitchell Waldrop,7HpQAAAAMAAJ,Patrick Collison,1,Computers,2002,502 +The Dream of a Common Language,Adrienne Rich,sEMACgAAQBAJ,Liz Lambert,1,Poetry,2013,96 +The E-Myth Revisited,Michael E. Gerber,dqI_PgAACAAJ,Dave Camarillo|Dave Ramsey|Derek Sivers|Tim Ferriss,4,Business & Economics,2005,288 +The Earth's Biosphere,Vaclav Smil,8ntHWPMUgpMC,Bill Gates,1,Science,2003,356 +The Ecological Approach to Visual Perception,James J. Gibson,yv_9hU_26KEC,Jordan Peterson,1,Psychology,2013,352 +The Economics of Microfinance,Beatriz Armendáriz,eeKlivwtPHQC,Brian Armstrong,1,Business & Economics,2007,346 +The Educated Mind,Kieran Egan,FvpFsAtffQYC,Patrick Collison,1,Education,2007,310 +The Effective Executive,Peter F. Drucker,ZRRN9OpL-1AC,Drew Houston|Ev Williams|Jim Collins|Matt Mullenweg|Tim Ferriss,5,Business & Economics,2007,167 +The Electric Kool-Aid Acid Test,Tom Wolfe,M4zx5dxTMqwC,Jordan Peterson|Tim O’Reilly,2,History,2008,416 +The Elements of Style,William Strunk Jr.,LaqSDwAAQBAJ,Bill Nye|Kara Swisher|Tobi Lütke,3,Education,2018,52 +The Elephant in the Brain,Kevin Simler,mcM9DwAAQBAJ,Naval Ravikant,1,Psychology,2018,416 +The Eleventh Day,Anthony Summers,i52lBVG5QkoC,Jocko Willink,1,Political Science,2012,612 +The Eleventh Plague,Leonard A. Cole,mA_zdUxsGdcC,Jonathan Eisen,1,History,1996,304 +The Emotional Brain,Joseph Ledoux,7EJN5I8sk2wC,Jordan Peterson,1,Psychology,1998,384 +The Emperor of All Maladies,Siddhartha Mukherjee,hgx0sJvphNkC,Bill Gates|Laura R Walker|Peter Attia,3,History,2011,573 +The Emperor of Scent,Chandler Burr,Tb7UcmuMYTgC,Eric Weinstein,1,Biography & Autobiography,2012,496 +The Empty Pot,Demi,lx41Tnkqbv0C,Stephen Dubner,1,Juvenile Fiction,2007,32 +The Enchiridion,Epictetus,V4NkCwAAQBAJ,Naval Ravikant,1,,, +The Encyclopedia of Earth,Michael Allaby,FZhePgAACAAJ,Stewart Brand,1,Earth (Planet),2009,256 +The End Of Science,John Horgan,AQOCBgAAQBAJ,Bryan Johnson,1,Science,2015,368 +The End of Faith,Sam Harris,XP_86itwp2IC,Dr. Andrew Weil,1,Political Science,2005,352 +The End of Poverty,Jeffrey D. Sachs,pqla8IiF5dYC,Bill Gates,1,Business & Economics,2006,448 +The End of Power,Moises Naim,uGRHBwAAQBAJ,Mark Zuckerberg,1,,, +The Enemy,Lee Child,CsidKc8h5dYC,Malcolm Gladwell,1,Fiction,2009,576 +The Enigma of Anger,Garret Keizer,bfnwcTepCMoC,Patton Oswalt,1,Family & Relationships,2002,384 +The Enlightened Economy,Joel Mokyr,uq4juwAACAAJ,Patrick Collison,1,Business & Economics,2012,564 +The Epic of Gilgamesh,Anonymous,3vxdAvP19pwC,Ryan Holiday|Stewart Brand,2,Poetry,1960,128 +The Erotic Mind,Jack Morin,heCl2ouPatQC,Esther Perel,1,Self-Help,2012,400 +The Essene Gospel of Peace,Edmond Bordeaux Szekely,fQpLAAAAIAAJ,Steve Jobs,1,Essenes,1970, +The Essential Rumi,Jalal Al-Din Rumi,ZeNdfRDQ-E8C,Adam Robinson|Kevin Kelly|Tara Brach|Tim O’Reilly,4,Poetry,1997,125 +The Essential Scratch & Sniff Guide to Becoming a Whiskey Know-It-All,Richard Betts,QzK9rQEACAAJ,Chris Sacca,1,Cooking,2015,20 +The Essential Scratch and Sniff Guide to Becoming a Wine Expert,Richard Betts,OuLBlAEACAAJ,Chris Sacca|Maria Popova,2,Cooking,2013,22 +The Essential Writings,Mahatma Gandhi,34Hcb_RhvUgC,Naval Ravikant,1,Biography & Autobiography,2008,408 +The Essential Writings of Ralph Waldo Emerson,Ralph Waldo Emerson,i8oevgAACAAJ,Michael Pollan,1,,2016,342 +The Eternal Frontier,Tim Flannery,mkkyBgAAQBAJ,Stewart Brand,1,History,2015,434 +The Everything Store,Brad Stone,t95iRvivDHIC,Doug McMillon|Matt Mullenweg|Tracy DiNunzio,3,Business & Economics,2013,384 +The Evolution of Cooperation,Robert Axelrod,GxRo5hZtxkEC,Naval Ravikant,1,Political Science,2009,304 +The Evolution of Everything,Matt Ridley,G2M7jgEACAAJ,Naval Ravikant,1,Business & Economics,2016,368 +The Evolution of Human Sexuality,Donald Symons,lkISQRDurU0C,Steven Pinker,1,Psychology,1979,368 +The Evolving Self,Robert Kegan,SP3pJvqaBN4C,Ray Dalio,1,Psychology,2009,336 +The Extension of Man,J.D. Bernal,dTkZQAAACAAJ,Paul Graham,1,Science,1972,317 +The Fabric of Reality,David Deutsch,Z7uFxViR19oC,Chris Anderson|Naval Ravikant|Steve Jurvetson,3,Science,2011,400 +The Facebook Effect,David Kirkpatrick,PxTvbM-VCPEC,Dustin Moskovitz,1,Business & Economics,2011,372 +The Family Virtues Guide,Linda Kavelin Popov,uA8PAAAACAAJ,Rainn Wilson,1,Family & Relationships,1997,319 +The Fantasy Bond,Robert W. Firestone PhD,mVyNpX2UQDcC,Whitney Cummings,1,Psychology,2012,272 +The Farmer from Merna,Karl Schriftgiesser,UMUKyEkYosEC,Warren Buffett,1,,1955, +The Fatal Conceit,F. A. Hayek,YQLYAQAAQBAJ,Nick Szabo,1,Business & Economics,2013,192 +The Fault in Our Stars,John Green,Qk8n0olOX5MC,Elon Musk|Emma Watson|Taylor Swift,3,Young Adult Fiction,2012,352 +The Female Brain,Louann Brizendine,cNRVlHQ5FkIC,Brian Armstrong|Whitney Cummings,2,Science,2009,352 +The Feminine Mystique,Betty Friedan,GYV-63KHXQ4C,Patrick Collison,1,Social Science,2013,592 +The Fever,Sonia Shah,Dd4zYgEACAAJ,Bill Gates,1,Science,2011,320 +"The Feynman Lectures on Physics, Vol. I",Richard P. Feynman,hlRhwGK40fgC,Bill Gates|Naval Ravikant,2,Science,2011,592 +"The Feynman Lectures on Physics, Vol. II",Richard P. Feynman,hlRhwGK40fgC,Bill Gates,1,Science,2011,592 +"The Feynman Lectures on Physics, Vol. III",Richard P. Feynman,Lb6DBQAAQBAJ,Bill Gates,1,Science,2015,1200 +The Fifteen Decisive Battles of the World,Edward Shepherd Creasy,IMJbtBwbEQwC,Peter Thiel,1,Battles,18??,404 +The Fifth Sacred Thing,Starhawk,FQw7vG9y88AC,Aubrey Marcus,1,"Body, Mind & Spirit",2011,496 +The Fire Next Time,James Baldwin,9jJSvgEACAAJ,Ta-Nehisi Coates,1,History,2019,276 +The First 20 Minutes,Gretchen Reynolds,ETVe9mOIQIYC,Dr. Martin Gibala,1,Health & Fitness,2013,288 +The First American,H. W. Brands,B2bPCEbMAvwC,Ev Williams,1,Biography & Autobiography,2010,784 +The First Circle,Aleksandr Solzhenitsyn,ygskUTS6Du4C,Jordan Peterson,1,Fiction,2012,784 +The First Six Books of the Elements of Euclid,Oliver Byrne,HdRbAAAAQAAJ,Paul Graham,1,Electronic book,1847,268 +The Fish That Ate the Whale,Rich Cohen,NduF6Gw0JJkC,Ryan Holiday,1,History,2012,288 +The Five Temptations of a CEO,Patrick Lencioni,DYeTOX4QFRkC,Cindy Eckert,1,Business & Economics,2010,160 +The Flavor Bible,Karen Page,L9ngoQEACAAJ,Sam Kass,1,COOKING,2014,942 +The Flight of the Garuda,Keith Dowman,d3YKAAAAYAAJ,Sam Harris,1,Travel,1997,324 +The Forge and the Crucible,Mircea Eliade,SQDJ1aCtMV8C,Jordan Peterson,1,Philosophy,1978,238 +The Forks Over Knives Plan,Alona Pulde M.D.,En7fDQAAQBAJ,James Cameron|Suzy Amis Cameron,2,Cooking,2017,352 +The Formula,Albert-László Barabási,Ja1PDwAAQBAJ,Vinod Khosla,1,Psychology,2018,320 +The Foundation,Joel L. Fleishman,fR4IYOB9RUsC,Bill Gates,1,History,2007,384 +The Fountainhead,Ayn Rand,KIupQ9H7PO8C,Bryan Callen|Emma Watson|Ev Williams|Jesse Williams|Kevin Kelly|Larry Ellison|Mark Cuban|Tim Urban|Travis Kalanick|Vince Vaughn,10,Study Aids,2002,72 +The Four Agreements,Don Miguel Ruiz,hzVxiw2DiOsC,Aubrey Marcus|Daniel Negreanu|Jack Dorsey|Joe Rogan|Karlie Kloss|Peter Attia,6,Self-Help,2010,160 +The Four Obsessions of an Extraordinary Executive,Patrick Lencioni,8cuji017g3gC,Brian Armstrong,1,Business & Economics,2000,208 +The Four Steps to the Epiphany,Steve Blank,CUZsmgEACAAJ,Ron Conway|Ryan Hoover,2,Business & Economics,2013,370 +The Fourth Part of the World,Toby Lester,Wza0l8-98pUC,Nick Szabo,1,History,2009,480 +The Fourth Turning,William Strauss,d8bBFGJq79sC,Tony Robbins,1,Social Science,2009,400 +The French Menu Cookbook,Richard Olney,OSJWJYoUUygC,Samin Nosrat,1,Cooking,2002,446 +The Fry Chronicles,Stephen Fry,seyDDwAAQBAJ,Paul Graham,1,Biography & Autobiography,2012,448 +The Future of Capitalism,Paul Collier,ASzlxwEACAAJ,Bill Gates|Vinod Khosla,2,Business & Economics,2020,256 +The Future of Life,Edward O. Wilson,VUJplhLArbwC,Stewart Brand,1,Nature,2003,229 +The Gallic Wars,Julius Caesar,s-rTVMz3aa4C,Paul Graham,1,History,2012,224 +The Gamble,John Sides,bGuYDwAAQBAJ,Ezra Klein,1,Political Science,2014,360 +The Game,Neil Strauss,Mogf4cZDm_sC,Aubrey Marcus,1,Biography & Autobiography,2012,464 +The Gay Science,Friedrich Nietzsche,Vf8KETLiKXMC,Jordan Peterson|Naval Ravikant,2,Philosophy,2001,277 +The Gene,Siddhartha Mukherjee,fOvaCgAAQBAJ,Bill Gates,1,Medical,2016,608 +"The General Theory of Employment, Interest, and Money",John Maynard Keynes,YRy0DwAAQBAJ,Eric Weinstein|Warren Buffett,2,Business & Economics,2019,380 +"The Genesis of Industrial America, 1870-1920",Maury Klein,rFVevRS86CkC,Paul Graham,1,History,2007, +The German Generals Talk,Basil H. Liddell Hart,pEX0_VrNUJoC,Paul Graham,1,Generals,1958,252 +The Gift,Lewis Hyde,Ghq7X_YPvewC,Seth Godin|Stewart Brand,2,Self-Help,2009,464 +The Gift of Adversity,Norman E Rosenthal M.D.,uBuMMfxKMewC,Ray Dalio,1,Self-Help,2013,352 +The Gift of Fear and Other Survival Signals that Protect Us From Violence,Gavin de Becker,GcanPwAACAAJ,Ramit Sethi|Tim Ferriss,2,Health & Fitness,1999,372 +The Gift of Good Land,Wendell Berry,c3ZqDwAAQBAJ,Michael Pollan,1,Literary Collections,2018, +The Girl in the Picture,Denise Chong,Fn71yvz_rLsC,Lisa Ling,1,History,2001,400 +The Girl with the Lower Back Tattoo,Amy Schumer,0eK8CwAAQBAJ,Emma Watson,1,Biography & Autobiography,2016,336 +The Giving Tree,Shel Silverstein,1IleAgAAQBAJ,Mark Zuckerberg,1,Juvenile Fiction,2014,64 +The Glass Bead Game,Hermann Hesse,lTVr7hZVY-kC,Paul Stamets,1,Fiction,2002,576 +The Glory of the Trenches,Coningsby Dawson,Xg_DDwAAQBAJ,Jocko Willink,1,Fiction,2019,159 +The Go-Getter,Peter B. Kyne,NP7CDwAAQBAJ,Dave Ramsey,1,Psychology,2019,121 +The Go-Giver,Bob Burg,q1HFFfQfvHMC,Dave Ramsey,1,Self-Help,2010,176 +The Goal,Eliyahu M. Goldratt,HyxLDQAAQBAJ,Jeff Bezos|Kevin Systrom,2,Business & Economics,2016,374 +The God Delusion,Richard Dawkins,yq1xDpicghkC,Brian Armstrong|Joe Rogan,2,Science,2008,416 +The God Proof,Jeffrey Kegler,tjuwQQAACAAJ,Naval Ravikant,1,God,2007,308 +The Godfather,Mario Puzo,bDQD1YUcCXkC,LeBron James,1,Fiction,2012,608 +The Golden Trade of the Moors,E. W. Bovill,1RtNuwEACAAJ,Paul Graham,1,,1978,293 +The Good Ancestor,Roman Krznaric,IT2tDwAAQBAJ,Stewart Brand,1,Self-Help,2020,320 +The Good Earth,Pearl S. Buck,U6OgdLXPwvAC,Oprah Winfrey,1,Fiction,2004,357 +The Good Heart,Dalai Lama,AC2sl9YTfUEC,Marc Benioff,1,Religion,1998,224 +The Gormenghast Trilogy,Mervyn Peake,3C-oSC5GbcoC,Astro Teller,1,Castles,2011,960 +The Government of the Tongue,Richard Allestree,4doHAAAAQAAJ,Paul Graham,1,,1721, +The Grapes of Wrath,John Steinbeck,wMmVPwAACAAJ,Jordan Peterson,1,Fiction,2008,907 +The Grasshopper,Bernard Suits,G9z4wjVB_0wC,Jane McGonigal,1,Philosophy,2005,179 +The Graveyard Book,Neil Gaiman,6Xs7P9gVJd4C,Soman Chainani|Tim Ferriss,2,Young Adult Fiction,2009,304 +The Great Book of Amber,Roger Zelazny,_Z93A1ltySIC,Naval Ravikant,1,Fiction,1999,1264 +The Great Challenge,Osho,-8fVuE0bp90C,Naval Ravikant,1,Spiritual life,2003,212 +The Great Code,Northrop Frye,Lb_Rq66W4g0C,Jordan Peterson,1,Literary Collections,2006,380 +The Great Escape,Angus Deaton,YWyYDwAAQBAJ,Bill Gates|Jordan Peterson,2,Business & Economics,2015,360 +The Great Gatsby,F. Scott Fitzgerald,N1JODwAAQBAJ,Bill Gates|Daniel Pink|Ev Williams|Neil deGrasse Tyson|Ta-Nehisi Coates|Taylor Swift,6,Fiction,2017,218 +The Great Illusion,Norman Angell,dTBDSERRFqQC,Peter Thiel,1,Political Science,2010,396 +The Great Mother,Erich Neumann,adLyBQAAQBAJ,Jordan Peterson,1,Social Science,2015,432 +The Great Revolt,Salena Zito,1uW2DwAAQBAJ,Mark Cuban,1,History,2019,336 +The Greatest Trade Ever,Gregory Zuckerman,lcxCbtwjvKYC,Charlie Munger,1,Biography & Autobiography,2010,307 +The Grid,Phillip F. Schewe,CMdlgKtFs3oC,Bill Gates,1,Science,2007,318 +The Gulag Archipelago,Aleksandr Solzhenitsyn,34lzDwAAQBAJ,Jocko Willink|Jordan Peterson|Jordan Peterson,3,Biography & Autobiography,2018,544 +The Gun Seller,Hugh Laurie,ISIPsmr4-hQC,Paul Graham,1,Fiction,2009,372 +The Guns of August,Barbara W. Tuchman,fnVy4v5pZPMC,Doris Kearns Goodwin,1,History,2009,608 +The Hair of the Dog,Karl Sabbagh,mi1SAQAAIAAJ,Bill Gates,1,Discoveries in science,2009,291 +The Halo Effect,Phil Rosenzweig,hJHHAwAAQBAJ,Ev Williams|Matt Mullenweg,2,Business & Economics,2014,288 +The Handmaid's Tale,Margaret Atwood,ZrsVZKWJg4UC,Daniel Pink|Emma Watson,2,Fiction,1986,311 +The Happiest Baby on the Block,Harvey Karp,NIo3RQmYLqQC,Ashton Kutcher,1,Family & Relationships,2008,288 +The Happiness Curve,Jonathan Rauch,_7JTDwAAQBAJ,Chip Conley,1,Self-Help,2018,256 +The Happiness Hypothesis,Jonathan Haidt,gHEv9yzj_a4C,Joe Rogan,1,Psychology,2006,320 +The Hard Facts of the Grimms' Fairy Tales,Maria Tatar,lTtMH_ezI4UC,Soman Chainani,1,Literary Criticism,2003,325 +The Hard Thing About Hard Things,Ben Horowitz,620pAgAAQBAJ,Drew Houston|Dustin Moskovitz|Keith Rabois|Larry Page|Luis von Ahn|Marc Andreessen|Mark Zuckerberg|Matt Mullenweg|Max Levchin|Peter Attia|Peter Thiel,11,Business & Economics,2014,304 +The Hard Way,Lee Child,ZrGnacMnviwC,Malcolm Gladwell,1,Ransom,2011,513 +The Harder They Fall,Budd Schulberg,4SeKAgAAQBAJ,Ryan Holiday,1,Fiction,2013,400 +The Harmless People,Elizabeth Marshall Thomas,MCfwqVw_oRkC,Paul Graham,1,Social Science,2010,336 +The Hate U Give,Angie Thomas,TlVVDwAAQBAJ,Gretchen Rubin,1,Juvenile Fiction,2018,305 +The Haunting of Hill House,Shirley Jackson,-6aSDwAAQBAJ,Ben Shapiro,1,Fiction,2018,193 +The Headspace Guide to Meditation and Mindfulness,Andy Puddicombe,hxDFb8t6RTAC,Bill Gates,1,"Body, Mind & Spirit",2012,224 +The Healing Journey,Claudio Naranjo,N5V_AAAACAAJ,Hamilton Morris|Michael Pollan|Tim Ferriss,3,"Body, Mind & Spirit",2006,308 +The Heart,Maylis de Kerangal,MVudDAEACAAJ,Bill Gates,1,Fiction,2017,256 +The Heart Is a Lonely Hunter,Carson McCullers,z_Pvxz9iRJ0C,Oprah Winfrey,1,Fiction,2000,359 +The Heart of Yoga,T. K. V. Desikachar,vV0oDwAAQBAJ,Naval Ravikant,1,Health & Fitness,1999,272 +The Heart of a Champion,Bob Richards,Kv49yRDok3oC,Dan Gable,1,Religion,2009,144 +The Heart of a Woman,Maya Angelou,pBQz9gT_eQUC,Oprah Winfrey,1,Biography & Autobiography,2010,352 +The HeartMath Solution,Doc Lew Childre,6loKfAEACAAJ,Adam Robinson,1,Emotional intelligence,2011,281 +The Hellfire Club,Jake Tapper,ilvFswEACAAJ,Doris Kearns Goodwin,1,Fiction,2018,352 +The Hero with a Thousand Faces,Joseph Campbell,I1uFuXlvFgMC,Bryan Callen|Darren Aronofsky|Kyle Maynard|Ray Dalio,4,Psychology,2008,418 +The Hidden Life of Trees,Peter Wohlleben,WEn4DAAAQBAJ,Emma Watson,1,Nature,2016,288 +The Highly Sensitive Person,Elaine N. Aron,KZwhAgAAQBAJ,Graham Duncan,1,Self-Help,2013,288 +The History of the Decline and Fall of the Roman Empire,Edward Gibbon,2igOAAAAYAAJ,Stewart Brand,1,Byzantine Empire,1781, +The History of the Peloponnesian War,Thucydides,ywIqAAAAYAAJ,Matt Mullenweg,1,Greece,1858,594 +The Hitchhiker's Guide to the Galaxy,Douglas Adams,joXgAAAAMAAJ,Elon Musk|Evan Goldberg|Naval Ravikant|Richard Branson|Seth Rogen,5,Fiction,2005,815 +The Hobbit,J.R.R. Tolkien,pD6arNyKyi8C,Jon Favreau|Paul Graham|Richard Branson,3,Juvenile Fiction,2012,288 +The Hockey Stick and the Climate Wars,Michael Mann,klerAgAAQBAJ,Bill Nye,1,Science,2013,384 +The Horse's Mouth,Joyce Cary,DOgYPwAACAAJ,Jordan Peterson,1,Fiction,1999,412 +The Hot Zone,Richard Preston,E6BKpf2tSkoC,Jonathan Eisen|Safi Bahcall,2,Health & Fitness,2012,448 +The Hotel New Hampshire,John Irving,EIBxDwAAQBAJ,Amanda Palmer,1,Fiction,2018,432 +The Hours,Michael Cunningham,d9I5rT_rJnwC,Danielle Teller,1,Fiction,2011,240 +The House of God,Samuel Shem,TShokNWOGy8C,Jordan Peterson,1,Fiction,2010,400 +The House of Mirth,Edith Wharton,VruwAAAAIAAJ,Chelsea Handler,1,New York (N.Y.),1905,530 +The House of Morgan,Ron Chernow,sgNUEqkgctEC,Paul Graham,1,Biography & Autobiography,2010,848 +The House of Rothschild,Niall Ferguson,x1ZgQgAACAAJ,Mark Zuckerberg,1,Bankers,2000,518 +The Hundred Rules of War,Tsukahara Bokuden,192itAEACAAJ,Jocko Willink,1,Martial arts,2017,206 +The Hunger Games,Suzanne Collins,Yz8Fnw0PlEQC,Bill Gates|LeBron James|Taylor Swift,3,Juvenile Fiction,2009,384 +The Hunters,James Salter,lfcXRJKOU5IC,Patrick Collison,1,Fiction,2012,233 +The Hydrogen Sonata,Iain M. Banks,L6rU97RZs5EC,Elon Musk,1,Fiction,2012,528 +The Idea Factory,Jon Gertner,OkECDAAAQBAJ,Mark Zuckerberg|Ron Conway,2,Business & Economics,2013,422 +The Idea of Decline in Western History,Arthur Herman,A2NxFq1C7uIC,Stewart Brand,1,History,2010,528 +The Idealist,Nina Munk,8jDjoAEACAAJ,Bill Gates,1,Business & Economics,2014,260 +The Ideas of Particle Physics,J. E. Dodd,wez0SGmemagC,Eric Weinstein,1,Science,1991,244 +The Idiot,Fyodor Dostoyevsky,8kCLtoaURcAC,Jordan Peterson,1,,1977,660 +The Iliad,Homer,sos0paw_-cEC,J.K. Rowling|Paul Graham|Stewart Brand,3,Poetry,2007,464 +The Image,Daniel J. Boorstin,_tAVkg75s0MC,Dave Elitch,1,Political Science,2012,336 +The Immortal Life of Henrietta Lacks,Rebecca Skloot,LBBhikJpLjwC,A.J. Jacobs,1,Science,2010,368 +The Immortalist,Alan Harrington,QxvXAAAACAAJ,Jason Silva,1,Death,1979,312 +The Inevitable,Kevin Kelly,zUzNDgAAQBAJ,Marc Goodman,1,Business & Economics,2017,336 +The Inflamed Mind,Edward Bullmore,feNVDwAAQBAJ,Vinod Khosla,1,Psychology,2018,256 +The Information,James Gleick,CwCHIScqmZsC,Mark Zuckerberg,1,History,2011,544 +The Inimitable Jeeves,P. G. Wodehouse,cWKDDwAAQBAJ,Paul Graham,1,Humor,2019,224 +The Inmates Are Running the Asylum,Alan Cooper,04cFCVXC_AUC,Brian Armstrong,1,Consumers,2004,288 +The Inner Game of Music,Barry Green,xdMuBgAAQBAJ,Dave Elitch,1,Music,2015, +The Inner Game of Tennis,W. Timothy Gallwey,te8NBQAAQBAJ,Dave Elitch|Patrick Collison,2,Sports & Recreation,2014, +The Innovator's Dilemma,Clayton M. Christensen,N0zvYCRSYTMC,Caterina Fake|Drew Houston|Ev Williams|Jeff Bezos|Marc Benioff|Mark Cuban|Max Levchin|Steve Jobs|Tim O’Reilly,9,Business & Economics,2011,909 +The Innovator's Solution,Clayton M. Christensen,ZUsn9uIgkAUC,Keith Rabois,1,Business & Economics,2003,304 +The Innovators,Walter Isaacson,aFapBAAAQBAJ,Chris Fussell,1,Biography & Autobiography,2014,542 +The Insanity Defense,Woody Allen,ALewAAAAIAAJ,Ben Shapiro,1,Humor,2007,342 +The Intel Trinity,Michael S. Malone,iwzunQEACAAJ,Keith Rabois,1,Business & Economics,2014,560 +The Intelligent Investor,Benjamin Graham,meDYDQAAQBAJ,DJ Vlad|Peter Mallouk|Warren Buffett,3,Investissements,1965,332 +The Interpretation of Dreams,Sigmund Freud,-pB1UoFnjZcC,Jordan Peterson,1,Fiction,1997,452 +The Invention of Wings,Sue Monk Kidd,rVgBDAAAQBAJ,Oprah Winfrey,1,Fiction,2015,373 +The Invitation,Oriah Mountain Dreamer,7cyzhEU4UgEC,Michael Gervais,1,Spiritual life,1999,136 +The Jack Vance Treasury,Jack Vance,KBDhywjUkk8C,Naval Ravikant,1,Fiction,2007,633 +The Jaws Log,Carl Gottlieb,Y6bE_fhaBIwC,Ben Stiller,1,,2010,288 +The Jazz of Physics,Stephon Alexander,wmkdDAAAQBAJ,Eric Weinstein,1,Science,2016,272 +The Jet Engine,Rolls Royce,QUQxBwAAQBAJ,Paul Graham,1,Technology & Engineering,2015,288 +The Jew of Malta,Christopher Marlowe,5-COMCcxlaQC,Neil Gaiman,1,Drama,2009,144 +The Jordan Rules,Sam Smith,4nQd6l2_lUYC,Larry Ellison,1,Biography & Autobiography,2012,300 +"The Journal of Henry David Thoreau, 1837-1861",Henry David Thoreau,Z3_MNZnAMEYC,Maria Popova,1,Biography & Autobiography,2009,667 +The Journalist And The Murderer,Janet Malcolm,Dceuj0i_RnMC,Patrick Collison,1,Language Arts & Disciplines,2011,176 +The Journey Home,Radhanath Swami,oCPTlkbUffsC,Martin Polanco,1,Biography & Autobiography,2009,350 +The Journey of Crazy Horse,Joseph Marshall,QieOVrOhlW8C,Joe Rogan,1,History,2005,310 +The Journeys of Socrates,Dan Millman,ptyyKT90x28C,Aubrey Marcus,1,Fiction,2009,352 +The Joy Luck Club,Amy Tan,2mgnEzzaJrIC,Lisa Ling,1,Fiction,2006,288 +The Joyous Cosmology,Alan W. Watts,pv-HcsBkQHIC,Ed Cooke,1,"Body, Mind & Spirit",2013,119 +The Jungle,Upton Sinclair,TskmCwAAQBAJ,Michael Pollan,1,Fiction,2015,225 +The Jungle Book,Rudyard Kipling,HvJaAAAAMAAJ,Neil Gaiman|Richard Branson,2,Animals,1920,303 +The Jungle Grows Back,Robert Kagan,_hlPDwAAQBAJ,Vinod Khosla,1,History,2018,192 +The Kabir Book,Robert Bly,G_LFGwAACAAJ,Tim O’Reilly,1,Broadsides,197?,1 +The Kennedy Women,Laurence Leamer,g19CPgAACAAJ,Taylor Swift,1,Biography & Autobiography,1996,935 +The Killing Zone,Frederick Downs Jr.,xvNvoNgVSFQC,Jocko Willink,1,History,2007,272 +The King and the Corpse,Heinrich Zimmer,0I6PsweI484C,Stewart Brand,1,Religion,1948,316 +The Kings Depart,Richard M Watt,E0nYtwEACAAJ,Paul Graham,1,Germany,1972,664 +The Kite Runner,Khaled Hosseini,MH48bnzN0LUC,Ann Miura-Ko|James Altucher,2,Fiction,2011,336 +The Knock at the Door,Ryan Manion,k4NUzQEACAAJ,Jocko Willink,1,Biography & Autobiography,2020,288 +The Know-It-All,A.J. Jacobs,lveguMcFrokC,Ev Williams,1,Biography & Autobiography,2004,386 +The Lady from Zagreb,Philip Kerr,VqmuBAAAQBAJ,Lewis Cantley,1,Fiction,2015,432 +The Landmark Herodotus,Herodotus,Ff2pLwAACAAJ,Stewart Brand,1,Greece,2008,953 +The Landmark Thucydides,Thucydides,pjt3ZGU61wIC,Stewart Brand,1,History,2008,713 +The Language of God,Francis S. Collins,y-AwVWuVT_wC,Dominic D'Agostino,1,Science,2008,304 +The Large Scale Structure of Space-Time,Stephen W. Hawking,aKcJO8CZ1kIC,Eric Weinstein,1,Science,1993,312 +The Largesse of the Sea Maiden,Denis Johnson,yO3WDgAAQBAJ,Barack Obama,1,Fiction,2018,224 +The Last Days of Night,Graham Moore,M1AyCwAAQBAJ,Mark Zuckerberg|Vinod Khosla,2,Fiction,2016,400 +The Last Lion Box Set,William Manchester,QI9cDwAAQBAJ,Chris Young|Larry Ellison,2,Biography & Autobiography,2012,3008 +The Last Word,Thomas Nagel,e1PYUoYrGSgC,Sam Harris,1,Philosophy,2001,160 +The Launch Pad,Randall Stross,H0BOqbtbH5cC,Paul Graham,1,Business & Economics,2012,304 +The Lazy Man's Guide to Enlightenment,Thaddeus Golas,uSdVPgAACAAJ,Steve Jobs,1,"Body, Mind & Spirit",2008,112 +The Lean Startup,Eric Ries,prDZAQAACAAJ,"Ben Horowitz|Dustin Moskovitz|Kevin Systrom|Marc Andreessen|Mark Cuban|Mike Maples, Jr.|Tim O’Reilly",7,,2017, +The Left Hand of Darkness,Ursula K. Le Guin,DmtoPwAACAAJ,Adam Savage,1,Fiction,2009,272 +The Legend of the Monk and the Merchant,Terry Felber,Jt8bvdbUIMUC,Dave Ramsey,1,Religion,2012,208 +The Lessons of History,Will & Ariel Durant,LWNQ2_4wkocC,Kevin Systrom|Naval Ravikant|Ray Dalio|Tim Ferriss,4,History,2012,128 +The Liars' Club,Mary Karr,Jkt4BwAAQBAJ,Adam Savage,1,Biography & Autobiography,2015,329 +The Life and Loves of a He Devil,Graham Norton,4-vNrQEACAAJ,Nicholas McCarthy,1,Biography & Autobiography,2016,304 +The Lifecycle of Software Objects,Ted Chiang,8kYERQAACAAJ,Naval Ravikant,1,Fiction,2010,150 +The Lily,Daniel Cloud,mX13swEACAAJ,Vlad Zamfir,1,,2011, +The Line Becomes a River,Francisco Cantú,_-GCDwAAQBAJ,Vinod Khosla,1,Biography & Autobiography,2019,288 +"The Lion, the Witch and the Wardrobe",C. S. Lewis,1ZR6NK3y81UC,Gretchen Rubin,1,Children's stories,2007,202 +The Little Book That Still Beats the Market,Joel Greenblatt,M5HxYZaNQEQC,Mr. Money Mustache,1,Business & Economics,2010,208 +The Little Book of Common Sense Investing,John C. Bogle,Vrg1DwAAQBAJ,Charlie Munger|Mr. Money Mustache|Warren Buffett,3,Business & Economics,2017,304 +The Little Drummer Girl,John le Carré,jGpCYNOErNUC,Malcolm Gladwell,1,Fiction,2003,496 +The Little Kingdom,Michael Moritz,trsnAAAAMAAJ,Keith Rabois,1,Apple computer,1984,336 +The Little Mermaid,Hans Christian Andersen,oIdrBgAAQBAJ,Soman Chainani,1,Juvenile Fiction,2015,34 +The Little Prince,Antoine de Saint-Exupéry,6948DwAAQBAJ,Brandon Stanton|Evan Goldberg|Ricardo Semler,3,Juvenile Fiction,2017,128 +The Little White Horse,Elizabeth Goudge,oJK0ywEACAAJ,J.K. Rowling,1,,2020,288 +The Lives of the Artists,Giorgio Vasari,wr0UDAAAQBAJ,Paul Graham,1,Art,2008,586 +"The Lives of the Most Excellent Painters, Sculptors, and Architects",Giorgio Vasari,q8rvdsxGokwC,Ryan Holiday,1,Art,2007,640 +The Lonely Silver Rain,John D. MacDonald,S18kkTOu4aEC,Mike Rowe,1,Fiction,2013,272 +The Long Goodbye,Raymond Chandler,KhTNyk1Bn1kC,Jordan Peterson,1,Fiction,2005,464 +The Long March,Roger Kimball,cxDIXJKpTNwC,Ben Shapiro,1,,2010,432 +The Long Summer,Brian Fagan,S7CMPwAACAAJ,Stewart Brand,1,Climate and civilization,2005,284 +The Long Tail,Chris Anderson,DTeZAAAAQBAJ,Ev Williams|Seth Godin,2,Business & Economics,2006,256 +The Long Way,Bernard Moitessier,M_213SIZgrYC,Patrick Collison,1,Sports & Recreation,1995,256 +The Longevity Diet,Valter Longo,sAU8DwAAQBAJ,Kevin Rose,1,Health & Fitness,2018,304 +The Loom of Language,Frederick Bodmer,g24XKBDPOYcC,Eric Weinstein|Tim Ferriss,2,Language Arts & Disciplines,1985,692 +The Looming Tower,Lawrence Wright,Q1fCBAAAQBAJ,Bryan Callen,1,Political Science,2014,576 +The Lord of the Rings,J.R.R. Tolkien,yl4dILkcqm4C,Elon Musk|Laird Hamilton|Naval Ravikant|Neil Gaiman|Paul Graham|Peter Thiel|Reid Hoffman,7,Fiction,2012,1216 +The Lost Continent,Bill Bryson,2Uk-UnvvUEcC,Mike Rowe,1,Travel,1989,314 +The Lost World of the Kalahari ,Laurens van der Post,NNLBi3C9UOIC,Stanislav Grof,1,Travel,2010,256 +The Machine Stops,E. M. Forster,Lrd4DwAAQBAJ,Elon Musk,1,Fiction,2018,50 +The Macintosh Way,Guy Kawasaki,4JPb7aG5xUcC,Naval Ravikant,1,Business & Economics,2011,224 +The Macrobiotic Way,Michio Kushi,JMquGvp31XEC,David Blaine,1,Health & Fitness,2004,262 +The Magic of Reality,Richard Dawkins,Kxv9qbdqnj4C,Bill Gates,1,Science,2012,272 +The Magic of Thinking Big,David J. Schwartz,WQaiCgAAQBAJ,Dave Camarillo|Mr. Money Mustache|Tim Ferriss,3,Business & Economics,2015,320 +The Magus,John Fowles,3BkmrVG5h0cC,Matt Mullenweg,1,British,2004,656 +The Making of Europe,Robert Bartlett,qVnMDwAAQBAJ,Paul Graham,1,History,1994,432 +The Making of a Tropical Disease,Randall M. Packard,B_V1Xj6wH7IC,Bill Gates,1,Medical,2007,296 +The Making of the Atomic Bomb,Richard Rhodes,aSgFMMNQ6G4C,Lewis Cantley,1,History,2012,928 +The Maltese Falcon,Dashiell Hammett,yfJlaMBMFEMC,Jordan Peterson,1,Fiction,2010,224 +The Man Behind the Microchip,Leslie Berlin,IQYSDAAAQBAJ,Patrick Collison|Warren Buffett,2,Biography & Autobiography,2006,402 +The Man Who Fed the World,Leon Hesser,22JBi4RC-HwC,Bill Gates,1,Technology & Engineering,2006,263 +The Man Who Knew Infinity,Robert Kanigel,m08ADAAAQBAJ,Paul Graham,1,Biography & Autobiography,2016,464 +The Man Who Mistook His Wife For A Hat,Oliver Sacks,nc2dE9swe0sC,Jordan Peterson,1,Biography & Autobiography,1998,243 +The Man Who Stayed Behind,Sidney Rittenberg,F4bc8WrgUkAC,Bill Gates,1,Biography & Autobiography,2001,476 +The Man Who Was Thursday,G.K. Chesterton,gj9oHewU2JUC,Neil Gaiman,1,Fiction,2009,132 +The Map Book,Peter Barber,r4AYAQAAMAAJ,Stewart Brand,1,Cartographers,1993,192 +The Map That Changed the World,Simon Winchester,rdzVtgrHFvQC,Turia Pitt,1,Biography & Autobiography,2002,352 +The Martian,Andy Weir,kPmLDQAAQBAJ,Ev Williams|Noah Kagan,2,Adventure stories,2015,448 +The Master Algorithm,Pedro Domingos,pjRkCQAAQBAJ,Mark Cuban|Vinod Khosla,2,Science,2015,352 +The Master Key System In Twenty-Four Parts With Questionnaire And Glossary,Charles F. Haanel,h041AAAACAAJ,Terry Crews,1,,1988,350 +The Master and Margarita,Mikhail Bulgakov,4wY4jaxQuWAC,Jack Dorsey|Jordan Peterson|Max Levchin|Peter Thiel,4,Fiction,2006,332 +The Mastery of Love,Don Miguel Ruiz,iJvRpOnDickC,Aubrey Marcus,1,Self-Help,2010,224 +The Mathematics of Politics,E. Arthur Robinson,DAGRDQAAQBAJ,Kevin Systrom,1,Mathematics,2016,477 +The Meanest Thing To Say,Bill Cosby,CvILPwAACAAJ,Oprah Winfrey,1,Juvenile Fiction,1997, +The Meaning of Culture,John Cowper Powys,RD-rSgAACAAJ,Tim O’Reilly,1,Civilization,2010,320 +The Meaning of Human Existence,Edward O. Wilson,WSAmrgEACAAJ,Ray Dalio,1,Health & Fitness,2015,208 +The Meaning of the 21st Century,James Martin,PEVGHqG5LEQC,Richard Branson,1,Science,2012,544 +The Measure of Reality,Alfred Crosby,QDjto8j0PE4C,Nick Szabo,1,History,1998,245 +The Measure of a Man,Sidney Poitier,OF9ycRxQNcIC,Oprah Winfrey,1,Biography & Autobiography,2009,272 +The Medium is the Massage,Marshall McLuhan,_1kNAQAAMAAJ,Tim Ferriss,1,Language Arts & Disciplines,1996,159 +The Mental Life of Modernism,Samuel Jay Keyser,0IHRDwAAQBAJ,Steven Pinker,1,Science,2020,240 +The Messy Middle,Scott Belsky,rrlMDwAAQBAJ,Ryan Hoover,1,Business & Economics,2018,416 +The Metamorphosis,Franz Kafka,CNadDwAAQBAJ,David Lynch,1,Fiction,2019, +The Method Method,Eric Ryan,ThYXTwEACAAJ,Keith Rabois,1,Business & Economics,2011,256 +The Middleman,Olen Steinhauer,ptVfCgAAQBAJ,Max Levchin,1,Fiction,2018,416 +The Midnight Fox,Betsy Byars,8yccAwAAQBAJ,Gretchen Rubin,1,Juvenile Fiction,2014,208 +The Midnight Line,Lee Child,ihAcDgAAQBAJ,Malcolm Gladwell,1,Fiction,2017,384 +The Mind,Yogi Bhajan,SRweAAAAMAAJ,George Raveling,1,Religion,1977,193 +The Mind of a Mnemonist,Aleksandr R. Luria,HTsSszl2ogcC,Tim Ferriss,1,Medical,1987,160 +The Minefield Girl,Sofia Ek,LRvOtAEACAAJ,Daniel Ek,1,Libya,2017,308 +The Miracle of Mindfulness,Thich Nhat Hanh,2NkiDQAAQBAJ,Kevin Rose,1,Philosophy,2016,168 +The Model Thinker,Scott E. Page,iWRPDwAAQBAJ,Keith Rabois,1,Computers,2018,448 +The Moment of Lift,Melinda Gates,nmR2DwAAQBAJ,Barack Obama|Bill Gates|Brené Brown|Warren Buffett,4,Self-Help,2019, +The Money Game,Adam Smith,lX1HaFtmQSUC,Brendan Moynihan,1,Business & Economics,1976,253 +The Monk and the Riddle,Randy Komisar,uYIGJWJGncYC,Ev Williams,1,Business & Economics,2001,181 +The Monster at the End of This Book,Jon Stone,UXliAwAAQBAJ,Jimmy Fallon,1,Juvenile Fiction,2014,24 +The Moon Is a Harsh Mistress,Robert A. Heinlein,HtuRSsAb2fEC,Bill Gates|Christopher Sommer|Elon Musk|Paul Graham,4,Fiction,1966,383 +The Moral Animal,Robert Wright,_9bmyrgYSBAC,Ryan Holiday,1,Psychology,2010,496 +The Moral Judgment of the Child,Jean Piaget,otUViaRG7TMC,Jordan Peterson,1,Psychology,1997,410 +The Moral Sayings Of Publius Syrus,Publius Syrus,_QQSAAAAIAAJ,Ryan Holiday,1,Aphorisms and apothegms,1856,76 +The Most Important Thing,Howard Marks,2n0VImAHVv0C,Peter Attia|Warren Buffett,2,Business & Economics,2011,192 +The Most Powerful Idea in the World,William Rosen,4wycmAWSWSMC,Bill Gates|Nick Szabo,2,Business & Economics,2012,370 +The Moviegoer,Walker Percy,NTGWtAEACAAJ,Ryan Holiday|Walter Isaacson,2,Fiction,2018,272 +The Muqaddimah,Ibn Ibn Khaldûn,FlNZ5wmo5LAC,Mark Zuckerberg,1,History,1958,465 +The Mystery of Capital,Hernando De Soto,CV8_WryItDoC,Jordan Peterson,1,Business & Economics,2010,288 +The Myth of Mental Illness,Thomas S. Szasz,v98KPS0mqKAC,Jordan Peterson,1,Psychology,1974,297 +The Myth of the Rational Voter,Bryan Caplan,8_S6cOkHK3MC,Marc Andreessen,1,Political Science,2011,296 +The Myth of the Spoiled Child,Alfie Kohn,8d7YCwAAQBAJ,David Heinemeier Hansson,1,EDUCATION,2016,280 +The Myth of the Strong Leader,Archie Brown,CqlVDgAAQBAJ,Bill Gates,1,Political Science,2014,480 +The Mythical Man-Month,Frederick P. Brooks Jr.,Yq35BY5Fk3gC,Alan Kay|Jeff Bezos|Larry Ellison|Marc Benioff,4,Computers,1995,336 +The Name of the Wind,Patrick Rothfuss,BcG2dVRXKukC,Aubrey Marcus|Tim Ferriss,2,Fiction,2010,672 +The Nature of Mathematical Modeling,Neil Gershenfeld,zYAcGbp17nYC,Patrick Collison,1,Mathematics,1999,344 +The Net Delusion,Evgeny Morozov,ctwEIggfIDEC,Ryan Holiday,1,Computers,2012,448 +The Net and the Butterfly,Olivia Fox Cabane,NmsADAAAQBAJ,Safi Bahcall,1,Business & Economics,2017,288 +The Neuropsychology of Anxiety,Jeffrey A. Gray,_M4owh-vs-8C,Jordan Peterson,1,Medical,2003,424 +The Neverending Story,Michael Ende,ab85nwEACAAJ,Soman Chainani|Tim Ferriss,2,Children's stories,2014,528 +The New Atlantis,Sir Francis Bacon,3JoelGG1lBQC,Peter Thiel,1,Fiction,2009,67 +The New Deal,Anthony J. Badger,rD2TQgAACAAJ,Paul Graham,1,History,1989,392 +The New Executive Brain,Elkhonon Goldberg,nFo4Ovf3KMkC,Jordan Peterson,1,Medical,2009,352 +The New Geography of Jobs,Enrico Moretti,br0S54w0u_sC,Barack Obama,1,Business & Economics,2012,294 +The New Industrial State,John Kenneth Galbraith,8l2G-C8H8IoC,Paul Graham,1,Business & Economics,2007,518 +The New Jim Crow,Michelle Alexander,reDzBZ3pXqsC,Mark Zuckerberg,1,Social Science,2012,336 +The New New Thing,Michael Lewis,6i1R3RITYrIC,Ryan Holiday,1,Business & Economics,2012,256 +The New One Minute Manager,Ken Blanchard,jXydBAAAQBAJ,Brian Armstrong|Daymond John|Joe De Sena,3,Business & Economics,2015,112 +The New Penguin Atlas of Ancient History,Colin McEvedy,jQKwQwAACAAJ,Paul Graham,1,History,2002,128 +The New Science of Strong Materials,J.E. Gordon,axW-iYrhQ1YC,Bill Gates,1,Technology & Engineering,1991,288 +The Nightingale's Song,Robert Timberg,89xm-0eIfG8C,Jocko Willink|Tommy Vietor,2,History,1996,544 +The Nine,Jeffrey Toobin,alR-oZEbPFUC,Gary Vaynerchuk,1,Political Science,2008,480 +The No Asshole Rule,Robert I. Sutton,ec6yoQEACAAJ,Safi Bahcall,1,BUSINESS & ECONOMICS,2014,100 +"The Norton Anthology of Modern and Contemporary Poetry, Volume 2",Jahan Ramazani Ph.D.,-AykxwEACAAJ,Caterina Fake,1,English literature,2012,1104 +The Nurture Assumption,Judith Rich Harris,9GQlA_l-TQ0C,Steven Pinker,1,Family & Relationships,1999,462 +The ONE Thing,Gary Keller,rB2ZDQAAQBAJ,Charles Poliquin|Maria Sharapova,2,Business & Economics,2013,240 +The Obstacle Is the Way,Ryan Holiday,WOf7mAEACAAJ,Aubrey Marcus|Christopher Sommer|George Raveling|James Altucher|Steven Pressfield|Tim Ferriss,6,Business & Economics,2015,201 +The Ocean of Life,Callum Roberts,KbG7HxoURbgC,Patrick Collison,1,Science,2012,432 +The Odyssey,Homer,24f2fyhIP-MC,Caterina Fake|Michael Pollan|Stewart Brand|Tim O’Reilly|Walter Isaacson,5,Fiction,2005,416 +The Old Man and the Sea,Ernest Hemingway,K1cIZmFe7KoC,Jack Dorsey|Jordan Peterson|Josh Waitzkin|Phil Keoghan,4,,1987,59 +The Old Way,Elizabeth Marshall Thomas,rtHR8_gK_WwC,Patrick Collison|Paul Graham,2,Social Science,2007,368 +The Once and Future King,T. H. White,Fz1iauCDFwcC,Ben Shapiro,1,Study Aids,2002,72 +The One Year Uncommon Life Daily Challenge,Tony Dungy,6puhDwAAQBAJ,Doug McMillon,1,Religion,2019,384 +The One from the Other,Philip Kerr,yRm_irtU2GYC,Lewis Cantley,1,Fiction,2009,372 +The Only Game in Town,Mohamed A. El-Erian,sh2oCgAAQBAJ,Mark Cuban|Walter Isaacson,2,Business & Economics,2016,336 +The Open Society and Its Enemies,Karl R. Popper,GBsCxSSZZ80C,Ayaan Hirsi Ali,1,Philosophy,2013,808 +The Opposite of Loneliness,Marina Keegan,BWRvAAAAQBAJ,Emma Watson,1,Biography & Autobiography,2014,240 +The Order of Time,Carlo Rovelli,POi9DwAAQBAJ,Naval Ravikant,1,Biography & Autobiography,2019,256 +The Organized Mind,Daniel J. Levitin,F78cBAAAQBAJ,Keith Rabois,1,Self-Help,2015,528 +The Origin of Consciousness in the Breakdown of the Bicameral Mind,Julian Jaynes,3eQd-x-cxPwC,Adam Robinson|Naval Ravikant,2,Science,2000,512 +The Origin of Species,Charles Darwin,ez9KAAAAYAAJ,Darren Aronofsky|Neil deGrasse Tyson|Paul Graham|Tim Ferriss,4,Evolution,1869,432 +The Origins and History of Consciousness,Erich Neumann,f5s9AAAAIAAJ,Jordan Peterson,1,Psychology,1954,493 +The Origins of Political Order,Francis Fukuyama,CvN0ihQi--wC,David Heinemeier Hansson,1,Political Science,2011,631 +The Origins of Virtue,Matt Ridley,PArDQgAACAAJ,Naval Ravikant,1,Science,1998,295 +The Other Side of Silence,Philip Kerr,b2owvgAACAAJ,Lewis Cantley,1,,2016, +The Outermost House,Henry Beston,jg2fDwAAQBAJ,Richard Branson,1,Biography & Autobiography,2019,224 +The Outsiders,William N. Thorndike,yA30dFOXUIQC,Brian Armstrong|Charlie Munger|Warren Buffett,3,Business & Economics,2012,240 +The Overview Effect,Frank White,3a2rz-s3JJsC,Richard Branson,1,Technology & Engineering,1998,314 +The Oxford Book of Aphorisms,John Gross,WvS8QgAACAAJ,B.J. Novak,1,Reference,1983,383 +The Oxford History of Britain,Peter Salway,tfeCQgAACAAJ,Paul Graham,1,Great Britain,1993,563 +The Oxford Shakespeare,William Shakespeare,QJYjrlDzO9YC,J.K. Rowling|Ricardo Semler|Stewart Brand,3,Drama,2008,336 +The Oxygen Advantage,Patrick McKeown,hEkajwEACAAJ,David Allen|Laird Hamilton,2,Health & Fitness,2016,288 +The Painted Bird,Jerzy Kosinski,WLKf4DjDDlQC,Neil Strauss,1,Fiction,2007,234 +The Paleo Solution,Robb Wolf,BuIsDwAAQBAJ,Jack Dorsey|Rick Rubin,2,Health & Fitness,2017,304 +The Paradox of Choice,Barry Schwartz,gyIDswEACAAJ,Pavel Tsatsouline,1,Psychology,2016,304 +"The Paris Review Interviews, I",The Paris Review,478IMQI1aMkC,Patrick Collison,1,Biography & Autobiography,2006,528 +The Passion Trap,Dean C. Delis,_vQJAAAACAAJ,Liv Boeree,1,Family & Relationships,2002,267 +The Path Between the Seas,David McCullough,uVaeIXMxJpQC,Bill Gates,1,History,2001,698 +The Path to Love,Deepak Chopra,pCrWIL1CnWMC,Naval Ravikant,1,Family & Relationships,2007,352 +The Perfect Store,Adam Cohen,m-Qe9Qmr12MC,Ev Williams,1,Business & Economics,2008,336 +The Perfect Weapon,David E. Sanger,H0C-DwAAQBAJ,Bill Gates,1,Political Science,2019,382 +The Perks of Being a Wallflower,Stephen Chbosky,GNFhFs5A_lgC,Emma Watson,1,Fiction,2012,240 +The Physics of Baseball,Robert K Adair,Izd4QgAACAAJ,Bill Nye,1,Science,1994,142 +The Pillars of the Earth,Ken Follett,VJ4qDwAAQBAJ,Oprah Winfrey,1,Cathedrals,2014,1095 +The Pilot's Wife,Anita Shreve,ViguWPV5mFUC,Oprah Winfrey,1,Fiction,1998,293 +The Pirate's Dilemma,Matt Mason,k37uLFdG5KAC,Ryan Holiday,1,Business & Economics,2009,276 +The Planet Remade,Oliver Morton,-ZCkDwAAQBAJ,Patrick Collison,1,Business & Economics,2017,440 +The Plant Paradox,Dr. Steven R Gundry MD,PwyxDAAAQBAJ,Jack Dorsey|Whitney Wolfe Herd,2,Health & Fitness,2017,416 +The Player of Games,Iain M. Banks,GsCT8lPbYFMC,Elon Musk|Mark Zuckerberg|Stewart Brand,3,Fiction,2009,416 +The Pleasure of Finding Things Out,Richard P. Feynman,WO9D_BaDDhkC,Brian Armstrong|Larry Page,2,Science,2005,300 +The Plot Against America,Philip Roth,J2h8mDeDU5UC,Daniel Pink,1,Fiction,2004,400 +The Poisonwood Bible,Barbara Kingsolver,QJ0JmYmeHFAC,Oprah Winfrey,1,Fiction,2008,640 +The Polarized Presidency of George W. Bush,George C. Edwards III,-2eYDwAAQBAJ,Ezra Klein,1,Political Science,2012,272 +The Politics and Development of the Federal Income Tax,John F. Witte,Mf_kfzLi-msC,Paul Graham,1,Business & Economics,1986,464 +The Population Bomb,Paul R Ehrlich,8WxeQAAACAAJ,Paul Graham,1,Social Science,1971,201 +The Post-American World,Fareed Zakaria,OYMdXxP3FrkC,Bill Gates,1,Political Science,2011,336 +The Power Broker,Robert A. Caro,CWI-MQAACAAJ,Ryan Holiday,1,,2017,1246 +The Power Of One,Bryce Courtenay,c1B4atNBSWwC,Ev Williams,1,Apartheid,2011,440 +The Power of Habit,Charles Duhigg,3IWKOZM-8isC,Kelly Starrett|Max Levchin|Naval Ravikant|Ray Dalio|Scott Adams|Tim Ferriss,6,Self-Help,2013,371 +The Power of Myth,Joseph Campbell,2GOIGuh5GJ4C,Bryan Callen|Dave Elitch|Naval Ravikant,3,Social Science,2011,320 +The Power of Nice,Linda Kaplan Thaler,QlyeJIWQeHkC,Tom Peters,1,Business & Economics,2006,128 +The Power of Now,Eckhart Tolle,sQYqRCIhFAMC,Kristen Ulmer|Naval Ravikant,2,"Body, Mind & Spirit",2010,256 +The Power of Persuasion,Robert Levine,DdSPsxHX5BQC,Will MacAskill,1,Psychology,2003,278 +The Power of Productivity,William W. Lewis,lSwLll6GNNcC,Marc Andreessen,1,Business & Economics,2005,368 +The Power of Small,Linda Kaplan Thaler,Yeza2aaSLRMC,Tom Peters,1,Business & Economics,2011,160 +The Power of a Positive No,William Ury,rwI2ZnCZMd8C,Muna AbuSulayman,1,Self-Help,2012,272 +The Power to Compete,Hiroshi Mikitani,xumZBQAAQBAJ,Bill Gates,1,Business & Economics,2014,240 +The Practice of the Presence of God,Brother Lawrence,FPnekNAS89kC,Krista Tippett,1,Religion,2011,132 +The President Is Missing,Bill Clinton,DVnODgAAQBAJ,Doris Kearns Goodwin,1,Fiction,2018,528 +The Presidential Biographies,David McCullough,1C4otAEACAAJ,Greg McKeown,1,Biography & Autobiography,2017,2352 +The Presidents Club,Nancy Gibbs,AaJQJ1BLQ2MC,Peter Attia,1,History,2012,656 +The Price of the Ticket,James Baldwin,dsauteQRd7UC,Sarah Lewis,1,Literary Criticism,1985,690 +The Prince,Niccolò Machiavelli,bRdLCgAAQBAJ,Eric Ripert|Neil deGrasse Tyson|Ryan Holiday|Stewart Brand,4,Philosophy,2002,140 +The Princeton Companion to Applied Mathematics,Nicholas J. Higham,ferEDwAAQBAJ,Patrick Collison,1,Mathematics,2019,375 +The Princeton Companion to Mathematics,Timothy Gowers,1YBGAAAAQBAJ,Naval Ravikant,1,Mathematics,2010,141 +The Principia,Isaac Newton,Tm0FAAAAQAAJ,Alan Kay|Neil deGrasse Tyson|Paul Graham,3,Celestial mechanics,1729,320 +The Principles of Uncertainty,Maira Kalman,-TDJDwAAQBAJ,Caterina Fake,1,Art,2009,325 +The Printing Revolution in Early Modern Europe,Elizabeth L. Eisenstein,2esYxPfbpjkC,Nick Szabo,1,Business & Economics,2012,401 +The Prize,Daniel Yergin,C6pGQvVqNAoC,Bill Gates,1,Social Science,2012,928 +The Professor in the Cage,Jonathan Gottschall,ZV2JDQAAQBAJ,Ben Shapiro,1,Social Science,2016,304 +The Promise of Sleep,William C. Dement,ooaI3EMUbxEC,Mike Birbiglia,1,Health & Fitness,2000,556 +The Prophet,Kahlil Gibran,n5BlBsFbGOQC,Jason Nemer|Kelly Slater|Naval Ravikant|Peter Mallouk|Tim Ferriss,5,Fiction,1997,80 +The Proximity Principle,Ken Coleman,8gSTDwAAQBAJ,Dave Ramsey,1,Business & Economics,2019,240 +The Psychedelic Explorer's Guide,James Fadiman,_V0oDwAAQBAJ,Michael Pollan|Peter Attia,2,"Body, Mind & Spirit",2011,352 +The Psychedelic Journey of Marlene Dobkin de Rios,Marlene Dobkin de Rios Ph.D.,h10oDwAAQBAJ,Hamilton Morris,1,"Body, Mind & Spirit",2009,216 +The Psychoanalytic Theory of Neurosis,Otto Fenichel M.D.,mBDtvgEACAAJ,Stanislav Grof,1,Neuroses,1945,703 +The Psychology of Achievement,Brian Tracy,nr_6oAEACAAJ,Brian Armstrong,1,,1984, +The Pursuit of Wow!,Tom Peters,-kQzeeP6VxwC,Seth Godin,1,Business & Economics,2010,368 +The Puzzle People,Thomas Starzl,vJ0gXePBjxwC,Peter Attia,1,Biography & Autobiography,2003,370 +The Quantum and the Lotus,Matthieu Ricard,F-QpZMJ6b7QC,Eric Ripert,1,Religion,2009,320 +The Queen of the Tearling,Erika Johansen,5VcZAwAAQBAJ,Emma Watson,1,Fiction,2014,448 +The Quest,Daniel Yergin,3R-MDQAAQBAJ,Bill Gates,1,Business & Economics,2012,820 +The Quest for Cosmic Justice,Thomas Sowell,5eU2KN9ChnEC,Ben Shapiro,1,Political Science,2001,224 +The Quest for El Cid,Richard Fletcher,W-MIChVmZwQC,Paul Graham,1,Biography & Autobiography,1991,217 +The Quiet American,Graham Greene,C8VQDwAAQBAJ,Richard Branson,1,Fiction,2018,180 +The Qur'an,-,isDgI0-0Ip4C,Ayaan Hirsi Ali|Kevin Kelly|Sam Harris,3,Reference,2006,771 +The Rape of Nanking,Iris Chang,8XnKuSxod8wC,Jocko Willink,1,History,2014,360 +The Rational Optimist,Matt Ridley,YoVpW0zJIgYC,Bill Gates|John Arnold|Jordan Peterson|Marc Andreessen|Mark Zuckerberg|Naval Ravikant,6,Business & Economics,2010,480 +The Reader,Bernhard Schlink,KSXJ06rpQmUC,Oprah Winfrey,1,Fiction,2011,224 +The Reality Dysfunction,Peter F. Hamilton,ZChKHQAACAAJ,Adam Gazzaley,1,Fiction,1997,588 +The Reasonableness of Christianity,John Locke,LKAUAAAAQAAJ,Peter Thiel,1,Apologetics,1696,307 +The Reckoning,John Grisham,F8s-vgEACAAJ,Doris Kearns Goodwin,1,,2019,432 +The Recollections of Rifleman Harris,Benjamin Harris,9khwCwAAQBAJ,Jocko Willink,1,History,2011,132 +The Red Queen,Matt Ridley,dFXnk5TCHToC,Aubrey Marcus|Naval Ravikant|Nick Szabo,3,Science,2012,416 +The Red and the Black,Stendhal,CFTNPwAACAAJ,Jordan Peterson,1,Fiction,2008,631 +The Remains of the Day,Kazuo Ishiguro,MSurBex2xcUC,Emma Watson|Jeff Bezos,2,Fiction,2009,272 +The Republic,Plato,YiDDAgAAQBAJ,Maria Popova|Mark Zuckerberg|Vlad Tenev,3,Literary Collections,2012,288 +The Return,Hisham Matar,27D3DAEACAAJ,Barack Obama,1,Fathers and sons,2017,272 +The Revenge of Geography,Robert D. Kaplan,MbhdAAAAQBAJ,Ben Shapiro,1,History,2013,414 +The Richest Man in Babylon,George S. Clason,YgOKjwEACAAJ,DJ Vlad|Daymond John|Sophia Amoruso,3,,2011,92 +The Ride of a Lifetime,Robert Iger,FIKMDwAAQBAJ,Brené Brown|Brian Chesky|Karlie Kloss|Tim Ferriss,4,Business & Economics,2019,272 +The Rig Veda,Anonymous,fF72twEACAAJ,Stanislav Grof,1,,2013,799 +The Right Stuff,Tom Wolfe,OZ_jQVH3oMwC,Richard Branson,1,History,2008,448 +The Righteous Mind,Jonathan Haidt,U21BxGfm3RUC,A.J. Jacobs,1,Philosophy,2013,500 +The Rise and Fall of American Growth,Robert J. Gordon,jXGYDwAAQBAJ,Bill Gates|Patrick Collison,2,Business & Economics,2017,784 +The Rise and Fall of Violent Crime in America,Barry Latzer,A2BOvgAACAAJ,Ben Shapiro,1,History,2017,424 +The Rise and Fall of the Third Reich,William L. Shirer,sY8svb-MNUwC,Jordan Peterson,1,History,1990,1249 +"The Rise of Statistical Thinking, 1820-1900",Theodore M. Porter,5a2a3jlBNb0C,Jordan Peterson,1,Science,1986,333 +The Rise of Superman,Steven Kotler,Rj3YAgAAQBAJ,Adam Fisher|Chase Jarvis|Jason Silva|Marc Andreessen,4,Business & Economics,2014,234 +The Rise of the West,William H. McNeill,_RsPrzrsAvoC,Stewart Brand,1,History,2009,860 +The Rites of Passage,Arnold van Gennep,QS7-AQAAQBAJ,Stanislav Grof,1,Social Science,2013,208 +The River of Doubt,Candice Millard,paSe7yZGUfEC,Ryan Holiday,1,History,2009,432 +The Road,Cormac McCarthy,VcZtDwAAQBAJ,Aubrey Marcus|Jocko Willink|Joel McHale|Oprah Winfrey,4,Fiction,2019, +The Road,Jack Kerouac,4w1vQRkAVxYC,Josh Waitzkin,1,Fiction,2002,307 +The Road to Character,David Brooks,mz63BQAAQBAJ,Bill Gates|Howard Schultz,2,Self-Help,2015,320 +The Road to Eleusis,R. Gordon Wasson,lZXpO_3szpsC,Stanislav Grof,1,History,2008,167 +The Road to Wigan Pier,George Orwell,SgucCwAAQBAJ,David Heinemeier Hansson|Jordan Peterson,2,Philosophy,2016,177 +The Robber Barons,Matthew Josephson,UMLzXFrGjXIC,Larry Ellison,1,Business & Economics,1962,474 +The Robert Collier Letter Book,Robert Collier,6vPGDwAAQBAJ,Ramit Sethi,1,Business & Economics,2019, +The Role of the Individual in History,Georgii Valentinovich Plekhanov,kDe3xwEACAAJ,Ray Dalio,1,Historical materialism,1940,58 +The Rommel Papers,B. H. Liddell-Hart,FQZHCgAAQBAJ,Peter Attia,1,History,2015,848 +The Rooster Bar,John Grisham,UuRWuwEACAAJ,Doris Kearns Goodwin,1,Fraud,2018,441 +The Rosie Effect,Graeme Simsion,gYveAwAAQBAJ,Bill Gates,1,Fiction,2014,352 +The Rosie Project,Graeme Simsion,Z_krwj_IZiIC,Bill Gates,1,Fiction,2013,304 +The Rural Life,Verlyn Klinkenborg,gVQ5AQAAQBAJ,Samin Nosrat,1,Nature,2007,300 +The Russia House,John le Carré,rAMmwyICzRoC,Malcolm Gladwell,1,Fiction,2004,368 +The Sacred Mushroom and The Cross,John M. Allegro,ubbprQEACAAJ,Joe Rogan,1,,2014,144 +The Sacred and The Profane,Mircea Eliade,zBzzv977CLgC,Jordan Peterson,1,Religion,1959,256 +The Sales Acceleration Formula,Mark Roberge,TO5ACgAAQBAJ,Noah Kagan,1,Business & Economics,2015,224 +The Salmon of Doubt,Douglas Adams,xU3m_s5O7yMC,Naval Ravikant,1,Fiction,2012,336 +The Sandman,Neil Gaiman,AfW0AAAAQBAJ,Naval Ravikant,1,Comics & Graphic Novels,2010, +The Scandal of Money,George Gilder,g4u0CwAAQBAJ,Ben Shapiro,1,Business & Economics,2016,224 +The Science of Hitting,Ted Williams,Li6ZPwAACAAJ,Warren Buffett,1,Sports & Recreation,2008,9 +The Science of Words,George A. Miller,5SxvQgAACAAJ,Steven Pinker,1,"Grammar, Comparative and general",1996,276 +The Sciences of the Artificial,Herbert A Simon,yYSkDwAAQBAJ,Alan Kay,1,Computers,2019,256 +The Scientist in the Crib,Alison Gopnik,NgrWtwEACAAJ,Steve Jurvetson,1,Cognition,2001,279 +The Score Takes Care of Itself,Bill Walsh,JehbNQEACAAJ,Jack Dorsey|Keith Rabois|Ron Conway|Ryan Holiday,4,Business & Economics,2010,251 +The Scourge of the Swastika,Edward Frederick Langley Russell,V8MtAgAAQBAJ,Dr. Gabor Maté,1,History,2008,288 +The Scramble for Africa,Thomas Pakenham,KwRMCgAAQBAJ,Patrick Collison,1,History,2015,768 +The Screwtape Letters,C. S. Lewis,WOu8ZKUAgpEC,Dominic D'Agostino,1,Religion,2009,224 +The Search,John Battelle,FAJ9DAAAQBAJ,Gary Vaynerchuk|Keith Rabois,2,Computers,2011,336 +The Search for Modern China,Jonathan D. Spence,vI1RRslLNSwC,Edward Norton,1,History,1990,876 +The Second Law,P. W. Atkins,98m6GP4QYmsC,Chris Young,1,Science,1994,216 +The Second Machine Age,Erik Brynjolfsson,WiKwAgAAQBAJ,Tim O’Reilly,1,Business & Economics,2014,306 +The Second Sex,Simone de Beauvoir,KuMtBQAAQBAJ,Laura R Walker,1,Social Science,2015,144 +The Second Tree from the Corner,E. B. White,aOZHuwEACAAJ,Ben Stiller,1,,197?,242 +The Second World War,John Keegan,HN_PQ1G8LAUC,Casey Neistat,1,History,2011,528 +The Secret Life of Salvador Dalí,Salvador Dali,QLXDAgAAQBAJ,Naval Ravikant,1,Art,2013,432 +The Secret of Selling Anything,Harry Browne,84lTzQEACAAJ,Scott Adams,1,Business & Economics,2020,144 +The Selfish Gene,Richard Dawkins,WkHO9HI7koEC,Bob Metcalfe|Brian Armstrong|Charlie Munger|Ev Williams|Matt Ridley|Nick Szabo|Phil Libin,7,Literary Criticism,1989,352 +The Sellout,Paul Beatty,ISQcDAAAQBAJ,Jerrod Carmichael,1,Fiction,2016,304 +The Serengeti Rules,Sean B. Carroll,a3GYDwAAQBAJ,Ray Dalio,1,Science,2017,288 +The Serpent and the Rainbow,Wade Davis,NAs-JZ1MhoMC,Hamilton Morris,1,Social Science,2010,304 +The Seven Mysteries of Life,Guy Murchie,Cq0AqNmeaHYC,Rainn Wilson,1,Science,1999,690 +The Seven Spiritual Laws of Success,Deepak Chopra,fU5FxU3XNAEC,Big Sean,1,Self-Help,2010,128 +The Seven Storey Mountain,Thomas Merton,Oe8k-L0_bVkC,Krista Tippett,1,Biography & Autobiography,1998,496 +The Seven-Day Weekend,Ricardo Semler,eUWcDAEACAAJ,Ev Williams,1,Business & Economics,2004,246 +The Seventh Sense,Joshua Cooper Ramo,CSoRvgAACAAJ,Reid Hoffman,1,Social Science,2018,352 +The Shack,William P. Young,w6Z48NigUUgC,Ashton Kutcher,1,Fiction,2008,256 +The Shadow of the Wind,Carlos Ruiz Zafon,GKlCDwAAQBAJ,Emma Watson,1,Fiction,2014,528 +The Shallows,Nicholas Carr,-HuqDwAAQBAJ,Tara Brach,1,Science,2020,320 +The Shareholder Value Myth,Lynn Stout,tdNgyImQjicC,Tom Peters,1,Business & Economics,2012,134 +The Signal and the Noise,Nate Silver,ekWLDQAAQBAJ,Bill Gates,1,Business & Economics,2015,534 +The Simple Path to Wealth,J L Collins,yRaMDAEACAAJ,Mr. Money Mustache,1,,2016,286 +The Singularity Is Near,Ray Kurzweil,88U6hdUi6D0C,Brian Armstrong|Jason Silva|Marc Goodman|Peter Diamandis|Steve Aoki|Stewart Brand,6,Science,2005,652 +The Sixth Extinction,Elizabeth Kolbert,wlnCAwAAQBAJ,Bill Gates,1,Environmental disasters,2014,319 +The Sleep Revolution,Arianna Huffington,_BdDDgAAQBAJ,Emma Watson,1,Psychology,2017,416 +The Sleepeasy Solution,Jennifer Waldburger,VnWjAgAAQBAJ,Ashton Kutcher,1,Family & Relationships,2007,287 +The Sleepwalkers,Arthur Koestler,tgUXAQAAMAAJ,Stewart Brand,1,Religion,1968,624 +The Slight Edge,Jeff Olson,MdpiAQAAQBAJ,Ryan Flaherty,1,Self-Help,2013,280 +The Smartest Guys in the Room,Bethany McLean,oH_Y3ruj6FQC,Warren Buffett,1,Business & Economics,2013,480 +The Smartest Investment Book You'll Ever Read,Daniel R. Solin,mmt0teKLY8kC,Tim Ferriss,1,Business & Economics,2006,179 +The Snowball,Alice Schroeder,NCB3ULgTzhkC,DJ Vlad,1,Business & Economics,2009,832 +The Social Animal,Elliot Aronson,_Cgus0bHvIQC,Ramit Sethi,1,Psychology,2004,431 +The Social Life of Information,John Seely Brown,dynuDAAAQBAJ,Ev Williams,1,Business & Economics,2017,352 +The Social Photo,Nathan Jurgenson,7FlnDwAAQBAJ,Evan Spiegel,1,Photography,2019,144 +The Song of Achilles,Madeline Miller,FrXsTNgkEqgC,J.K. Rowling,1,Fiction,2011,352 +The Sorrows of Young Werther,Johann Wolfgang von Goethe,3UK8AQAAQBAJ,Ed Cooke,1,Fiction,2012,96 +The Soul of A New Machine,Tracy Kidder,JP0odQpUKUYC,Paul Graham,1,Computers,2011,293 +The Souls of Black Folk,W. E. B. Du Bois,pDPCAgAAQBAJ,Jesse Williams,1,Literary Collections,2012,176 +The Sound and the Fury,William Faulkner,C_muDwAAQBAJ,Oprah Winfrey,1,Fiction,2019,380 +The Sound of the One Hand,Yoel Hoffman,PgofPxiw904C,Kevin Kelly,1,Fiction,2001,160 +The Source,James A. Michener,5MpTHkStChsC,Ben Shapiro,1,Fiction,1983,1088 +The Sovereign Individual,James Dale Davidson,WuQblPwwAjgC,Naval Ravikant|Ryan Shea,2,Business & Economics,1999,448 +The Spectator,Joseph Addison,f1aJDAAAQBAJ,Paul Graham,1,Law,2016,272 +The Spider Network,David Enrich,EoWIDAAAQBAJ,Marc Andreessen,1,Business & Economics,2017,528 +The Spirit of St. Louis,Charles A. Lindbergh,lIld6SrHeW4C,Peter Diamandis,1,Biography & Autobiography,2003,576 +The Spiritual Brain,Mario Beauregard,_HrXOxDHFbQC,Ray Dalio,1,Religion,2009,384 +The Sports Gene,David Epstein,00eKDQAAQBAJ,Kelly Starrett,1,Health & Fitness,2014,352 +The Spy Who Came in from the Cold,John le Carré,q12zJDgiEzkC,Malcolm Gladwell,1,Fiction,2001,224 +The Srimad Devi Bhagavatam,-,WLSeAwAAQBAJ,David Lynch,1,Social Science,2013,525 +The Stars,H. A. Rey,QiOsr9xanRoC,Caroline Paul,1,Juvenile Nonfiction,2008,160 +The Start-up of You,Reid Hoffman,uWdSEALLNYEC,Michael McCullough,1,Business & Economics,2012,304 +The Startup Way,Eric Ries,G8cPDgAAQBAJ,Paul Graham,1,Business & Economics,2017,400 +The Stone Angel,Margaret Laurence,9xhPIF6xv-wC,Jordan Peterson,1,Fiction,1993,308 +The Stories of Vladimir Nabokov,Vladimir Nabokov,eAQhuAZzfYIC,Safi Bahcall,1,Fiction,2011,704 +The Story of Edgar Sawtelle,David Wroblewski,CAxtwAyUlYQC,Oprah Winfrey,1,Fiction,2009,608 +The Story of Philosophy,Will Durant,PXIg5EOsbIQC,Naval Ravikant,1,Biography & Autobiography,1961,543 +The Story of Writing,Andrew Robinson,qo_WAAAAMAAJ,Stewart Brand,1,Science,2007,224 +The Story of the Treasure Seekers,E. Nesbit,DkcdBQAAQBAJ,J.K. Rowling,1,Literary Criticism,2013,392 +The Strange Death of Europe,Douglas Murray,Y6dxDwAAQBAJ,Marc Andreessen,1,Political Science,2018,384 +The Stranger,Albert Camus,TAWfCgAAQBAJ,Kyle Maynard,1,Education,2015, +The Strangest Man,Graham Farmelo,-TT_z4llWoIC,Eric Weinstein,1,Biography & Autobiography,2009,560 +The Strategy of Conflict,Thomas C. Schelling,7RkL4Z8Yg5AC,Steven Pinker,1,Political Science,1980,309 +The Strongest Shall Survive,Bill Starr,P8sgNAAACAAJ,Pavel Tsatsouline,1,Football,1978,209 +The Structure of Scientific Revolutions,Thomas S. Kuhn,3eP5Y_OOuzwC,Mark Zuckerberg|Paul Graham|Stanislav Grof|Steve Jobs,4,Science,2012,264 +The Success Equation,Michael J. Mauboussin,MC_fgWrQXBgC,Keith Rabois,1,Business & Economics,2012,293 +The Sun Does Shine,Anthony Ray Hinton,IBw0DwAAQBAJ,Oprah Winfrey,1,Biography & Autobiography,2018,272 +The Super-Americans,John Bainbridge,6pcnAQAAMAAJ,Paul Graham,1,History,1972,395 +The Surrender Experiment,Michael A. Singer,X4h5BAAAQBAJ,Naval Ravikant,1,Self-Help,2015,272 +The Survival of the Bark Canoe,John McPhee,BEnRXfL7baEC,Daniel Pink|Nick Thompson,2,Social Science,1982,160 +The Swerve,Stephen Greenblatt,SnQ_lQInytkC,Nick Kokonas,1,History,2011,368 +The Symbolic Life,Carl Jung,ndI9AAAAIAAJ,Jordan Peterson,1,Psychoanalysis,1977,904 +The Sympathizer,Viet Thanh Nguyen,dYYVBgAAQBAJ,Bill Gates,1,Fiction,2015,384 +The System of the World,Isaac Newton,rEYUAAAAQAAJ,Neil deGrasse Tyson,1,Celestial mechanics,1728,154 +The System of the World,Neal Stephenson,nwXbuwEACAAJ,Lewis Cantley,1,Fiction,2004,892 +The TB12 Method,Tom Brady,tkk1DwAAQBAJ,Tony Robbins,1,Biography & Autobiography,2017,320 +The Talent Code,Daniel Coyle,MR4hJcrc4B8C,Joe Rogan|Kelly Starrett|Peter Attia,3,Social Science,2010,256 +"The Tao of Health, Sex, and Longevity",Daniel Reid,4bbSBgAAQBAJ,Kelly Slater,1,Family & Relationships,1989,405 +The Tao of Leadership,John Heider,FoZ0BAAAQBAJ,Dustin Moskovitz,1,Business & Economics,2014,180 +The Tao of Power,R.L. Wing,88SpAAAACAAJ,Jerzy Gregorek,1,Interpersonal relations,1986,23 +The Teachings of Don Juan,Carlos Castaneda,C3dxDwAAQBAJ,Aubrey Marcus,1,Social Science,2016,240 +The Telomere Effect,Dr. Elizabeth Blackburn,6C8aDAAAQBAJ,Jack Kornfield,1,Health & Fitness,2017,302 +The Ten Commandments for Business Failure,Donald R. Keough,BxtBwF7LSE4C,Warren Buffett,1,Business & Economics,2011,196 +The Terminal List,Jack Carr,1UtODwAAQBAJ,Jocko Willink,1,Fiction,2018,416 +The Terrible Two,Jory John,r8UuBAAAQBAJ,Joel Stein,1,Juvenile Fiction,2015,224 +The Theoretical Minimum,Leonard Susskind,LX2-AQAAQBAJ,Eric Weinstein,1,Science,2014,384 +The Theory of Investment Value,John Burr Williams,RbXfngEACAAJ,Warren Buffett,1,Business & Economics,2014,650 +The Things They Carried,Tim O'Brien,Op6eKrkxPq4C,Caroline Paul,1,Fiction,2009,256 +The Third Chimpanzee,Jared Diamond,11EQBwAAQBAJ,Charlie Munger,1,Juvenile Nonfiction,2014,384 +The Third Pillar,Raghuram Rajan,iy7xswEACAAJ,Vinod Khosla,1,,2019, +The Third Wave,Steve Case,BuulDgAAQBAJ,Naval Ravikant,1,Biography & Autobiography,2017,272 +The Thirty Years War,C. V. Wedgwood,PvqmDAAAQBAJ,Ta-Nehisi Coates,1,History,2016,536 +The Thousand Autumns of Jacob de Zoet,David Mitchell,VrnSugAACAAJ,Caterina Fake,1,Fiction,2012,839 +The Three-Body Problem,Cixin Liu,T_WlBgAAQBAJ,Adam Savage|Liv Boeree|Mark Zuckerberg|Naval Ravikant|Tim Urban,5,Fiction,2015,400 +The Tibetan Book of the Dead,Padmasambhava,9ft_tAEACAAJ,Stanislav Grof,1,Philosophy,2018,160 +The Tiger,John Vaillant,WGvVohmSYXcC,Ryan Holiday,1,Fiction,2010,300 +The Tiger's Wife,Téa Obreht,9vrv4byQkXEC,Caterina Fake,1,Fiction,2011,352 +The Timeless Way of Building,Christopher Alexander,H6CE9hlbO8sC,Liz Lambert,1,Architecture,1979,552 +The Tipping Point,Malcolm Gladwell,yBDBEGBIUmgC,Ev Williams|Joe Rogan|Mike Shinoda,3,Psychology,2006,288 +The Toltec Art of Life and Death,Don Miguel Ruiz,K9loCAAAQBAJ,Aubrey Marcus|Aubrey Marcus,2,Self-Help,2015,400 +The Tools,Phil Stutz,5QOdp_HJR0MC,Graham Duncan|Whitney Cummings,2,Self-Help,2012,288 +The Top Five Regrets of the Dying,Bronnie Ware,_Fg8qzdvhwsC,"Mike Maples, Jr.",1,Self-Help,2011,229 +The Total Money Makeover,Dave Ramsey,DpqPwAk8UvYC,Shay Carl,1,Business & Economics,2009,259 +The Trachtenberg Speed System of Basic Mathematics,Jakow Trachtenberg,ZyqGDwAAQBAJ,Paul Graham,1,Mathematics,2011,272 +The Transformed Cell,Steven A. Rosenberg,zyBhHAAACAAJ,Peter Attia,1,Cancer,1992,353 +The Travels of Marco Polo,Marco Polo,SypYS7GO6UEC,Ricardo Semler,1,Asia,1845,368 +The Treasure Hunt,Bill Cosby,G1PFQgAACAAJ,Oprah Winfrey,1,Juvenile Fiction,1997,40 +The Trial,Franz Kafka,Dt7VtjyJmVwC,Kara Swisher,1,Fiction,2012,176 +The Trident,Jason Redman,vRd7ngEACAAJ,Jocko Willink,1,Biography & Autobiography,2014,400 +The True Believer,Eric Hoffer,pRxBBnyBvcYC,Eric Weinstein|George Raveling,2,Social Science,2011,192 +The Truth about Carbs,Nate Miyaki,9qE9rgEACAAJ,Naval Ravikant,1,,2014,136 +The Twelve Tribes of Hattie,Ayana Mathis,DwJVdWgKscwC,Oprah Winfrey,1,Fiction,2012,256 +The Tycoons,Charles R. Morris,nDyoa2rMbSIC,Marc Andreessen,1,Biography & Autobiography,2006,400 +The Ultimate Quotable Einstein,Albert Einstein,9GmYDwAAQBAJ,Warren Buffett,1,Reference,2013,608 +The Ultimate Resource,Julian Lincoln Simon,wVyDwYqq5fMC,Kevin Kelly,1,Business & Economics,1998,734 +The Ultimate Sales Machine,Chet Holmes,idJDnNZFW8IC,Noah Kagan,1,Business & Economics,2007,252 +The Unbearable Lightness of Being,Milan Kundera,7QpErH6s8hcC,Alain de Botton|Ev Williams|Evan Spiegel|Justin Boreta,4,Fiction,2004,320 +The Undercover Economist,Tim Harford,CFjupwQOgD4C,Naval Ravikant,1,Business & Economics,2012,293 +The Underground Railroad,Colson Whitehead,i-XNCwAAQBAJ,Oprah Winfrey,1,Fiction,2016,320 +The Undoing Project,Michael Lewis,nYXgtAEACAAJ,Mark Cuban|Ray Dalio,2,Biography & Autobiography,2017,489 +The Uninhabitable Earth,David Wallace-Wells,f8K-uwEACAAJ,Vinod Khosla,1,,2019,320 +The Unlikely Disciple,Kevin Roose,QhgbE5eCBzkC,A.J. Jacobs,1,Biography & Autobiography,2009,336 +The Untethered Soul,Michael A. Singer,8PkhwjHjNUsC,Naval Ravikant|Ryan Hoover,2,"Body, Mind & Spirit",2009,392 +The Unwritten,Mike Carey,d-ZSDQAAQBAJ,Naval Ravikant,1,Comics & Graphic Novels,2016,320 +The Upanishads,Eknath Easwaran,rFQyA7SbPVsC,Caterina Fake,1,,2010,412 +The Upside of Inequality,Edward Conard,Xr-2CgAAQBAJ,Ray Dalio,1,Business & Economics,2016,320 +The Upside of Stress,Kelly McGonigal,T2oBDAAAQBAJ,Keith Rabois,1,Self-Help,2016,304 +The Vagina Monologues,Eve Ensler,0JGMwO7Lo8kC,Emma Watson,1,Drama,2000,37 +The Varieties of Religious Experience,William James,PetetwEACAAJ,Mark Zuckerberg,1,History,2018,558 +The Velvet Rage,Alan Downs,KXhXzJNpyXwC,Soman Chainani,1,Social Science,2012,272 +The Velveteen Rabbit,Margery Williams,e3YPclQk-dwC,Amanda Palmer,1,Juvenile Fiction,2011,36 +The Visible Hand,Alfred D. Chandler Jr.,lAI3AwAAQBAJ,Paul Graham,1,Business & Economics,1993,624 +The Vision of the Anointed,Thomas Sowell,4yKUDwAAQBAJ,Keith Rabois,1,Political Science,2019,320 +The Vital Question,Nick Lane,IfJYBQAAQBAJ,Bill Gates,1,Science,2015,569 +The Voice That Is Great Within Us,Hayden Carruth,flxaAAAAMAAJ,Debbie Millman,1,Poetry,1985,165 +The War of Art,Steven Pressfield,sR3hAAAAQBAJ,Aubrey Marcus|Brian Koppelman|Daniel Pink|Derek Sivers|Joe Rogan|Lex Fridman|Marie Forleo|Ryan Holiday|Seth Godin|Soman Chainani,10,Self-Help,2002,192 +The War on Cops,Heather Mac Donald,RI8fDAAAQBAJ,Ben Shapiro,1,Political Science,2016,248 +The Warden,Anthony Trollope,s6rDAgAAQBAJ,Tim O’Reilly,1,Fiction,2013,176 +The Warren Buffett Portfolio,Robert G. Hagstrom,ieLS_WwUmmwC,Charlie Munger,1,Business & Economics,2000,256 +The Warren Buffett Way,Robert G. Hagstrom,xmgzFy71zUkC,Howard Marks,1,Business & Economics,2010,272 +The Warrior Diet,Ori Hofmekler,J_s3yTwPhDoC,Charles Poliquin,1,Health & Fitness,2007,277 +The Warrior Ethos,Steven Pressfield,OSXjAAAAQBAJ,Aubrey Marcus,1,Philosophy,2011,112 +The Water Dancer,Ta-Nehisi Coates,f2KMDwAAQBAJ,Oprah Winfrey,1,Fiction,2019,432 +The Water Will Come,Jeff Goodell,LWxFDgAAQBAJ,Stewart Brand,1,Nature,2017,352 +The Water of Life,Michael Meade,nWpoPgAACAAJ,Jack Kornfield,1,Social Science,2006,396 +The Waterworks,E.L. Doctorow,890TpgW-o7AC,Ta-Nehisi Coates,1,Fiction,2010,272 +The Way Life Works,Mahlon Hoagland,R7FqAAAAMAAJ,Stewart Brand,1,Science,1995,233 +The Way Things Work,C. van Amerongen,0nluxQEACAAJ,"Mike Maples, Jr.",1,Technology,1967, +The Way We Live Now,Anthony Trollope,c_sBAAAAQAAJ,Tim O’Reilly,1,,1875,320 +"The Way of Life, According to Laotzu",Witter Bynner,3AJ5AAAAMAAJ,Dr. Andrew Weil|Tim O’Reilly,2,Religion,1972,99 +The Way of White Clouds,Lama Anagarika Govinda,JrUbqfgQ898C,Steve Jobs,1,Philosophy,2012,320 +The Way of Zen,Alan W. Watts,5NuOYxuDbS0C,Steve Jobs,1,Philosophy,2011,256 +The Way of the Animal Powers,Joseph Campbell,RNpIAQAAIAAJ,Stanislav Grof,1,Religion,1983,304 +The Way of the Superior Man,David Deida,1eW-Oxa3M9UC,Aubrey Marcus,1,"Body, Mind & Spirit",2008,292 +The Wealth and Poverty of Nations,David S. Landes,dwC-xsY48TsC,Charlie Munger,1,Business & Economics,1999,658 +The Wealth of Nations,Adam Smith,ubOgQgAACAAJ,Brandon Stanton|Elon Musk|Naval Ravikant|Neil deGrasse Tyson|Nick Szabo,5,Political Science,1957,115 +The Wealth of Networks,Yochai Benkler,Q08oChJj8HQC,"Mike Maples, Jr.",1,Business & Economics,2006,515 +The Weather Makers,Tim Flannery,-X2EAAAAQBAJ,Richard Branson,1,Nature,2007,400 +The Western Canon,Harold Bloom,zIOuAwAAQBAJ,Stewart Brand,1,Literary Criticism,2014,578 +The Wheel of Time,Carlos Castaneda,OXrWAAAAMAAJ,Aubrey Marcus,1,Social Science,1998,290 +The White Album,Joan Didion,yT_FDgAAQBAJ,Kara Swisher,1,Literary Collections,2017,224 +The White Goddess,Robert Graves,XHwaVK17cf0C,Caterina Fake,1,Literary Criticism,2011,544 +The Whites,Richard Price,QyrbBQAAQBAJ,Ben Shapiro,1,Fiction,2015,352 +The Whole Internet User's Guide & Catalog,Ed Krol,JPibvgEACAAJ,Tim O’Reilly,1,Computers,1994,544 +The Whole Shebang,Timothy Ferris,qjYbQ7EBAKwC,Eric Weinstein,1,Science,1998,400 +The Whole-Brain Child,Daniel J. Siegel,tPnEthnZ4nQC,Graham Duncan,1,Family & Relationships,2012,176 +The Will to Power,Friedrich Nietzsche,_ZeWDwAAQBAJ,Jordan Peterson,1,Philosophy,2019,240 +The Willpower Instinct,Kelly McGonigal Ph.D.,evc6jaibNd8C,Jane McGonigal,1,Psychology,2011,272 +The Wind in the Willows,Kenneth Grahame,bqhaAAAAMAAJ,J.K. Rowling,1,Animals,1908,302 +The Wisdom of Crowds,James Surowiecki,hHUsHOHqVzEC,Ben Shapiro|Ev Williams|Kevin Rose,3,Business & Economics,2005,336 +The Wisdom of the Enneagram,Don Richard Riso,lysqAQAAMAAJ,Kristen Ulmer,1,Psychology,1999,389 +The Wizard of Menlo Park,Randall E. Stross,BSAg6MHDIJ8C,Marc Andreessen,1,Biography & Autobiography,2008,376 +The Woman I Wanted to Be,Diane von Furstenberg,vYnqAQAAQBAJ,Karlie Kloss,1,Biography & Autobiography,2014,256 +The Woman Who Could Not Forget,Ying-Ying Chang,UUpyvgEACAAJ,Jocko Willink,1,Biography & Autobiography,2012,427 +The Woman Who Walked into Doors,Roddy Doyle,a0B1EJkNJ-kC,J.K. Rowling,1,Fiction,2008,240 +The World Is Flat,Thomas L. Friedman,oSsIfoDQHhgC,Bill Gates,1,Social Science,2007,672 +The World Until Yesterday,Jared Diamond,nech105NsugC,Bill Gates,1,Social Science,2013,512 +The World We Have Lost,Peter Laslett,_P8DAQAAIAAJ,Paul Graham,1,Grande-Bretagne - Conditions sociales,1965,280 +The World Without Us,Alan Weisman,WZEv9Rp9dMQC,Richard Branson,1,Science,2012,336 +The World as It Is,Ben Rhodes,O19KDwAAQBAJ,Barack Obama,1,Political Science,2018,480 +The World's Religions,Huston Smith,xSjfAQAACAAJ,Jordan Peterson,1,Religion,2017,422 +The Wright Brothers,David McCullough,drS2CAAAQBAJ,Brian Armstrong|Ed Zschau,2,Biography & Autobiography,2015,320 +The Writers Journey,Christopher Vogler,NOiNPwAACAAJ,Darren Aronofsky|Jon Favreau,2,Creative writing,2007,407 +The Year Without Pants,Scott Berkun,Tdo4AAAAQBAJ,Matt Mullenweg,1,Business & Economics,2013,272 +The Years of Lyndon Johnson,Robert A. Caro,pgdSxAEACAAJ,Brandon Stanton,1,,2019,1200 +The Yoga Sutras of Patanjali,Sri Swami Satchidananda,eKtFAAAAYAAJ,Jack Dorsey|Naval Ravikant,2,Exercise in pregnancy,1976,53 +Theodore Boone,John Grisham,yWsz-9Q8JRIC,Doris Kearns Goodwin|Doris Kearns Goodwin,2,Juvenile Fiction,2011,288 +There There,Tommy Orange,oNY0DwAAQBAJ,Barack Obama,1,Fiction,2018,304 +Thermoinfocomplexity,Behzad Mohit,PubvsgEACAAJ,Naval Ravikant,1,,2015, +These Truths,Jill Lepore,qDlWwQEACAAJ,Bill Gates,1,History,2019,960 +Thing Explainer,Randall Munroe,tcn2nAAACAAJ,Bill Gates|Naval Ravikant,2,Science,2017,61 +Things Fall Apart,Chinua Achebe,CGaDj8r13WcC,Barack Obama|Jacqueline Novogratz,2,Fiction,1996,148 +Think and Grow Rich,Napoleon Hill,c86H36mgiM4C,Daymond John|Neville Medhora|Shay Carl,3,Success,1937,254 +Think on These Things,Jiddu Krishnamurti,IsldnzHkxpsC,Naval Ravikant,1,Religion,2010,272 +"Thinking Body, Dancing Mind",Chungliang Al Huang,YTlQdB8vb7IC,Jon Call,1,Philosophy,2009,336 +Thinking Physics,Lewis Carroll Epstein,Lra-jgEACAAJ,Naval Ravikant,1,Physics,1987,561 +Thinking in Bets,Annie Duke,CI-RDwAAQBAJ,Marc Andreessen|Max Levchin|Seth Godin,3,Business & Economics,2019,288 +Thinking in Systems,Donella H. Meadows,CpbLAgAAQBAJ,Tobi Lütke,1,Business & Economics,2008,218 +Thinking in Time,Richard E. Neustadt,zsLyWT70YSEC,Stewart Brand,1,Business & Economics,2011,352 +"Thinking, Fast and Slow",Daniel Kahneman,AV9x8XakdV0C,Bill Gates|Bryan Johnson|Derek Sivers|Ev Williams|Marc Andreessen|Naval Ravikant|Ray Dalio|Ron Conway|Scott Adams|Stewart Brand,10,Psychology,2012,499 +Thirst,Scott Harrison,2JisswEACAAJ,Seth Godin,1,Biography & Autobiography,2018,336 +This Is Water,David Foster Wallace,lfAFVtz-at8C,Peter Attia,1,Philosophy,2009,144 +This Is Your Brain on Music,Daniel J. Levitin,prV4UrZ2df0C,Justin Boreta|Vinod Khosla,2,Psychology,2006,314 +This Is a Book,Demetri Martin,y4nmOe0-WD0C,Rainn Wilson,1,Humor,2011,288 +This Time Is Different,Carmen M. Reinhart,Iihe6s0XincC,Bill Gates,1,Business & Economics,2011,463 +This is Earl Nightingale,Earl Nightingale,sLlZAAAAYAAJ,Neville Medhora,1,Success,1969,334 +Thou Shall Prosper,Rabbi Daniel Lapin,CV0sRGpwv_IC,Dave Ramsey,1,Business & Economics,2009,384 +Three Book Sebald Set,W. G. Sebald,0MqNjwEACAAJ,Caterina Fake,1,Fiction,2016,816 +Three Plays: Sex / The Drag / The Pleasure Man,Mae West,WWY7q_cZ_6QC,Dita Von Teese,1,Music,1997,246 +Three Scientists and Their Gods,Robert Wright,2e62AAAAIAAJ,Charlie Munger,1,Science,1988,324 +Thrive,Arianna Huffington,MIUpAgAAQBAJ,Suzy Amis Cameron,1,Biography & Autobiography,2014,352 +Through the Valley,William Reeder Jr.,JC8MugEACAAJ,Jocko Willink,1,Biography & Autobiography,2019,264 +Tihkal,Alexander Shulgin,jl_ik66IumUC,Hamilton Morris|James Fadiman,2,Biography & Autobiography,1997,804 +Time Travel,James Gleick,jC0yDwAAQBAJ,Stewart Brand,1,History,2017,352 +"Tinker, Tailor, Soldier, Spy",John le Carré,Ia785bbC57IC,Malcolm Gladwell,1,Fiction,2002,400 +Tiny Beautiful Things,Cheryl Strayed,voXPKeEMMbsC,Emma Watson|Ryan Holiday,2,Self-Help,2012,353 +Titan II,David Stumpf,0ZjeIfgG2AoC,Bill Gates,1,HISTORY,2000,320 +To Conquer the Air,James Tobin,yTmyKpzQ2agC,Paul Graham,1,History,2012,448 +To Explain the World,Steven Weinberg,7rZvBQAAQBAJ,Paul Graham,1,Science,2015,432 +To Kill a Mockingbird,Harper Lee,0NEbHGREK7cC,Jordan Peterson|Oprah Winfrey|Taylor Swift,3,Drama,1970,80 +To Rule the Waves,Arthur Herman,dF2W7BAo4x0C,Nick Szabo,1,History,2005,688 +To Show and to Tell,Phillip Lopate,vSdHLFCq0NMC,Rolf Potts,1,Language Arts & Disciplines,2013,240 +Together,Vivek H Murthy M.D.,LwCUDwAAQBAJ,Ben Silbermann|Daniel Pink|Malcolm Gladwell|Susan Cain,4,Psychology,2020,352 +Tolstoy,Henri Troyat,7kDJ3s1mcZcC,Jordan Peterson,1,Biography & Autobiography,2001,762 +Tomb for Boris Davidovich,Danilo Kis,fhCWXvFDuKsC,Caterina Fake,1,Fiction,2001,145 +Tomorrow's Table,Pamela C. Ronald,LW_RCwAAQBAJ,Bill Gates,1,Science,2010,232 +Too Big to Fail,Andrew Ross Sorkin,puiix3gNAVsC,Bill Gates|Max Levchin,2,Business & Economics,2010,640 +"Too Soon Old, Too Late Smart",Gordon Livingston,fuOMOQAACAAJ,Naval Ravikant,1,Conduct of life,2008,347 +Tools and Weapons,Brad Smith,8MyuDwAAQBAJ,Bill Gates|Reed Hastings|Walter Isaacson|Warren Buffett,4,Business & Economics,2019,368 +Tools of Titans,Tim Ferriss,D1OHDQAAQBAJ,Daniel Pink|George Raveling|Greg McKeown|Greg Norman|Jocko Willink|Kevin Rose|Mr. Money Mustache,7,Self-Help,2017,736 +Topics in Advanced Scientific Computation,Richard E. Crandall,XQB5MAEACAAJ,Eric Weinstein,1,Computers,2011,340 +Topology and Analysis,B. Booss,nKbwBwAAQBAJ,Eric Weinstein,1,Mathematics,2012,451 +Torch,Cheryl Strayed,g7dRuc503vAC,Emma Watson,1,Fiction,2007,330 +Total Freedom,Jiddu Krishnamurti,4taOl6wOxRgC,Naval Ravikant,1,Religion,2010,384 +Totto-Chan,Tetsuko Kuroyanagi,DTGNQwAACAAJ,Ryan Holiday,1,,2007,281 +Touching the Rock,John Hull,gE6pAwAAQBAJ,Ed Cooke,1,Religion,2013,216 +Touchpoints - Birth to Three,T. Berry Brazelton,2KVZAAAAYAAJ,Brené Brown,1,Social Science,1992,479 +Touchpoints - Three to Six,T. Berry Brazelton,XadrPsXNgpIC,Brené Brown,1,Psychology,2008,528 +Tough As They Come,Travis Mills,X1awBgAAQBAJ,Jocko Willink,1,Biography & Autobiography,2015,272 +Tough Jews,Rich Cohen,T9pEbZGUnqQC,Ryan Holiday,1,History,1998,271 +Toward a Theory of Instruction,Jerome Bruner,F_d96D9FmbUC,Patrick Collison,1,Education,1966,176 +Trade-Off,Kevin Maney,FdWGm6YJlFsC,Keith Rabois,1,Business & Economics,2009,217 +Transmetropolitan,Warren Ellis,LC-HAwAAQBAJ,Naval Ravikant,1,Comics & Graphic Novels,, +Travels,Michael Crichton,Gv7oh_ukn3QC,Ev Williams,1,Biography & Autobiography,2012,400 +Travels with Charley,John Steinbeck,mqKGH9vGfx4C,Richard Branson,1,Travel,2001,240 +Treasure Island,Robert Louis Stevenson,UPAYAAAAYAAJ,Richard Branson,1,Adventure stories,1884,292 +Tribal Leadership,Dave Logan,Trli5CL1_ssC,Graham Duncan,1,Business & Economics,2012,320 +Tribe,Sebastian Junger,VIl_CwAAQBAJ,Emma Watson|Joe Rogan|Josh Waitzkin|Tim Ferriss,4,Social Science,2016,160 +Tricks of the Mind,Derren Brown,QktOPajGm10C,Derek Sivers,1,Entertainers,2007,392 +Trident K9 Warriors,Mike Ritland,b3XZrGoLoDEC,Jocko Willink,1,Pets,2013,288 +Trilby,George Du Maurier,hAUdAwAAQBAJ,Tim O’Reilly,1,Foreign Language Study,2011,18 +Trillion Dollar Coach,Eric Schmidt,5pMmxAEACAAJ,Maria Sharapova,1,,2020,352 +Tripping over the Truth,Travis Christofferson,SH28oQEACAAJ,Aubrey Marcus|Dominic D'Agostino,2,Medical,2014,296 +Tripwire,Lee Child,AzOKDQAAQBAJ,Malcolm Gladwell,1,FICTION,2012,401 +Triumph of the City,Edward Glaeser,-yWTIKsWGm4C,Marc Andreessen|Stewart Brand,2,Social Science,2011,352 +Tropical Infectious Diseases,Richard L. Guerrant,A7GVvFh4WZwC,Bill Gates,1,Medical,2011,1156 +Troublemakers,Leslie Berlin,t0k8DwAAQBAJ,Keith Rabois|Vinod Khosla,2,Business & Economics,2017,512 +True Believer,Jack Carr,qyegDwAAQBAJ,Jocko Willink,1,Fiction,2019,496 +Trump,Donald J. Trump,CTB8DQAAQBAJ,Scott Adams,1,Biography & Autobiography,2016,384 +"Trust Me, I'm Lying",Ryan Holiday,nHU7DwAAQBAJ,Chase Jarvis,1,Self-Help,2018, +Truth,Hector Macdonald,rbIyDwAAQBAJ,George Raveling,1,Psychology,2018,352 +Truth Decay,Michael D. Rich,gvdIDwAAQBAJ,Barack Obama,1,Education,2018,324 +Tryptamine Palace,James Oroc,iV4oDwAAQBAJ,Martin Polanco,1,"Body, Mind & Spirit",2009,384 +Turing's Cathedral,George Dyson,6sElRNGXWFIC,Stewart Brand,1,Science,2012,401 +Turn the Ship Around!,L. David Marquet,ddjkJUUp54cC,Brian Armstrong|David Heinemeier Hansson,2,Business & Economics,2012,238 +Turning Pro,Steven Pressfield,FR7hAAAAQBAJ,Aubrey Marcus,1,Self-Help,2012,160 +Turtles All the Way Down,John Green,K1qYDwAAQBAJ,Bill Gates,1,Young Adult Fiction,2019,320 +Tuxedo Park,Jennet Conant,QQTZAAAAQBAJ,Patrick Collison|Tobi Lütke,2,History,2013,352 +Twelve Against the Gods,William Bolitho,wtho5_SUdpwC,Elon Musk,1,Religion,2003,316 +Twenty Thousand Leagues Under the Sea,Jules Verne,dGf4X1UPYr4C,Alan Kay|Richard Branson,2,Fiction,2008,392 +Twilight,Stephenie Meyer,mKfDFa8r3pYC,Gretchen Rubin,1,Juvenile Fiction,2009,2560 +Two Essays on Analytical Psychology,Carl Jung,2GdvEouVO0AC,Jordan Peterson,1,Psychology,1992,349 +Ulysses,James Joyce,4jWS7bMZ1XMC,Debbie Millman|Neil Strauss,2,Fiction,2008,1056 +Ulysses S. Grant,Brooks D. Simpson,L-nUBAAAQBAJ,Ryan Holiday,1,Biography & Autobiography,2014,560 +Uncle Tom's Cabin,Harriet Beecher Stowe,rlDaAAAAIAAJ,George Raveling,1,African Americans,1852,391 +Under Saturn's Shadow,James Hollis,ecotAAAAYAAJ,Neil Strauss,1,Psychology,1994,143 +Understanding Comics,Scott McCloud,0XBxpwAACAAJ,Ev Williams|Seth Godin,2,Art,2008,215 +Understanding Exposure,Bryan Peterson,vCDzCQAAQBAJ,David Heinemeier Hansson,1,Photography,2016,176 +Unflinching,Jody Mitic,ev8NDAAAQBAJ,Jocko Willink,1,Biography & Autobiography,2016,256 +Unit 731 - Laboratory of the Devil,Yan-jun Yang,-95YDwAAQBAJ,Jocko Willink,1,History,2018,144 +Unit 731 Testimony,Hal Gold,cprBEpxvexgC,Jocko Willink,1,History,2004,256 +Unlabel,Marc Ecko,4rO2CAAAQBAJ,Chase Jarvis,1,Biography & Autobiography,2015,304 +Unlimited Power,Anthony Robbins,_4YvPwAACAAJ,Dominic D'Agostino|Tim Ferriss,2,Self-actualization (Psychology),2004,448 +Unlocking Energy Innovation,Richard K. Lester,OdhsGXOS3HkC,Bill Gates,1,Science,2011,232 +Unlocking the Gates,Taylor Walsh,uudfxXEmyG0C,Bill Gates,1,Education,2010,320 +Upheaval,Jared Diamond,d9BsDwAAQBAJ,Bill Gates,1,History,2019,512 +Use of Weapons,Iain M. Banks,IqCdnDe9ZOQC,Elon Musk|Stewart Brand,2,Fiction,2008,512 +User Interface Design for Programmers,Joel Spolsky,V0QnCgAAQBAJ,Ev Williams,1,Computers,2008,144 +V for Vendetta,Alan Moore,lsOhPwAACAAJ,Evan Goldberg|Naval Ravikant,2,Comics & Graphic Novels,2005,288 +Vaccine,Arthur Allen,QA1OPgAACAAJ,Bill Gates,1,Medical,2008,523 +Vagabonding,Rolf Potts,JQ0RAQAAIAAJ,Tim Ferriss,1,Travel,2003,205 +Valleys of Death,Bill Richardson,QmA9DwAAQBAJ,Jocko Willink,1,Biography & Autobiography,2011,336 +Value-Added Measures in Education,Douglas N. Harris,ONfzTgEACAAJ,Bill Gates,1,Education,2011,276 +Vasistha's Yoga,Swami Venkatesananda,Ttlg-vUmi-4C,Naval Ravikant,1,Philosophy,2010,780 +Vedanta Treatise,A.Parthasarathy,_MXIAgAAQBAJ,Aubrey Marcus,1,"Body, Mind & Spirit",2013,351 +Venice,Frederic C. Lane,8QAIuQAACAAJ,Stewart Brand,1,Venice,1966,560 +Venture Deals,Brad Feld,V5w5YLPSuY0C,Sophia Amoruso,1,Business & Economics,2011,224 +"Very Good, Jeeves!",P. G. Wodehouse,pyls0vEJ1LQC,Paul Graham,1,Fiction,2009,320 +Views,Roger Dean,gDPQPgAACAAJ,Neil Gaiman,1,,2009,160 +Vinegar Hill,A. Manette Ansay,F_dmQ0HC1bwC,Oprah Winfrey,1,Fiction,2009,272 +Viral Loop,Adam L. Penenberg,cItJElW1u7YC,Keith Rabois|Ryan Hoover,2,Business & Economics,2010,300 +Virus,Marilyn J. Roossinck,s97bDwAAQBAJ,Jonathan Eisen,1,,2020,256 +Voices From Chernobyl,Svetlana Alexievich,7D1Mp57Tn8YC,Caterina Fake,1,History,2006,236 +Wait,Frank Partnoy,9cQUCNnOV_8C,Tom Peters,1,Business & Economics,2012,304 +Waiting for Godot,Samuel Beckett,FGhVMc7gN0EC,Elon Musk,1,Drama,2011,128 +Waking Up,Sam Harris,dmhNAgAAQBAJ,Justin Boreta|Naval Ravikant|Susan Cain,3,"Body, Mind & Spirit",2014,256 +Waking the Tiger,Peter A. Levine,3Y2t1oQEmcoC,Dr. Gabor Maté,1,Psychology,1997,274 +Walden,Henry David Thoreau,B_pKAQAAMAAJ,Emma Watson|Michael Pollan,2,"Authors, American",1878,357 +Walk in Their Shoes,Jim Ziolkowski,6o7HAwAAQBAJ,Seth Godin,1,Biography & Autobiography,2014,272 +Walt Disney,Neal Gabler,-a7FyAA9gMoC,Brian Chesky|DJ Vlad|Marc Andreessen,3,Biography & Autobiography,2006,851 +War And Peace,Leo Tolstoy,LB-OLxQWzPcC,Jordan Peterson|Larry King,2,Fiction,2010,640 +War Nerd,Gary Brecher,nxsmkkIhkqgC,Naval Ravikant,1,History,2009,326 +Warlight,Michael Ondaatje,qxwrDwAAQBAJ,Barack Obama,1,Fiction,2018,304 +Warren Buffett's Ground Rules,Jeremy C. Miller,inX3CgAAQBAJ,Warren Buffett,1,Business & Economics,2016,192 +Washington Black,Esi Edugyan,3J2yDQAAQBAJ,Barack Obama,1,Fiction,2018,432 +Watchmen,Alan Moore,4flntAEACAAJ,Evan Goldberg|Naval Ravikant|Seth Rogen,3,,2019,320 +Way of the Actor,Brian Bates,dRtj7QbZQ0AC,Emma Watson,1,Biography & Autobiography,1988,216 +Way of the Champion,Jerry Lynch,gFTRAgAAQBAJ,Michael Gervais,1,Self-Help,2011,224 +Way of the Peaceful Warrior,Dan Millman,WJPj5uovfbwC,Brian MacKenzie|Greg Norman,2,"Body, Mind & Spirit",2009,392 +Ways of Seeing,John Berger,6nDz8Am4zfEC,Dave Elitch,1,Art,1972,166 +We,Robert A. Johnson,9bqxvw_EEGUC,Dr. Andrew Weil|Emma Watson,2,Psychology,2013,224 +We Are the Nerds,Christine Lagorio-Chafkin,QZJKDwAAQBAJ,Ryan Hoover,1,Social Science,2018,512 +We Were Soldiers Once . . . and Young,Harold G. Moore,RrVV-b_2enkC,Jocko Willink,1,History,2012,453 +We Were the Mulvaneys,Joyce Carol Oates,uidbAAAAMAAJ,Oprah Winfrey,1,Fiction,1996,454 +We Wish to Inform You That Tomorrow We Will be Killed With Our Families,Philip Gourevitch,A7CVCwAAQBAJ,Lisa Ling,1,Genocide,2015,355 +Wealth and Poverty,George Gilder,IdSxwVphRegC,Ben Shapiro,1,Social Science,2012,256 +Weapons of Math Destruction,Cathy O'Neil,CxD-DAAAQBAJ,Tom Peters,1,Big data,2016,259 +Weather of the San Francisco Bay Region,Harold Gilliam,Wb1cks8Qe4IC,Patrick Collison,1,Science,2002,106 +Welcome to Your Brain,Sam Wang,HnVCnpICbu0C,Ray Dalio,1,Self-Help,2011,320 +What Every BODY is Saying,Joe Navarro,IUFQM-6OFEsC,Scott Adams,1,Self-Help,2009,272 +What I Know For Sure,Oprah Winfrey,_qhzAwAAQBAJ,Emma Watson,1,"Body, Mind & Spirit",2014,240 +What I Talk About When I Talk About Running,Haruki Murakami,pMu390crF0EC,Brian Koppelman,1,Biography & Autobiography,2011,192 +What If?,Randall Munroe,tgZIBAAAQBAJ,Astro Teller|Bill Gates,2,Humor,2014,320 +What Is Mathematics?,Herbert Robbins,_kYBqLc5QoQC,Paul Graham,1,Mathematics,1996,566 +What Is Zen?,Norman Fischer,hBPaCwAAQBAJ,Leo Babauta,1,Zen Buddhism,2016,224 +What It Takes,Richard Ben Cramer,djZWFPIatUMC,Ezra Klein,1,Political Science,2011,1060 +What It Takes,Stephen A. Schwarzman,h06qDwAAQBAJ,Eric Schmidt,1,Biography & Autobiography,2019,384 +What Looks Like Crazy On an Ordinary Day,Pearl Cleage,RjdW8PLfPAoC,Oprah Winfrey,1,Fiction,2009,256 +What Makes Sammy Run?,Budd Schulberg,eSbBDWgqcgYC,Brian Koppelman|Ryan Holiday,2,Fiction,2011,352 +What School Could Be,Ted Dintersmith,kViYDwAAQBAJ,Ann Miura-Ko,1,Education,2018,264 +What Should I Do with My Life?,Po Bronson,10QhIe2mvMkC,Ev Williams,1,Business & Economics,2005,436 +What Technology Wants,Kevin Kelly,xbk0DwAAQBAJ,Jason Silva|Stewart Brand,2,Technology & Engineering,2011,406 +What They Don't Teach You at Harvard Business School,Mark H. McCormack,aIu3CwAAQBAJ,Ramit Sethi,1,Business & Economics,2016,163 +What We Ache For,Oriah Mountain Dreamer,nGBxrM1DNpEC,Michael Gervais,1,Religion,2009,240 +What You Do Is Who You Are,Ben Horowitz,PMCQDwAAQBAJ,Marc Andreessen|Vinod Khosla,2,Business & Economics,2019,304 +What is Life?,Erwin Schrodinger,hP9-WIEyv8cC,Naval Ravikant,1,Philosophy,2012,184 +What is Reality?,Ervin Laszlo Ph.D.,3LRSDwAAQBAJ,Stanislav Grof,1,"Body, Mind & Spirit",2016,192 +What the Dormouse Said,John Markoff,EcASDAEACAAJ,Kevin Kelly,1,Business & Economics,2006,310 +When Breath Becomes Air,Paul Kalanithi,93faCwAAQBAJ,Bill Gates,1,Biography & Autobiography,2016,228 +When Einstein Walked with Gödel,Jim Holt,7hE7DwAAQBAJ,Bryan Johnson,1,Science,2018,384 +When Genius Failed,Roger Lowenstein,uwmhAgAAQBAJ,Max Levchin,1,Business & Economics,2014,288 +"When I Say No, I Feel Guilty",Manuel J. Smith,cCRCurzXzugC,Brian Armstrong,1,Self-Help,2011,352 +"When I Stop Talking, You'll Know I'm Dead",Jerry Weintraub,OhfbwSjPtecC,Maria Sharapova,1,Biography & Autobiography,2010,304 +When Nietzsche Wept,Irvin D. Yalom,9_WXDwAAQBAJ,Tim O’Reilly,1,Fiction,2019,320 +When Things Fall Apart,Pema Chodron,sBRYTFo_CQMC,Jerry Colonna|Krista Tippett|Liz Lambert|Tara Brach,4,Religion,2005,185 +When the Wolves Bite,Scott Wapner,6D80DwAAQBAJ,Marc Andreessen,1,Business & Economics,2018,256 +Where Are the Customers' Yachts?,Fred Schwed,mZqGPwAACAAJ,Warren Buffett,1,Business & Economics,2006,208 +Where Good Ideas Come From,Steven Johnson,KsZVI9dfInsC,Bill Gates|Jason Silva|Tony Hsieh,3,Creative thinking,2011,326 +Where Men Win Glory,Jon Krakauer,QSsQwXlOiGkC,Peter Attia,1,Biography & Autobiography,2010,300 +Where the Heart Is,Billie Letts,jJco1wXgc4sC,Oprah Winfrey,1,Fiction,1996,352 +Where the Wild Things Are,Maurice Sendak,M-CocWLBGB4C,Richard Branson,1,Juvenile Fiction,1988,48 +"Wherever You Go, There You Are",Jon Kabat-Zinn,-g-OSXrZeYYC,Rick Rubin|Tristan Harris,2,"Body, Mind & Spirit",1994,278 +"Which Comes First, Cardio or Weights?",Alex Hutchinson,n_IkW7AnzeMC,Dr. Martin Gibala,1,Health & Fitness,2011,336 +While I Was Gone,Sue Miller,0LP8wAEACAAJ,Oprah Winfrey,1,Adultery,2009,288 +Whiplash,Joi Ito,M0dUCwAAQBAJ,George Raveling,1,Business & Economics,2016,288 +White,Bret Easton Ellis,mRRcxQEACAAJ,Keith Rabois,1,,2019,314 +White Heat 25,Marco Pierre White,SZWtoQEACAAJ,Samin Nosrat,1,Cooking,2015,192 +White Oleander,Janet Fitch,SkophXOJL44C,Oprah Winfrey,1,Fiction,2013,400 +Who,Geoff Smart,I7TdFn4bxaAC,Noah Kagan,1,Business & Economics,2008,188 +Who Is Michael Ovitz?,Michael Ovitz,kdpNDwAAQBAJ,Ben Horowitz|Gary Vaynerchuk|Jason Calacanis|Keith Rabois|Marc Andreessen,5,Business & Economics,2018,384 +Who Moved My Cheese?,Spencer Johnson,toxlBwAAQBAJ,Dave Ramsey|Daymond John,2,Business & Economics,2015,96 +Who We Are and How We Got Here,David Reich,uLNSDwAAQBAJ,Naval Ravikant,1,DNA,2018,368 +Who am I?,Steven Reiss,EbOjA5oAsEUC,Ray Dalio,1,Psychology,2002,288 +Who's Teaching Your Children?,Vivian Troen,6gfvAqP9mJgC,Bill Gates,1,Education,2008,240 +Who's in Charge?,Michael S. Gazzaniga,4oG8jwEACAAJ,Ray Dalio,1,Cognitive neuroscience,2016,272 +Whole Earth Discipline,Stewart Brand,RCPpx-cn7A0C,Marc Andreessen|Patrick Collison|Steven Pinker,3,Science,2010,352 +Why America Is Not a New Rome,Vaclav Smil,jkhTtZbdc4sC,Bill Gates,1,History,2010,240 +Why Are We Yelling?,Buster Benson,7SybDwAAQBAJ,Ryan Hoover,1,Self-Help,2019, +Why Buddhism is True,Robert Wright,3QkvDwAAQBAJ,Nick Thompson,1,Philosophy,2017,336 +Why Does College Cost So Much?,Robert B. Archibald,hDskDwAAQBAJ,Bill Gates,1,Business & Economics,2014,289 +Why Don't Students Like School?,Daniel T. Willingham,8SDs8LZl41EC,Bill Gates,1,Education,2009,240 +Why Information Grows,Cesar Hidalgo,J88_CQAAQBAJ,Naval Ravikant,1,Business & Economics,2015,256 +Why Liberalism Failed,Patrick J. Deneen,AESHDwAAQBAJ,Barack Obama,1,Political Science,2019,263 +Why Most Things Fail,Paul Ormerod,WIhZlB86nJwC,Ev Williams,1,Business & Economics,2010,272 +Why Nations Fail,Daron Acemoglu,PLlOCUIAh88C,Bill Gates|Mark Zuckerberg,2,Business & Economics,2012,320 +Why Wages Rise,F. A. Harper,mtl1DwAAQBAJ,Charles Koch,1,Business & Economics,1957,124 +Why We Believe in God(s),J. Anderson Thomson,OwyeCwAAQBAJ,Ray Dalio,1,Religion,2014,144 +Why We Get Fat,Gary Taubes,9mPGg9Pz_3sC,Gretchen Rubin,1,Health & Fitness,2011,267 +Why We Sleep,Matthew Walker,ZlU3DwAAQBAJ,Amanda Palmer|Bill Gates|Keith Rabois,3,Health & Fitness,2017,360 +Why Won't You Apologize?,Harriet Lerner,vlA4DwAAQBAJ,Brené Brown,1,Family & Relationships,2017,208 +Why the Allies Won,Richard Overy,aA-lS2K4hJkC,Paul Graham,1,History,1997,396 +Why the Electoral College Is Bad for America,George C. Edwards III,NyegUKwXX4EC,Ezra Klein,1,Political Science,2005,198 +Why the West Rules--for Now,Ian Morris,bMi1XVXAl48C,Stewart Brand,1,History,2010,608 +Wikinomics,Don Tapscott,mNjB1XEssD4C,Ryan Holiday,1,Business & Economics,2011,300 +Wild,Cheryl Strayed,OSUayFddVccC,Emma Watson|Liz Lambert|Oprah Winfrey|Tim Ferriss,4,Biography & Autobiography,2012,336 +Wild Swans,Jung Chang,0sBu1Fj4Ed0C,Richard Branson,1,Biography & Autobiography,2008,544 +"Will You Please Be Quiet, Please?",Raymond Carver,lRVsCQAAQBAJ,Dave Elitch,1,Fiction,2015,272 +Win Your Case,Gerry Spence,DjRqD_Nt3SQC,Scott Adams,1,Law,2007,304 +"Wind, Sand and Stars",Antoine de Saint-Exupéry,hoIRBgm7ej8C,Edward Norton|Naval Ravikant|Patrick Collison,3,Biography & Autobiography,2010,240 +Wing Leader,Johnnie Johnson,xBVLPgAACAAJ,Paul Graham,1,Fighter pilots,2000,320 +Winners Never Cheat,Jon M. Huntsman,RJphBAAAQBAJ,Glenn Beck,1,Business & Economics,2009,224 +Winners Take All,Anand Giridharadas,CrV8DwAAQBAJ,Tristan Harris|Vinod Khosla,2,Social Science,2019,304 +Winnie-the-Pooh,A. A. Milne,2OisCAAAQBAJ,Dr. Gabor Maté,1,Fiction,2015,70 +Winning,Jack Welch,rppL6KqqVpkC,Ev Williams,1,Business & Economics,2013,384 +Wired,Gary Wolf,1thXPaGwW3IC,Ev Williams,1,Business & Economics,2003,304 +With the Old Breed,E. B. Sledge,2fJe86a3PZAC,Jocko Willink|Paul Graham,2,"Peleliu, Battle of, Palau, 1944",2011,323 +Without Fail,Lee Child,nWuiZY3klAsC,Malcolm Gladwell,1,"Reacher, Jack (Fictitious character)",2011,555 +Without Sanctuary,James Allen,q4faAAAAMAAJ,Jamie Foxx,1,Photography,2000,209 +Wittgenstein's Vienna,Allan Janik,K7xn2owqp-EC,Patrick Collison,1,,2000,287 +Woken Furies,Richard K. Morgan,UInuMty6xAYC,Zooko Wilcox,1,Fiction,2008,576 +Women Who Run with the Wolves,Clarissa Pinkola Estés,9BaI_HL2kakC,Emma Watson,1,Archetype (Psychology),2008,537 +"Women, Fire, and Dangerous Things",George Lakoff,ok6WyDoC1h0C,Matt Mullenweg,1,Language Arts & Disciplines,1990,614 +Wonder,R. J. Palacio,LiNHFPlLIrIC,Gretchen Rubin,1,Juvenile Fiction,2013,328 +Wonderful Tonight,Pattie Boyd,CNhh0TMLmmwC,Taylor Swift,1,Biography & Autobiography,2008,336 +Wooden,John Wooden,F1QQ7ToNyxgC,Ashton Kutcher|Katrín Davíðsdóttir,2,Business & Economics,2005,256 +Wooden Leg,Thomas B. Marquis,dCZvCwAAQBAJ,Jocko Willink,1,Biography & Autobiography,2014,208 +Wool,Hugh Howey,MyIukohIVRwC,Ev Williams,1,Fiction,2013,508 +Words That Work,Frank Luntz,CaSZAAAAQBAJ,Matt Mullenweg|Tim Ferriss|Tristan Harris,3,Language Arts & Disciplines,2007,368 +Words with Power,Northrop Frye,eI4CX_62qFoC,Jordan Peterson,1,Literary Criticism,2008,343 +World Order,Henry Kissinger,NR50AwAAQBAJ,Mark Zuckerberg,1,Political Science,2014,432 +World War 3.0,Ken Auletta,an5PAAAAMAAJ,Keith Rabois,1,Business & Economics,2002,444 +World on the Edge,Lester R. Brown,KQ1dBisp-acC,Bill Gates,1,Political Science,2012,144 +Worth Dying For,Lee Child,QdHNFPwuUpAC,Malcolm Gladwell,1,,2011,513 +Writing My Wrongs,Shaka Senghor,iDbZCwAAQBAJ,Ben Horowitz,1,Biography & Autobiography,2016,268 +Writing Tools,Roy Peter Clark,ufthJ-LMPoQC,Rolf Potts,1,Language Arts & Disciplines,2008,272 +Wuthering Heights,Emily Brontë,KhMYAAAAYAAJ,Jordan Peterson,1,,1858,288 +Xenocide,Orson Scott Card,K9hHPwAACAAJ,Ev Williams,1,Fiction,1996,394 +Yes!,Robert B. Cialdini PhD,EsiaQvHOP6kC,Charlie Munger,1,Business & Economics,2010,314 +You,Michael M. Lombardo,NwwivQEACAAJ,Ray Dalio,1,Business & Economics,1998,549 +You Are Not So Smart,David McRaney,9Oc_hdvqk50C,Terry Crews,1,Philosophy,2012,320 +You Are Not a Gadget,Jaron Lanier,7u7002Bg3rUC,Ryan Holiday,1,Technology & Engineering,2011,223 +You Are the Placebo,Dr. Joe Dispenza,u0FQAwAAQBAJ,Aubrey Marcus,1,"Body, Mind & Spirit",2014,256 +You Can Be a Stock Market Genius,Joel Greenblatt,Egk6rdZUS6MC,Tim Ferriss,1,Business & Economics,2010,304 +You Shall Know Our Velocity,Dave Eggers,51XZlnZ6xYsC,Ev Williams,1,Fiction,2011,368 +You've Got This,Meg Meeker,MusQygEACAAJ,Dave Ramsey,1,Family & Relationships,2018,240 +Your Money or Your Life,Vicki Robin,i3tXDwAAQBAJ,Mr. Money Mustache,1,Business & Economics,2008,328 +"Zen Mind, Beginner's Mind",Shunryu Suzuki,syLKN1q19NgC,Leo Babauta|Sharon Salzberg|Steve Jobs,3,Religion,2010,144 +Zen and the Art of Motorcycle Maintenance,Robert M. Pirsig,gx2ev_vwGKAC,Bryan Johnson|Drew Houston|Ev Williams|Jordan Peterson|Josh Waitzkin|Paul Graham,6,Psychology,2009,560 +Zen in the Art of Archery,Eugen Herrigel,Wo4VAAAAIAAJ,Adam Robinson|Aubrey Marcus|Dave Elitch|Joe Rogan,4,Archery,1953,107 +Zero,Charles Seife,HjXDDwAAQBAJ,Bryan Johnson,1,Mathematics,2019, +Zero Limits,Joe Vitale,2UCWAAAAQBAJ,Aubrey Marcus,1,Business & Economics,2010,256 +Zero To One,Peter Thiel,ZH4oAwAAQBAJ,Dustin Moskovitz|Elon Musk|Eric Weinstein|Keith Rabois|Luis von Ahn|Marc Andreessen|Mark Zuckerberg|Matt Mullenweg|Max Levchin,9,Business & Economics,2014,224 +Zorba the Greek,Nikos Kazantzakis,3eZH7K_E6DoC,Jordan Peterson|Tim Ferriss,2,Fiction,1953,311 +Zucked,Roger McNamee,DzHJDwAAQBAJ,Marc Benioff,1,Political Science,2020,400 +xkcd,Randall Munroe,i5NZAAAAYAAJ,Bill Gates,1,Humor,2010,120 +100 Baggers,Christopher W Mayer,,DJ Vlad,1,,, +100 Secrets of the Art World,Thomas Girst,,Seth Godin,1,,, +36 Lectures in Biology,S.E. Luria,,Eric Weinstein,1,,, +A Collaboration with Nature,Andy Goldsworthy,,Amanda Palmer,1,,, +A Decade of Research,Giuliana ed. Lavendel,,Patrick Collison,1,,, +A Great Leap Forward,Alexander J. Field Ph.D.,,Patrick Collison,1,,, +A Literary Companion to Science,Walter Gratzer,,Eric Weinstein,1,,, +A Magic Web,Christian Ziegler,,Ray Dalio,1,,, +A Soldier's Journal,James Bollich,,Jocko Willink,1,,, +About Face,Colonel David H. Hackworth,,Jocko Willink|Tim Ferriss,2,,, +Advances in Programming and Non-Numerical Computation,L Fox,,Alan Kay,1,,, +An Atlas of Atherosclerosis Progression and Regression,Herbert C. Stary,,Peter Attia,1,,, +Arctica,Sebastian Copeland,,Richard Branson,1,,, +Art of the Living Dead,Adrian Hanft,,Naval Ravikant,1,,, +Base Building,Paul Carter,,Charles Poliquin,1,,, +Brahma,Ralph Waldo Emerson,,Naval Ravikant,1,,, +Charlotte's Web,E. B White,,Peter Attia|Taylor Swift,2,,, +Cocktail Techniques,Kazuo Uyeda,,Joshua Skenes,1,,, +Colossus,Jack Beatty,,Paul Graham,1,,, +Complete Guide to Dumbbell Training,Fred Hatfield PhD,,Charles Poliquin,1,,, +Computer Lib,Theodore H. Nelson,,Patrick Collison,1,,, +Corelli's Mandolin,Louis de Bernieres,,Lisa Ling,1,,, +Cutting Through Spiritual Materialism,Chogyam Trungpa,,Steve Jobs,1,,, +Dear Stranger,Various,,Richard Branson,1,,, +Encyclopedia of Cosmology,Norriss S. Hetherington,,Eric Weinstein,1,,, +Ending the War on Drugs,Various,,Richard Branson,1,,, +Ernest Hemingway on Writing,Larry W. Phillips,,Josh Waitzkin|Matt Mullenweg,2,,, +Essential Relativity,Wolfgang Rindler,,Eric Weinstein,1,,, +Faces of the Enemy,Sam Keen,,Dr. Phil Zimbardo,1,,, +Fight Cancer with a Ketogenic Diet,Ellen Davis MS,,Dominic D'Agostino,1,,, +Flow,Mihaly Czikzentmihalyi,,Greg McKeown,1,,, +Global Catastrophic Risks,Nick Bostrom,,Patrick Collison,1,,, +I Seem To Be a Verb,R. Buckminster Fuller,,Chris Sacca,1,,, +Iceland In All Its Splendour,Unnur Jökulsdóttir,,Anníe Mist Þórisdóttir,1,,, +If I Could Tell You Just One Thing...,Richard Reed,,Richard Branson,1,,, +Itinerarium Regis Ricardi,T. M. Stead,,Paul Graham,1,,, +Less Is More,Goldian VandenBroeck,,Tim Ferriss,1,,, +Lou Gehrig,Frank Graham,,Larry King,1,,, +Mathematician's Delight,W. Sawyer,,Paul Graham,1,,, +Maurice's Strategikon,George T. Dennis,,Jocko Willink,1,,, +Merchant Princes,Leon A. Harris,,Malcolm Gladwell,1,,, +MiTek,Jim Healey,,Warren Buffett,1,,, +Mind Over Muscle,Jigoro Kano,,Jocko Willink,1,,, +Mistakes Were Made (But Not by Me),Caroll Tavris,,Peter Attia,1,,, +Necker,Russell James,,Richard Branson,1,,, +Never Met a Man I Didn't Like,Will Rogers,,David Allen,1,,, +Nyanko Aruaru,Rinrin Yamano,,Marie Kondo,1,,, +Paco et Vivaldi,Magali Le Huche,,Neil Gaiman,1,,, +Poor Charlie's Almanack,Charlie Munger,,Bill Gates|Daniel Ek|Drew Houston|Marc Andreessen|Naval Ravikant|Patrick Collison|Ramit Sethi|Tim Ferriss|Warren Buffett,9,,, +Psych,Judd Biasiotto,,Pavel Tsatsouline,1,,, +Recession Proof Graduate,Charlie Hoehn,,Noah Kagan,1,,, +Resurrection from the Underground,Rene Girard,,Peter Thiel,1,,, +Rework,David “DHH” Heinemeier Hansson,,Jeff Bezos|Mark Cuban|Seth Godin|Tim Ferriss|Tom Peters|Tony Hsieh,6,,, +Rissa Kerguelen,F. M Busby,,Tim O’Reilly,1,,, +Shape Up,Ryan Singer,,Ryan Hoover,1,,, +Shelter Island II,Roman Jackiw,,Eric Weinstein,1,,, +Start.,Jon Acuff,,Dave Ramsey,1,,, +Startups,Chris Dixon,,Brian Armstrong,1,,, +Steel My Soldiers' Hearts,Col. David H. Hackworth,,Jocko Willink,1,,, +Sun Rises in the Evening,Osho,,Naval Ravikant,1,,, +Sunset at Blandings,P.G. Wodehouse,,Paul Graham,1,,, +That Motel Weekend,James Donner,,David Lynch,1,,, +The $12 Million Stuffed Shark,Donald N. Thompson,,Vinod Khosla,1,,, +The 4-Hour Body,Tim Ferriss,,Bryan Callen|Caterina Fake|Jon Favreau|Mark Hart,4,,, +The Beast That Crouches At The Door,Rabbi David Fohrman,,Ben Shapiro,1,,, +The Conquest of Gaul,Jane P. Gardner,,Paul Graham,1,,, +The Diamond Sutra and The Sutra of Hui-neng,Wong Mou-Lam,,Steve Jobs,1,,, +The Dual Economy,RT Averitt,,Paul Graham,1,,, +The Geometric Universe,S. A. Huggett,,Eric Weinstein,1,,, +The Great CEO Within,Matt Mochary,,Ryan Hoover,1,,, +The Holy Teaching of Vimalakirti,Vimalakirti,,Josh Waitzkin,1,,, +The Ketogenic Diet for Type 1 Diabetes,Ellen Davis MS,,Dominic D'Agostino,1,,, +The Living Gita,Sri Swami Satchidananda,,Morgan Spurlock,1,,, +The Merck Manual Home Health Handbook,Robert Porter,,Stewart Brand,1,,, +The Nautilus Bulletins,Dr Alan Stuart Radley,,Tim Ferriss,1,,, +"The Norton Anthology of Modern and Contemporary Poetry, Volume 1",Jahan Ramazani Ph.D.,,Caterina Fake,1,,, +The One Sentence Persuasion Course,Blair Warren,,Scott Adams,1,,, +The Organ-Builder,Francois Bedos de Celles,,Alan Kay,1,,, +The Past From Above,Charlotte Trümpler,,Stewart Brand,1,,, +The Pattern On The Stone,Danny Hillis,,Stewart Brand,1,,, +The Penguin Russian Course,J. L. I. Fennell,,Eric Weinstein,1,,, +The Sesame Street Cookbook,Robert Dennis,,Samin Nosrat,1,,, +The Time Paradox,Dr. Philip Zimbardo,,Derek Sivers,1,,, +The Toad and the Jaguar a Field Report of Underground Research on a Visionary Medicine,Ralph Metzner,,Stanislav Grof,1,,, +The pmarca Blog Archives,Marc Andreessen,,Keith Rabois,1,,, +Things Hidden Since the Foundation of the World,Rene Girard,,Eric Weinstein|Peter Thiel,2,,, +Titan,Orson Scott Card,,Charlie Munger|Paul Graham|Ryan Holiday,3,,, +"Tlon, Uqbar, Orbis Tertius",Jorge Luis Borges,,Naval Ravikant,1,,, +"Towns, Villages and Countryside of Celtic Europe",Francoise Audouze,,Paul Graham,1,,, +Tragedy And Comedy,Walter Kerr,,Ben Shapiro,1,,, +Trespass,Aimee Nezhukumatathil,,Rolf Potts,1,,, +Tribe of Mentors,Tim Ferriss,,Tony Robbins,1,,, +Wheels for the World,Douglas G. Brinkley,,Paul Graham,1,,, +Work Hard. Be Nice.,Jay Mathews,,Bill Gates,1,,,