-
Notifications
You must be signed in to change notification settings - Fork 3
/
api.json
1536 lines (1536 loc) · 113 KB
/
api.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"title": "Love Triangle",
"authors": [
"Matt Parker"
],
"publisher": "Random House",
"publishedDate": "2024-06-20",
"description": "Explore the life-changing magic of trigonometry with Matt Parker, stand-up mathematician and No. 1 bestselling author of Humble Pi Why can no two people ever see the same rainbow? What happens when you pull a pop song apart into pure sine waves and play it back on a piano? Why does the wake behind a duck always form an angle of exactly 39 degrees? And what did mathematicians have to do with the great pig stampede of 2012? The answer to each of these questions can be found in the triangle. In Love Triangle, stand-up comedian, ex-maths teacher and Sunday Times number one bestselling author Matt Parker is on a mission to prove why we should all show a lot more love for triangles, along with the useful trigonometry and geometry they enable. To make his point, he uses triangles to create his own digital avatar, survive a harrowing motorcycle ride, cut a sandwich into three equal parts, and measure tall buildings while wearing silly shoes. But soon these hare-brained experiments begin to reveal a genuinely important truth: triangles are the hidden pattern beneath the surface of the contemporary world, used in everything from GPS to CGI via Spotify streaming, the play button and your best mate’s triangle tattoo. Join Matt Parker as he demonstrates why there’s more to triangles than Pythagoras and SOHCAHTOA. Triangles are everything and everything is triangles.",
"image": "http://books.google.com/books/content?id=6j6lEAAAQBAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api",
"language": "en",
"categories": [
"Mathematics"
],
"pageCount": 213,
"isbn10": "0141996196",
"isbn13": "9780141996196",
"googleBooks": {
"id": "6j6lEAAAQBAJ",
"preview": "http://books.google.com/books?id=6j6lEAAAQBAJ&dq=intitle:Love+Triangle+by+Matt+Parker&hl=&cd=1&source=gbs_api",
"info": "http://books.google.com/books?id=6j6lEAAAQBAJ&dq=intitle:Love+Triangle+by+Matt+Parker&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/Love_Triangle.html?hl=&id=6j6lEAAAQBAJ"
},
"issueNumber": 74,
"progressPercent": 0,
"state": "want-to-read",
"startedAt": "2024-08-20T07:12:57.000Z"
},
{
"title": "Feel-Good Productivity",
"authors": [
"Ali Abdaal"
],
"publisher": "Celadon Books",
"publishedDate": "2023-12-26",
"description": "The secret to productivity isn’t discipline. It’s joy. We think that productivity is all about hard work. That the road to success is lined with endless frustration and toil. But what if there’s another way? Dr Ali Abdaal – the world's most-followed productivity expert – has uncovered an easier and happier path to success. Drawing on decades of psychological research, he has found that the secret to productivity and success isn't grind – it's feeling good. If you can make your work feel good, then productivity takes care of itself. In this revolutionary book, Ali reveals how the science of feel-good productivity can transform your life. He introduces the three hidden 'energisers' that underpin enjoyable productivity, the three 'blockers' we must overcome to beat procrastination, and the three 'sustainers' that prevent burnout and help us achieve lasting fulfillment. He recounts the inspiring stories of founders, Olympians, and Nobel-winning scientists who embody the principles of Feel-Good Productivity. And he introduces the simple, actionable changes that you can use to achieve more and live better, starting today. Armed with Ali’s insights, you won’t just accomplish more. You’ll feel happier and more fulfilled along the way.",
"image": "http://books.google.com/books/content?id=es2iEAAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"categories": [
"Self-Help"
],
"pageCount": 176,
"isbn10": "1250865050",
"isbn13": "9781250865052",
"googleBooks": {
"id": "es2iEAAAQBAJ",
"preview": "http://books.google.com/books?id=es2iEAAAQBAJ&printsec=frontcover&dq=intitle:Feel-Good+Productivity+by+Ali+Abdaal&hl=&cd=1&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=es2iEAAAQBAJ&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=es2iEAAAQBAJ"
},
"issueNumber": 73,
"progressPercent": 0,
"state": "reading",
"startedAt": "2024-08-20T07:09:50.000Z"
},
{
"title": "The Other Pandemic",
"authors": [
"James Ball"
],
"publishedDate": "2024-07-04",
"description": "Pulitzer Prize-winning investigative journalist James Ball takes us into the depths of the internet to trace the origins and rapid ascent of QAnon, the movement that mutated from a niche online conspiracy theory into the world's first digital pandemic.Imagine a deadly pathogen that, once created, could infect any person in any part of the globe within seconds. No need to wait for travellers, trains, or air traffic to spread it, all you need is an internet connection. In this gripping investigation, Pulitzer Prize winner James Ball decodes the cryptic language of the online right and with a surgeon's precision tracks the spread of QAnon, the world's first digital pandemic.QAnon began as an internet community dedicated to supporting President Trump and intent on outing a global cabal of human traffickers. A short, cryptic message posted by an anonymous user to a niche internet forum in 2017 was the spark that ignited a global movement. What started as a macabre game of virtual make-believe quickly spiralled into the spread of virulently hateful, dangerous messaging - which turned into tragic, violent actions.Incoherent, chaotic, free from agendas: QAnon is a one-size-fits all cult conspiracy. From a standoff at the Hoover Dam, to the storming of the U.S. Capitol on 6 January 2021, to protesting COVID-19 lockdowns, this digital pandemic has spread globally and shows no signs of stopping. In The Other Pandemic Ball takes us into the niche pathways through which these digital pathogens spread, mutate and infect people all across the globe - but he also argues that the prognosis doesn't have to be dire. He shows us that it is possible to treat and cure this virus in order to build up our digital immune systems, and be better prepared to survive the next wave.*A Financial Times Book to Read in 2023*",
"image": "http://books.google.com/books/content?id=iFY60AEACAAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api",
"language": "en",
"pageCount": 0,
"isbn10": "1526642514",
"isbn13": "9781526642516",
"googleBooks": {
"id": "iFY60AEACAAJ",
"preview": "http://books.google.com/books?id=iFY60AEACAAJ&dq=intitle:The+Other+Pandemic+by+James+Ball&hl=&cd=1&source=gbs_api",
"info": "http://books.google.com/books?id=iFY60AEACAAJ&dq=intitle:The+Other+Pandemic+by+James+Ball&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/The_Other_Pandemic.html?hl=&id=iFY60AEACAAJ"
},
"issueNumber": 69,
"progressPercent": 0,
"state": "completed",
"startedAt": "2024-08-03T11:03:15.000Z",
"completedAt": "2024-08-19T12:58:12.000Z",
"timeToComplete": 1389297000,
"timeToCompleteFormatted": "2 weeks"
},
{
"title": "Ultra-Processed People",
"authors": [
"Chris van Tulleken"
],
"publisher": "Random House",
"publishedDate": "2023-04-27",
"description": "NOW WITH TWO BONUS CHAPTERS INCLUDING AN FAQ THE NUMBER ONE SUNDAY TIMES BESTSELLER FORTNUM & MASON'S DEBUT FOOD BOOK OF THE YEAR 2024 A TIMES AND SUNDAY TIMES SCIENCE BOOK OF THE YEAR 2023 AN ECONOMIST, DAILY MAIL, GOOD HOUSEKEEPING and AMAZON BEST BOOK OF THE YEAR 2023 SHORTLISTED FOR WATERSTONE'S BOOK OF THE YEAR 2023 Chosen by the SUNDAY TIMES, GUARDIAN, FT and DAILY MAIL as one of their BEST SUMMER BOOKS OF 2023 'If you only read one diet or nutrition book in your life, make it this one' Bee Wilson 'A devastating, witty and scholarly destruction of the shit food we eat and why' Adam Rutherford --- An eye-opening investigation into the science, economics, history and production of ultra-processed food. It's not you, it's the food. We have entered a new 'age of eating' where most of our calories come from an entirely novel set of substances called Ultra-Processed Food, food which is industrially processed and designed and marketed to be addictive. But do we really know what it's doing to our bodies? Join Chris in his travels through the world of food science and a UPF diet to discover what's really going on. Find out why exercise and willpower can't save us, and what UPF is really doing to our bodies, our health, our weight, and the planet (hint: nothing good). For too long we've been told we just need to make different choices, when really we're living in a food environment that makes it nigh-on impossible. So this is a book about our rights. The right to know what we eat and what it does to our bodies and the right to good, affordable food. Number 1 Sunday Times bestseller, August 2023",
"image": "http://books.google.com/books/content?id=zvVsEAAAQBAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api",
"language": "en",
"averageRating": 5,
"ratingsCount": 1,
"categories": [
"Health & Fitness"
],
"pageCount": 277,
"isbn10": "1529160235",
"isbn13": "9781529160239",
"googleBooks": {
"id": "zvVsEAAAQBAJ",
"preview": "http://books.google.com/books?id=zvVsEAAAQBAJ&dq=intitle:Ultra-Processed+People+by+Chris+van+Tulleken&hl=&cd=2&source=gbs_api",
"info": "http://books.google.com/books?id=zvVsEAAAQBAJ&dq=intitle:Ultra-Processed+People+by+Chris+van+Tulleken&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/Ultra_Processed_People.html?hl=&id=zvVsEAAAQBAJ"
},
"issueNumber": 70,
"progressPercent": 0,
"state": "want-to-read",
"startedAt": "2024-08-03T11:03:45.000Z"
},
{
"title": "Why the Dutch are Different",
"authors": [
"Ben Coates"
],
"publishedDate": "2015",
"description": "In the first book to consider the hidden history of the Netherlands from a modern perspective, author Ben Coates explores the length and breadth of his adopted homeland and discovers why one of the world's smallest countries is so fascinating and significant. It is a self-made country, the Dutch national character shaped by the ongoing battle to keep the water out, its love of dairy and beer, its attitude towards nature, and its famous tolerance. Ben Coates investigates what make the Dutch, Dutch, why the Netherlands is much more than Holland, and why the color orange is so important. Along the way he reveals why they are the world's tallest people, and manage to be richer than almost everyone else despite working far less. He also discovers a country which is changing fast, with the Dutch now questioning many of the liberal policies which made their nation famous. A personal portrait of a fascinating people, a sideways history and an entertaining travelogue, Why The Dutch are Different is the story of an Englishman who went Dutch, and loved it. Ben Coates has worked at various times as a political advisor, corporate speechwriter, lobbyist and aid worker. Ben has written articles for numerous publications including the Guardian, Financial Times, and Huffington Post. He currently lives in Rotterdam with his Dutch wife and works as an advisor for The One Acre Fund, an international charity.",
"image": "http://books.google.com/books/content?id=evWyAQAACAAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api",
"language": "en",
"categories": [
"BIOGRAPHY & AUTOBIOGRAPHY"
],
"isbn10": "1473653231",
"isbn13": "9781473653238",
"googleBooks": {
"id": "evWyAQAACAAJ",
"preview": "http://books.google.com/books?id=evWyAQAACAAJ&dq=intitle:Why+the+Dutch+Are+Different+by+Ben+Coates&hl=&cd=1&source=gbs_api",
"info": "http://books.google.com/books?id=evWyAQAACAAJ&dq=intitle:Why+the+Dutch+Are+Different+by+Ben+Coates&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/Why_the_Dutch_are_Different.html?hl=&id=evWyAQAACAAJ"
},
"issueNumber": 68,
"progressPercent": 0,
"state": "want-to-read",
"startedAt": "2024-08-03T11:02:53.000Z"
},
{
"title": "Can't Hurt Me",
"authors": [
"David Goggins"
],
"publishedDate": "2020-03-10",
"description": "For David Goggins, childhood was a nightmare - poverty, prejudice, and physical abuse colored his days and haunted his nights. But through self-discipline, mental toughness, and hard work, Goggins transformed himself from a depressed, overweight young man with no future into a U.S. Armed Forces icon and one of the world's top endurance athletes. The only man in history to complete elite training as a Navy SEAL, Army Ranger, and Air Force Tactical Air Controller, he went on to set records in numerous endurance events, inspiring Outside magazine to name him The Fittest (Real) Man in America. In this curse-word-free edition of Can't Hurt Me, he shares his astonishing life story and reveals that most of us tap into only 40% of our capabilities. Goggins calls this The 40% Rule, and his story illuminates a path that anyone can follow to push past pain, demolish fear, and reach their full potential.",
"image": "http://books.google.com/books/content?id=i-VtzQEACAAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api",
"language": "en",
"averageRating": 4.5,
"ratingsCount": 4,
"pageCount": 364,
"isbn10": "1544507852",
"isbn13": "9781544507859",
"googleBooks": {
"id": "i-VtzQEACAAJ",
"preview": "http://books.google.com/books?id=i-VtzQEACAAJ&dq=intitle:Can%27t+Hurt+Me+by+David+Goggins&hl=&cd=2&source=gbs_api",
"info": "http://books.google.com/books?id=i-VtzQEACAAJ&dq=intitle:Can%27t+Hurt+Me+by+David+Goggins&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/Can_t_Hurt_Me.html?hl=&id=i-VtzQEACAAJ"
},
"issueNumber": 53,
"progressPercent": 0,
"state": "completed",
"startedAt": "2022-10-03T14:15:35.000Z",
"completedAt": "2024-05-02T14:28:34.000Z",
"timeToComplete": 49853579000,
"timeToCompleteFormatted": "1 year"
},
{
"title": "Never Split the Difference",
"authors": [
"Chris Voss",
"Tahl Raz"
],
"publisher": "HarperCollins",
"publishedDate": "2016-05-17",
"description": "A former international hostage negotiator for the FBI offers a new, field-tested approach to high-stakes negotiations—whether in the boardroom or at home. After a stint policing the rough streets of Kansas City, Missouri, Chris Voss joined the FBI, where his career as a hostage negotiator brought him face-to-face with a range of criminals, including bank robbers and terrorists. Reaching the pinnacle of his profession, he became the FBI’s lead international kidnapping negotiator. Never Split the Difference takes you inside the world of high-stakes negotiations and into Voss’s head, revealing the skills that helped him and his colleagues succeed where it mattered most: saving lives. In this practical guide, he shares the nine effective principles—counterintuitive tactics and strategies—you too can use to become more persuasive in both your professional and personal life. Life is a series of negotiations you should be prepared for: buying a car, negotiating a salary, buying a home, renegotiating rent, deliberating with your partner. Taking emotional intelligence and intuition to the next level, Never Split the Difference gives you the competitive edge in any discussion.",
"image": "http://books.google.com/books/content?id=RmdqCgAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 5,
"ratingsCount": 1,
"categories": [
"Business & Economics"
],
"pageCount": 203,
"isbn10": "0062407813",
"isbn13": "9780062407818",
"googleBooks": {
"id": "RmdqCgAAQBAJ",
"preview": "http://books.google.com/books?id=RmdqCgAAQBAJ&printsec=frontcover&dq=intitle:Never+Split+the+Difference+by+Christopher+Voss+and+Tahl+Raz&hl=&cd=1&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=RmdqCgAAQBAJ&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=RmdqCgAAQBAJ"
},
"issueNumber": 67,
"progressPercent": 0,
"state": "completed",
"startedAt": "2024-03-24T15:28:15.000Z",
"completedAt": "2024-03-27T13:44:38.000Z",
"timeToComplete": 252983000,
"timeToCompleteFormatted": "2 days"
},
{
"title": "Rework",
"authors": [
"Jason Fried",
"David Heinemeier Hansson"
],
"publisher": "Crown Currency",
"publishedDate": "2010-03-09",
"description": "Rework shows you a better, faster, easier way to succeed in business. Most business books give you the same old advice: Write a business plan, study the competition, seek investors, yadda yadda. If you're looking for a book like that, put this one back on the shelf. Read it and you'll know why plans are actually harmful, why you don't need outside investors, and why you're better off ignoring the competition. The truth is, you need less than you think. You don't need to be a workaholic. You don't need to staff up. You don't need to waste time on paperwork or meetings. You don't even need an office. Those are all just excuses. What you really need to do is stop talking and start working. This book shows you the way. You'll learn how to be more productive, how to get exposure without breaking the bank, and tons more counterintuitive ideas that will inspire and provoke you. With its straightforward language and easy-is-better approach, Rework is the perfect playbook for anyone who’s ever dreamed of doing it on their own. Hardcore entrepreneurs, small-business owners, people stuck in day jobs they hate, victims of \"downsizing,\" and artists who don’t want to starve anymore will all find valuable guidance in these pages.",
"image": "http://books.google.com/books/content?id=U77um_h_dgcC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 4,
"ratingsCount": 20,
"categories": [
"Business & Economics"
],
"pageCount": 290,
"isbn10": "0307463761",
"isbn13": "9780307463760",
"googleBooks": {
"id": "U77um_h_dgcC",
"preview": "http://books.google.com/books?id=U77um_h_dgcC&printsec=frontcover&dq=intitle:Rework+by+David+Heinemeier+Hansson+and+Jason+Fried&hl=&cd=1&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=U77um_h_dgcC&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=U77um_h_dgcC"
},
"issueNumber": 66,
"progressPercent": 0,
"state": "completed",
"startedAt": "2024-03-20T13:54:03.000Z",
"completedAt": "2024-03-24T15:26:29.000Z",
"timeToComplete": 351146000,
"timeToCompleteFormatted": "4 days"
},
{
"title": "Bad Feminist",
"authors": [
"Roxane Gay"
],
"publisher": "Harper Perennial",
"publishedDate": "2014-08-05",
"description": "From the author of Hunger: A Memoir of (My) Body, the New York Times Bestseller and Best Book of the Year at NPR, the Boston Globe, Newsweek, and many more A collection of essays spanning politics, criticism, and feminism from one of the most-watched young cultural observers of her generation, Roxane Gay. “Pink is my favorite color. I used to say my favorite color was black to be cool, but it is pink—all shades of pink. If I have an accessory, it is probably pink. I read Vogue, and I’m not doing it ironically, though it might seem that way. I once live-tweeted the September issue.” In these funny and insightful essays, Roxane Gay takes us through the journey of her evolution as a woman (Sweet Valley High) of color (The Help) while also taking readers on a ride through culture of the last few years (Girls, Django in Chains) and commenting on the state of feminism today (abortion, Chris Brown). The portrait that emerges is not only one of an incredibly insightful woman continually growing to understand herself and our society, but also one of our culture. Bad Feminist is a sharp, funny, and spot-on look at the ways in which the culture we consume becomes who we are, and an inspiring call-to-arms of all the ways we still need to do better, coming from one of our most interesting and important cultural critics.",
"image": "http://books.google.com/books/content?id=Gd6CvgEACAAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api",
"language": "en",
"averageRating": 3.5,
"ratingsCount": 53,
"categories": [
"Social Science"
],
"pageCount": 336,
"isbn10": "0062282719",
"isbn13": "9780062282712",
"googleBooks": {
"id": "Gd6CvgEACAAJ",
"preview": "http://books.google.com/books?id=Gd6CvgEACAAJ&dq=intitle:Bad+Feminist+by+Roxane+Gay&hl=&cd=1&source=gbs_api",
"info": "http://books.google.com/books?id=Gd6CvgEACAAJ&dq=intitle:Bad+Feminist+by+Roxane+Gay&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/Bad_Feminist.html?hl=&id=Gd6CvgEACAAJ"
},
"issueNumber": 51,
"progressPercent": 0,
"state": "completed",
"startedAt": "2022-09-22T18:47:24.000Z",
"completedAt": "2024-03-14T15:57:01.000Z",
"timeToComplete": 46559377000,
"timeToCompleteFormatted": "1 year"
},
{
"title": "Why We Sleep",
"authors": [
"Matthew Walker"
],
"publisher": "Simon and Schuster",
"publishedDate": "2017-10-03",
"description": "\"Sleep is one of the most important but least understood aspects of our life, wellness, and longevity ... An explosion of scientific discoveries in the last twenty years has shed new light on this fundamental aspect of our lives. Now ... neuroscientist and sleep expert Matthew Walker gives us a new understanding of the vital importance of sleep and dreaming\"--Amazon.com.",
"image": "http://books.google.com/books/content?id=ZlU3DwAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 4.5,
"ratingsCount": 2,
"categories": [
"Health & Fitness"
],
"pageCount": 368,
"isbn10": "1501144316",
"isbn13": "9781501144318",
"googleBooks": {
"id": "ZlU3DwAAQBAJ",
"preview": "http://books.google.com/books?id=ZlU3DwAAQBAJ&printsec=frontcover&dq=intitle:Why+We+Sleep+by+Matthew+Walker&hl=&cd=1&source=gbs_api",
"info": "http://books.google.com/books?id=ZlU3DwAAQBAJ&dq=intitle:Why+We+Sleep+by+Matthew+Walker&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/Why_We_Sleep.html?hl=&id=ZlU3DwAAQBAJ"
},
"issueNumber": 63,
"progressPercent": 0,
"state": "completed",
"startedAt": "2023-10-13T20:37:46.000Z",
"completedAt": "2024-03-05T14:10:35.000Z",
"timeToComplete": 12418369000,
"timeToCompleteFormatted": "4 months"
},
{
"title": "Trillion Dollar Coach",
"authors": [
"Eric Schmidt",
"Jonathan Rosenberg",
"Alan Eagle"
],
"publisher": "HarperCollins",
"publishedDate": "2019-04-16",
"description": "#1 Wall Street Journal Bestseller New York Times Bestseller USA Today Bestseller The team behind How Google Works returns with management lessons from legendary coach and business executive, Bill Campbell, whose mentoring of some of our most successful modern entrepreneurs has helped create well over a trillion dollars in market value. Bill Campbell played an instrumental role in the growth of several prominent companies, such as Google, Apple, and Intuit, fostering deep relationships with Silicon Valley visionaries, including Steve Jobs, Larry Page, and Eric Schmidt. In addition, this business genius mentored dozens of other important leaders on both coasts, from entrepreneurs to venture capitalists to educators to football players, leaving behind a legacy of growing companies, successful people, respect, friendship, and love after his death in 2016. Leaders at Google for over a decade, Eric Schmidt, Jonathan Rosenberg, and Alan Eagle experienced firsthand how the man fondly known as Coach Bill built trusting relationships, fostered personal growth—even in those at the pinnacle of their careers—inspired courage, and identified and resolved simmering tensions that inevitably arise in fast-moving environments. To honor their mentor and inspire and teach future generations, they have codified his wisdom in this essential guide. Based on interviews with over eighty people who knew and loved Bill Campbell, Trillion Dollar Coach explains the Coach’s principles and illustrates them with stories from the many great people and companies with which he worked. The result is a blueprint for forward-thinking business leaders and managers that will help them create higher performing and faster moving cultures, teams, and companies.",
"image": "http://books.google.com/books/content?id=nmdzDwAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"categories": [
"Business & Economics"
],
"pageCount": 240,
"isbn10": "006283925X",
"isbn13": "9780062839251",
"googleBooks": {
"id": "nmdzDwAAQBAJ",
"preview": "http://books.google.com/books?id=nmdzDwAAQBAJ&printsec=frontcover&dq=intitle:Trillion+Dollar+Coach+by+Bill+Campbell&hl=&cd=1&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=nmdzDwAAQBAJ&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=nmdzDwAAQBAJ"
},
"issueNumber": 64,
"progressPercent": 0,
"state": "want-to-read",
"startedAt": "2023-10-28T17:13:46.000Z"
},
{
"title": "Doglapan",
"authors": [
"Ashneer Grover"
],
"publisher": "Penguin Random House India Private Limited",
"publishedDate": "2022-12-16",
"description": "This is the unfettered story of Ashneer Grover-the favourite and misunderstood poster boy of Start-up India. Raw, gut-wrenching in its honesty and completely from the heart, this is storytelling at its finest. A young boy with a 'refugee' tag growing up in Delhi's Malviya Nagar outpaces his circumstances by becoming a rank-holder at the pinnacle of academic excellence in India-IIT Delhi. He goes on to do an MBA from the hallowed halls of IIM Ahmedabad, builds a career as an investment banker at Kotak Investment Banking and AmEx, and is pivotal in the making of two unicorns-Grofers, as CFO, and BharatPe, as co-founder. As a judge on the popular TV show Shark Tank India, Ashneer becomes a household name even as his life turns upside down. Controversy, media spotlight, garrulous social media chatter descend, making it difficult to distinguish fact from fiction.",
"image": "http://books.google.com/books/content?id=LimgEAAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 4,
"ratingsCount": 1,
"categories": [
"Biography & Autobiography"
],
"pageCount": 185,
"isbn10": "9354928706",
"isbn13": "9789354928703",
"googleBooks": {
"id": "LimgEAAAQBAJ",
"preview": "http://books.google.com/books?id=LimgEAAAQBAJ&pg=PT6&dq=intitle:Doglapan+by+Ashneer+Grover&hl=&cd=2&source=gbs_api",
"info": "http://books.google.com/books?id=LimgEAAAQBAJ&dq=intitle:Doglapan+by+Ashneer+Grover&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/Doglapan.html?hl=&id=LimgEAAAQBAJ"
},
"issueNumber": 62,
"progressPercent": 0,
"state": "completed",
"startedAt": "2023-04-24T06:16:32.000Z",
"completedAt": "2023-10-13T20:18:17.000Z",
"timeToComplete": 14911305000,
"timeToCompleteFormatted": "5 months"
},
{
"title": "Sum",
"authors": [
"David Eagleman"
],
"publisher": "Vintage",
"publishedDate": "2009-02-10",
"description": "At once funny, wistful and unsettling, Sum is a dazzling exploration of unexpected afterlives—each presented as a vignette that offers a stunning lens through which to see ourselves in the here and now. In one afterlife, you may find that God is the size of a microbe and unaware of your existence. In another version, you work as a background character in other people’s dreams. Or you may find that God is a married couple, or that the universe is running backward, or that you are forced to live out your afterlife with annoying versions of who you could have been. With a probing imagination and deep understanding of the human condition, acclaimed neuroscientist David Eagleman offers wonderfully imagined tales that shine a brilliant light on the here and now.",
"image": "http://books.google.com/books/content?id=-cjWiI8DEywC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 4,
"ratingsCount": 54,
"categories": [
"Fiction"
],
"pageCount": 128,
"isbn10": "0307378020",
"isbn13": "9780307378026",
"googleBooks": {
"id": "-cjWiI8DEywC",
"preview": "http://books.google.com/books?id=-cjWiI8DEywC&printsec=frontcover&dq=intitle:Sum+by+Stephen+Fry&hl=&cd=1&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=-cjWiI8DEywC&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=-cjWiI8DEywC"
},
"issueNumber": 59,
"progressPercent": 0,
"state": "completed",
"startedAt": "2023-04-17T15:35:21.000Z",
"completedAt": "2023-04-21T11:32:11.000Z",
"timeToComplete": 331010000,
"timeToCompleteFormatted": "3 days"
},
{
"title": "Girls Just Wanna Have Funds",
"authors": [
"Camilla Falkenberg",
"Emma Due Bitz",
"Anna-Sophie Hartvigsen"
],
"publisher": "Penguin",
"publishedDate": "2023-01-17",
"description": "Start your journey to financial success with Female Invest's guide for safe, smart, and sustainable investing. This is an empowering and uplifting money manifesto, aiming to change the tides of financial power. Are you one of the 68% of women worldwide earning less than a man doing the same job? Then you need to make your money work harder, starting now. In Girls Just Want to Have Funds, the trio of founders behind the global movement Female Invest bring you an empowering five-step guide with a straight-talking message: you don't have to be an expert or a millionaire to make money. Simply equip yourself with the easy-to-follow golden rules and tools of three finance gurus to find your confidence and open a whole new world of opportunities. Whether you want to master the art of setting realistic goals, demystify financial jargon and markets, gain independence with a f*ck you fund, or finally get excited about your financial future, find all the answers you need and more with this comprehensive guide. Even if you only have a $1 savings fund to begin with, you too can have a rewarding, limitless life by investing in yourself and this book.",
"image": "http://books.google.com/books/content?id=uYmAEAAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"categories": [
"Business & Economics"
],
"pageCount": 301,
"isbn10": "0744083052",
"isbn13": "9780744083057",
"googleBooks": {
"id": "uYmAEAAAQBAJ",
"preview": "http://books.google.com/books?id=uYmAEAAAQBAJ&printsec=frontcover&dq=intitle:Girls+Just+Wanna+Have+Funds+by+Anna-Sophie+Hartvigsen,+Camilla+Falkenberg,+Emma+Due+Bitz&hl=&cd=1&source=gbs_api",
"info": "http://books.google.com/books?id=uYmAEAAAQBAJ&dq=intitle:Girls+Just+Wanna+Have+Funds+by+Anna-Sophie+Hartvigsen,+Camilla+Falkenberg,+Emma+Due+Bitz&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/Girls_Just_Wanna_Have_Funds.html?hl=&id=uYmAEAAAQBAJ"
},
"issueNumber": 56,
"progressPercent": 0,
"state": "reading",
"startedAt": "2023-01-01T11:58:06.000Z"
},
{
"title": "Humble Pi",
"authors": [
"Matt Parker"
],
"publisher": "Penguin",
"publishedDate": "2021-01-19",
"description": "#1 INTERNATIONAL BESTSELLER AN ADAM SAVAGE BOOK CLUB PICK The book-length answer to anyone who ever put their hand up in math class and asked, “When am I ever going to use this in the real world?” “Fun, informative, and relentlessly entertaining, Humble Pi is a charming and very readable guide to some of humanity's all-time greatest miscalculations—that also gives you permission to feel a little better about some of your own mistakes.” —Ryan North, author of How to Invent Everything Our whole world is built on math, from the code running a website to the equations enabling the design of skyscrapers and bridges. Most of the time this math works quietly behind the scenes . . . until it doesn’t. All sorts of seemingly innocuous mathematical mistakes can have significant consequences. Math is easy to ignore until a misplaced decimal point upends the stock market, a unit conversion error causes a plane to crash, or someone divides by zero and stalls a battleship in the middle of the ocean. Exploring and explaining a litany of glitches, near misses, and mathematical mishaps involving the internet, big data, elections, street signs, lotteries, the Roman Empire, and an Olympic team, Matt Parker uncovers the bizarre ways math trips us up, and what this reveals about its essential place in our world. Getting it wrong has never been more fun.",
"image": "http://books.google.com/books/content?id=heUlEAAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"categories": [
"Mathematics"
],
"pageCount": 337,
"isbn10": "0593084691",
"isbn13": "9780593084694",
"googleBooks": {
"id": "heUlEAAAQBAJ",
"preview": "http://books.google.com/books?id=heUlEAAAQBAJ&printsec=frontcover&dq=intitle:Humble+Pi+by+Matt+Parker&hl=&cd=1&source=gbs_api",
"info": "http://books.google.com/books?id=heUlEAAAQBAJ&dq=intitle:Humble+Pi+by+Matt+Parker&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/Humble_Pi.html?hl=&id=heUlEAAAQBAJ"
},
"issueNumber": 55,
"progressPercent": 0,
"state": "reading",
"startedAt": "2023-01-01T11:57:41.000Z"
},
{
"title": "The Psychology of Money",
"authors": [
"Morgan Housel"
],
"publisher": "Harriman House Limited",
"publishedDate": "2020-09-08",
"description": "Doing well with money isn’t necessarily about what you know. It’s about how you behave. And behavior is hard to teach, even to really smart people. Money—investing, personal finance, and business decisions—is typically taught as a math-based field, where data and formulas tell us exactly what to do. But in the real world people don’t make financial decisions on a spreadsheet. They make them at the dinner table, or in a meeting room, where personal history, your own unique view of the world, ego, pride, marketing, and odd incentives are scrambled together. In The Psychology of Money, award-winning author Morgan Housel shares 19 short stories exploring the strange ways people think about money and teaches you how to make better sense of one of life’s most important topics.",
"image": "http://books.google.com/books/content?id=TnrrDwAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 5,
"ratingsCount": 2,
"categories": [
"Business & Economics"
],
"pageCount": 209,
"isbn10": "085719769X",
"isbn13": "9780857197696",
"googleBooks": {
"id": "TnrrDwAAQBAJ",
"preview": "http://books.google.com/books?id=TnrrDwAAQBAJ&printsec=frontcover&dq=intitle:The+Psychology+of+Money:+Timeless+Lessons+on+Wealth,+Greed,+and+Happiness+by+Morgan+Housel&hl=&cd=1&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=TnrrDwAAQBAJ&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=TnrrDwAAQBAJ"
},
"issueNumber": 50,
"progressPercent": 0,
"state": "completed",
"startedAt": "2022-08-25T11:37:27.000Z",
"completedAt": "2022-12-11T18:30:49.000Z",
"timeToComplete": 9356002000,
"timeToCompleteFormatted": "3 months"
},
{
"title": "Measure What Matters",
"authors": [
"John Doerr"
],
"publisher": "Portfolio",
"publishedDate": "2018-04",
"description": "Measure What Matters is a revolutionary approach to business that has been adopted by some of Silicon Valley's most successful startups. It is a movement that is behind the explosive growth of Intel, Google, Amazon and Uber and many more. Measure What Mattersis about using Objectives and Key Results (or OKRs) to make tough choices on business priorities. It's about communicating these objectives throughout the company from entry level to CEO and it's about collecting timely, relevant data to track progress - to measure what matters. When Google first started out, its founders had amazing technology, entrepreneurial energy and sky-high ambition but no business plan. John Doerr taught them a proven approach to operating excellence that has helped them achieve greatness. He has since shared OKRs with more than fifty companies with outstanding success. In this book, Larry Page, Bill Gates, Bono, Sheryl Sandberg and many more explain how OKRs have helped them exceed all expectations and run their organisations with focus and agility.",
"image": "http://books.google.com/books/content?id=iOzCswEACAAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api",
"language": "en",
"averageRating": 3.5,
"ratingsCount": 2,
"pageCount": 352,
"isbn10": "024134848X",
"isbn13": "9780241348482",
"googleBooks": {
"id": "iOzCswEACAAJ",
"preview": "http://books.google.com/books?id=iOzCswEACAAJ&dq=intitle:Measure+What+Matters+by+John+Doerr&hl=&cd=1&source=gbs_api",
"info": "http://books.google.com/books?id=iOzCswEACAAJ&dq=intitle:Measure+What+Matters+by+John+Doerr&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/Measure_What_Matters.html?hl=&id=iOzCswEACAAJ"
},
"issueNumber": 54,
"progressPercent": 0,
"state": "want-to-read",
"startedAt": "2022-10-03T14:16:04.000Z"
},
{
"title": "Open Source for Business",
"authors": [
"Heather Meeker"
],
"publisher": "Createspace Independent Publishing Platform",
"publishedDate": "2017-04-04",
"description": "Heather Meeker's Open Source for Business is a practical, readable guide to help businesspeople, engineers, and lawyers understand open source software licensing. Based on the author's twenty years as an attorney working at the crossroads of intellectual property and technology, this guide explains the legal and technical principles behind open source licensing so you can make the right decisions for your business. It offers tips on using open source, contributing to open source projects, and releasing your own open source software. You'll also get access to quick-reference tables on the major open source licenses, plus forms and checklists you can use to promote compliance. In this book, you will learn . . . * Why open source is not a \"virus\" * What the GPL is and how to handle it * When and how to conduct open source audits * What a user-friendly open source policy looks like * How to avoid and respond to open source enforcement claims * How to use open source to fight patent infringement claims * How to manage trademarks for open source products",
"image": "http://books.google.com/books/content?id=aKHGswEACAAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api",
"language": "en",
"pageCount": 284,
"isbn10": "1544737645",
"isbn13": "9781544737645",
"googleBooks": {
"id": "aKHGswEACAAJ",
"preview": "http://books.google.com/books?id=aKHGswEACAAJ&dq=intitle:Open+(Source)+for+Business+by+Heather+Meeker&hl=&cd=1&source=gbs_api",
"info": "http://books.google.com/books?id=aKHGswEACAAJ&dq=intitle:Open+(Source)+for+Business+by+Heather+Meeker&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/Open_Source_for_Business.html?hl=&id=aKHGswEACAAJ"
},
"issueNumber": 52,
"progressPercent": 0,
"state": "want-to-read",
"startedAt": "2022-10-03T14:15:05.000Z"
},
{
"title": "What You Do Is Who You Are",
"authors": [
"Ben Horowitz"
],
"publisher": "HarperCollins",
"publishedDate": "2019-10-29",
"description": "Ben Horowitz, a leading venture capitalist, modern management expert, and New York Times bestselling author, combines lessons both from history and from modern organizational practice with practical and often surprising advice to help executives build cultures that can weather both good and bad times. Ben Horowitz has long been fascinated by history, and particularly by how people behave differently than you’d expect. The time and circumstances in which they were raised often shapes them—yet a few leaders have managed to shape their times. In What You Do Is Who You Are, he turns his attention to a question crucial to every organization: how do you create and sustain the culture you want? To Horowitz, culture is how a company makes decisions. It is the set of assumptions employees use to resolve everyday problems: should I stay at the Red Roof Inn, or the Four Seasons? Should we discuss the color of this product for five minutes or thirty hours? If culture is not purposeful, it will be an accident or a mistake. What You Do Is Who You Are explains how to make your culture purposeful by spotlighting four models of leadership and culture-building—the leader of the only successful slave revolt, Haiti’s Toussaint Louverture; the Samurai, who ruled Japan for seven hundred years and shaped modern Japanese culture; Genghis Khan, who built the world’s largest empire; and Shaka Senghor, a man convicted of murder who ran the most formidable prison gang in the yard and ultimately transformed prison culture. Horowitz connects these leadership examples to modern case-studies, including how Louverture’s cultural techniques were applied (or should have been) by Reed Hastings at Netflix, Travis Kalanick at Uber, and Hillary Clinton, and how Genghis Khan’s vision of cultural inclusiveness has parallels in the work of Don Thompson, the first African-American CEO of McDonalds, and of Maggie Wilderotter, the CEO who led Frontier Communications. Horowitz then offers guidance to help any company understand its own strategy and build a successful culture. What You Do Is Who You Are is a journey through culture, from ancient to modern. Along the way, it answers a question fundamental to any organization: who are we? How do people talk about us when we’re not around? How do we treat our customers? Are we there for people in a pinch? Can we be trusted? Who you are is not the values you list on the wall. It’s not what you say in company-wide meeting. It’s not your marketing campaign. It’s not even what you believe. Who you are is what you do. This book aims to help you do the things you need to become the kind of leader you want to be—and others want to follow.",
"image": "http://books.google.com/books/content?id=Pp-IDwAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 3,
"ratingsCount": 1,
"categories": [
"Business & Economics"
],
"pageCount": 288,
"isbn10": "006287134X",
"isbn13": "9780062871343",
"googleBooks": {
"id": "Pp-IDwAAQBAJ",
"preview": "http://books.google.com/books?id=Pp-IDwAAQBAJ&printsec=frontcover&dq=intitle:What+You+Do+Is+Who+You+Are:+How+to+Create+Your+Business+Culture+Book+by+Ben+Horowitz&hl=&cd=1&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=Pp-IDwAAQBAJ&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=Pp-IDwAAQBAJ"
},
"issueNumber": 49,
"progressPercent": 0,
"state": "want-to-read",
"startedAt": "2022-08-22T08:13:57.000Z"
},
{
"title": "How to Avoid a Climate Disaster",
"authors": [
"Bill Gates"
],
"publisher": "Knopf",
"publishedDate": "2021-02-16",
"description": "#1 NEW YORK TIMES BEST SELLER • In this urgent, authoritative book, Bill Gates sets out a wide-ranging, practical—and accessible—plan for how the world can get to zero greenhouse gas emissions in time to avoid a climate catastrophe. Bill Gates has spent a decade investigating the causes and effects of climate change. With the help of experts in the fields of physics, chemistry, biology, engineering, political science, and finance, he has focused on what must be done in order to stop the planet's slide to certain environmental disaster. In this book, he not only explains why we need to work toward net-zero emissions of greenhouse gases, but also details what we need to do to achieve this profoundly important goal. He gives us a clear-eyed description of the challenges we face. Drawing on his understanding of innovation and what it takes to get new ideas into the market, he describes the areas in which technology is already helping to reduce emissions, where and how the current technology can be made to function more effectively, where breakthrough technologies are needed, and who is working on these essential innovations. Finally, he lays out a concrete, practical plan for achieving the goal of zero emissions—suggesting not only policies that governments should adopt, but what we as individuals can do to keep our government, our employers, and ourselves accountable in this crucial enterprise. As Bill Gates makes clear, achieving zero emissions will not be simple or easy to do, but if we follow the plan he sets out here, it is a goal firmly within our reach.",
"image": "http://books.google.com/books/content?id=pHK0DwAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 4,
"ratingsCount": 8,
"categories": [
"Science"
],
"pageCount": 201,
"isbn10": "0385546149",
"isbn13": "9780385546140",
"googleBooks": {
"id": "pHK0DwAAQBAJ",
"preview": "http://books.google.com/books?id=pHK0DwAAQBAJ&printsec=frontcover&dq=intitle:How+to+Avoid+a+Climate+Disaster+by+Bill+Gates&hl=&cd=1&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=pHK0DwAAQBAJ&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=pHK0DwAAQBAJ"
},
"issueNumber": 47,
"progressPercent": 0,
"state": "want-to-read",
"startedAt": "2022-08-22T08:10:57.000Z"
},
{
"title": "The Cold Start Problem",
"authors": [
"Andrew Chen"
],
"publisher": "Harper Business",
"publishedDate": "2021-12-07",
"description": "A venture capitalist draws on expertise developed at the premier venture capital firm, Andreessen Horowitz, and as an executive at Uber to address how tech's most successful products have solved the dreaded \"cold start problem\"--by leveraging networks effects to launch and scale towards billions of users. Although software has become easier to build, launching and scaling new products and services remains difficult. Startups face daunting challenges entering the technology ecosystem, including stiff competition, copycats, and ineffective marketing channels. Teams launching new products must consider the advantages of \"the network effect,\" where a product or service's value increases as more users engage with it. Apple, Google, Microsoft, and other tech giants utilize network effects, and most tech products incorporate them, whether they're messaging apps, workplace collaboration tools, or marketplaces. Network effects provide a path for fledgling products to break through, attracting new users through viral growth and word of mouth. Yet most entrepreneurs lack the vocabulary and context to describe them--much less understand the fundamental principles that drive the effect. What exactly are network effects? How do teams create and build them into their products? How do products compete in a market where every player has them? Andrew Chen draws on his experience and on interviews with the CEOs and founding teams of LinkedIn, Twitch, Zoom, Dropbox, Tinder, Uber, Airbnb, Pinterest -- to provide unique insights in answering these questions. Chen also provides practical frameworks and principles that can be applied across products and industries. The Cold Start Problem reveals what makes winning networks successful, why some startups fail to successfully scale, and most crucially, why products that create and compete using the network effect are vitally important today.",
"image": "http://books.google.com/books/content?id=4ezYzQEACAAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api",
"language": "en",
"averageRating": 5,
"ratingsCount": 1,
"categories": [
"Business & Economics"
],
"pageCount": 336,
"isbn10": "0062969749",
"isbn13": "9780062969743",
"googleBooks": {
"id": "4ezYzQEACAAJ",
"preview": "http://books.google.com/books?id=4ezYzQEACAAJ&dq=intitle:The+Cold+Start+Problem+by+Andrew+Chen&hl=&cd=1&source=gbs_api",
"info": "http://books.google.com/books?id=4ezYzQEACAAJ&dq=intitle:The+Cold+Start+Problem+by+Andrew+Chen&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/The_Cold_Start_Problem.html?hl=&id=4ezYzQEACAAJ"
},
"issueNumber": 38,
"progressPercent": 0,
"state": "completed",
"startedAt": "2022-01-13T05:54:04.000Z",
"completedAt": "2022-08-22T04:15:30.000Z",
"timeToComplete": 19088486000,
"timeToCompleteFormatted": "7 months"
},
{
"title": "Indistractable",
"authors": [
"Nir Eyal"
],
"publisher": "BenBella Books",
"publishedDate": "2019-09-10",
"description": "\"Indistractable provides a framework that will deliver the focus you need to get results.\" —James Clear, author of Atomic Habits \"If you value your time, your focus, or your relationships, this book is essential reading. I'm putting these ideas into practice.\" —Jonathan Haidt, author of The Righteous Mind National Bestseller Winner of the Outstanding Works of Literature (OWL) Award Included in the Top 5 Best Personal Development Books of the Year by Audible Included in the Top 20 Best Business and Leadership Books of the Year by Amazon Featured in The Amazon Book Review Newsletter, January 2020 Goodreads Best Science & Technology of 2019 Finalist You sit down at your desk to work on an important project, but a notification on your phone interrupts your morning. Later, as you're about to get back to work, a colleague taps you on the shoulder to chat. At home, screens get in the way of quality time with your family. Another day goes by, and once again, your most important personal and professional goals are put on hold. What would be possible if you followed through on your best intentions? What could you accomplish if you could stay focused? What if you had the power to become \"indistractable?\" International bestselling author, former Stanford lecturer, and behavioral design expert, Nir Eyal, wrote Silicon Valley's handbook for making technology habit-forming. Five years after publishing Hooked, Eyal reveals distraction's Achilles' heel in his groundbreaking new book. In Indistractable, Eyal reveals the hidden psychology driving us to distraction. He describes why solving the problem is not as simple as swearing off our devices: Abstinence is impractical and often makes us want more. Eyal lays bare the secret of finally doing what you say you will do with a four-step, research-backed model. Indistractable reveals the key to getting the best out of technology, without letting it get the best of us. Inside, Eyal overturns conventional wisdom and reveals: • Why distraction at work is a symptom of a dysfunctional company culture—and how to fix it • What really drives human behavior and why \"time management is pain management\" • Why your relationships (and your sex life) depend on you becoming indistractable • How to raise indistractable children in an increasingly distracting world Empowering and optimistic, Indistractable provides practical, novel techniques to control your time and attention—helping you live the life you really want.",
"image": "http://books.google.com/books/content?id=GmmZDwAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 3.5,
"ratingsCount": 2,
"categories": [
"Business & Economics"
],
"pageCount": 290,
"isbn10": "1948836785",
"isbn13": "9781948836784",
"googleBooks": {
"id": "GmmZDwAAQBAJ",
"preview": "http://books.google.com/books?id=GmmZDwAAQBAJ&printsec=frontcover&dq=intitle:Indistractable+by+Nir+Eyal&hl=&cd=1&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=GmmZDwAAQBAJ&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=GmmZDwAAQBAJ"
},
"issueNumber": 44,
"progressPercent": 0,
"state": "completed",
"startedAt": "2022-07-22T04:32:58.000Z",
"completedAt": "2022-07-31T15:09:57.000Z",
"timeToComplete": 815819000,
"timeToCompleteFormatted": "1 week"
},
{
"title": "Blitzscaling",
"authors": [
"Reid Hoffman",
"Chris Yeh"
],
"publishedDate": "2018",
"description": "What entrepreneur or founder doesnt aspire to build the next Amazon, Facebook, or Airbnb? Yet those who actually manage to do so are exceedingly rare. So what separates the startups that get disrupted and disappear from the ones who grow to become global giants? The secret is blitzscaling: a set of techniques for scaling up at a dizzying pace that blows competitors out of the water. The objective of Blitzscaling is not to go from zero to one, but from one to one billion as quickly as possible.",
"image": "http://books.google.com/books/content?id=OyxyDwAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"categories": [
"Business & Economics"
],
"pageCount": 325,
"isbn10": "1524761419",
"isbn13": "9781524761417",
"googleBooks": {
"id": "OyxyDwAAQBAJ",
"preview": "http://books.google.com/books?id=OyxyDwAAQBAJ&printsec=frontcover&dq=intitle:Blitzscaling+by+Reid+Hoffman+and+Chris+Yeh&hl=&cd=1&source=gbs_api",
"info": "http://books.google.com/books?id=OyxyDwAAQBAJ&dq=intitle:Blitzscaling+by+Reid+Hoffman+and+Chris+Yeh&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/Blitzscaling.html?hl=&id=OyxyDwAAQBAJ"
},
"issueNumber": 43,
"progressPercent": 0,
"state": "completed",
"startedAt": "2022-07-19T05:54:09.000Z",
"completedAt": "2022-07-25T12:10:47.000Z",
"timeToComplete": 540998000,
"timeToCompleteFormatted": "6 days"
},
{
"title": "The Checklist Manifesto",
"authors": [
"Atul Gawande"
],
"publisher": "Metropolitan Books",
"publishedDate": "2010-04-01",
"description": "The New York Times bestselling author of Being Mortal and Complications reveals the surprising power of the ordinary checklist We live in a world of great and increasing complexity, where even the most expert professionals struggle to master the tasks they face. Longer training, ever more advanced technologies—neither seems to prevent grievous errors. But in a hopeful turn, acclaimed surgeon and writer Atul Gawande finds a remedy in the humblest and simplest of techniques: the checklist. First introduced decades ago by the U.S. Air Force, checklists have enabled pilots to fly aircraft of mind-boggling sophistication. Now innovative checklists are being adopted in hospitals around the world, helping doctors and nurses respond to everything from flu epidemics to avalanches. Even in the immensely complex world of surgery, a simple ninety-second variant has cut the rate of fatalities by more than a third. In riveting stories, Gawande takes us from Austria, where an emergency checklist saved a drowning victim who had spent half an hour underwater, to Michigan, where a cleanliness checklist in intensive care units virtually eliminated a type of deadly hospital infection. He explains how checklists actually work to prompt striking and immediate improvements. And he follows the checklist revolution into fields well beyond medicine, from disaster response to investment banking, skyscraper construction, and businesses of all kinds. An intellectual adventure in which lives are lost and saved and one simple idea makes a tremendous difference, The Checklist Manifesto is essential reading for anyone working to get things right.",
"image": "http://books.google.com/books/content?id=x3IcNujwHxcC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 4,
"ratingsCount": 84,
"categories": [
"Medical"
],
"pageCount": 224,
"isbn10": "1429953381",
"isbn13": "9781429953382",
"googleBooks": {
"id": "x3IcNujwHxcC",
"preview": "http://books.google.com/books?id=x3IcNujwHxcC&printsec=frontcover&dq=intitle:The+Checklist+Manifesto+Book+by+Atul+Gawande&hl=&cd=1&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=x3IcNujwHxcC&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=x3IcNujwHxcC"
},
"issueNumber": 42,
"progressPercent": 0,
"state": "reading",
"startedAt": "2022-07-07T20:46:58.000Z"
},
{
"title": "Talking to Strangers",
"authors": [
"Malcolm Gladwell"
],
"publisher": "Little, Brown",
"publishedDate": "2019-09-10",
"description": "Malcolm Gladwell, host of the podcast Revisionist History and author of the #1 New York Times bestseller Outliers, offers a powerful examination of our interactions with strangers and why they often go wrong—now with a new afterword by the author. A Best Book of the Year: The Financial Times, Bloomberg, Chicago Tribune, and Detroit Free Press How did Fidel Castro fool the CIA for a generation? Why did Neville Chamberlain think he could trust Adolf Hitler? Why are campus sexual assaults on the rise? Do television sitcoms teach us something about the way we relate to one another that isn’t true? Talking to Strangers is a classically Gladwellian intellectual adventure, a challenging and controversial excursion through history, psychology, and scandals taken straight from the news. He revisits the deceptions of Bernie Madoff, the trial of Amanda Knox, the suicide of Sylvia Plath, the Jerry Sandusky pedophilia scandal at Penn State University, and the death of Sandra Bland—throwing our understanding of these and other stories into doubt. Something is very wrong, Gladwell argues, with the tools and strategies we use to make sense of people we don’t know. And because we don’t know how to talk to strangers, we are inviting conflict and misunderstanding in ways that have a profound effect on our lives and our world. In his first book since his #1 bestseller David and Goliath, Malcolm Gladwell has written a gripping guidebook for troubled times.",
"image": "http://books.google.com/books/content?id=VnuGDwAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 4,
"ratingsCount": 39,
"categories": [
"Social Science"
],
"pageCount": 400,
"isbn10": "0316535621",
"isbn13": "9780316535625",
"googleBooks": {
"id": "VnuGDwAAQBAJ",
"preview": "http://books.google.com/books?id=VnuGDwAAQBAJ&printsec=frontcover&dq=intitle:Talking+to+Strangers+by+Malcolm+Gladwell&hl=&cd=1&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=VnuGDwAAQBAJ&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=VnuGDwAAQBAJ"
},
"issueNumber": 41,
"progressPercent": 0,
"state": "completed",
"startedAt": "2022-04-25T05:58:39.000Z",
"completedAt": "2022-07-04T07:33:46.000Z",
"timeToComplete": 6053707000,
"timeToCompleteFormatted": "2 months"
},
{
"title": "The One Minute Manager",
"authors": [
"Kenneth Blanchard",
"Kenneth H. Blanchard",
"Spencer Johnson"
],
"publisher": "Berkley Publishing Group",
"publishedDate": "1985-08-15",
"description": "For 30 Years, millions of managers around the world have followed the One Minute Managers techniques, increasing their productivity, job satisfaction and personal prosperity An international phenomenon, this simple story demonstrates the three very practical it management techniques of the One Minute Manager and shows how to apply them successfully to you own and enjoy fantastic results Book jacket.",
"image": "http://books.google.com/books/content?id=hbQco6gUKm4C&printsec=frontcover&img=1&zoom=1&source=gbs_api",
"language": "en",
"averageRating": 3,
"ratingsCount": 23,
"categories": [
"Businessmen"
],
"pageCount": 111,
"isbn10": "0425085260",
"isbn13": "9780425085264",
"googleBooks": {
"id": "hbQco6gUKm4C",
"preview": "http://books.google.com/books?id=hbQco6gUKm4C&q=intitle:The+New+one+minute+Manager&dq=intitle:The+New+one+minute+Manager&hl=&cd=4&source=gbs_api",
"info": "http://books.google.com/books?id=hbQco6gUKm4C&dq=intitle:The+New+one+minute+Manager&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/The_One_Minute_Manager.html?hl=&id=hbQco6gUKm4C"
},
"issueNumber": 40,
"progressPercent": 0,
"state": "completed",
"startedAt": "2022-02-20T00:00:00.000Z",
"completedAt": "2022-02-24T00:00:00.000Z",
"timeToComplete": 345600000,
"timeToCompleteFormatted": "4 days"
},
{
"title": "The Tipping Point",
"authors": [
"Malcolm Gladwell"
],
"publisher": "Little, Brown",
"publishedDate": "2006-11-01",
"description": "From the bestselling author of The Bomber Mafia: discover Malcolm Gladwell's breakthrough debut and explore the science behind viral trends in business, marketing, and human behavior. The tipping point is that magic moment when an idea, trend, or social behavior crosses a threshold, tips, and spreads like wildfire. Just as a single sick person can start an epidemic of the flu, so too can a small but precisely targeted push cause a fashion trend, the popularity of a new product, or a drop in the crime rate. This widely acclaimed bestseller, in which Malcolm Gladwell explores and brilliantly illuminates the tipping point phenomenon, is already changing the way people throughout the world think about selling products and disseminating ideas. “A wonderful page-turner about a fascinating idea that should affect the way every thinking person looks at the world.” —Michael Lewis",
"image": "http://books.google.com/books/content?id=yBDBEGBIUmgC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 3.5,
"ratingsCount": 4243,
"categories": [
"Psychology"
],
"pageCount": 288,
"isbn10": "0759574731",
"isbn13": "9780759574731",
"googleBooks": {
"id": "yBDBEGBIUmgC",
"preview": "http://books.google.com/books?id=yBDBEGBIUmgC&printsec=frontcover&dq=intitle:The+Tipping+Point+by+Malcolm+Gladwell&hl=&cd=2&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=yBDBEGBIUmgC&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=yBDBEGBIUmgC"
},
"issueNumber": 39,
"progressPercent": 0,
"state": "reading",
"startedAt": "2022-01-13T06:02:10.000Z"
},
{
"title": "Lying",
"authors": [
"Sam Harris"
],
"publisher": "Four Elephants Press",
"publishedDate": "2013-10-23",
"description": "As it was in Anna Karenina, Madame Bovary, and Othello, so it is in life. Most forms of private vice and public evil are kindled and sustained by lies. Acts of adultery and other personal betrayals, financial fraud, government corruption—even murder and genocide—generally require an additional moral defect: a willingness to lie. In Lying, best-selling author and neuroscientist Sam Harris argues that we can radically simplify our lives and improve society by merely telling the truth in situations where others often lie. He focuses on \"white\" lies—those lies we tell for the purpose of sparing people discomfort—for these are the lies that most often tempt us. And they tend to be the only lies that good people tell while imagining that they are being good in the process.",
"image": "http://books.google.com/books/content?id=aVz_BgAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 3.5,
"ratingsCount": 14,
"categories": [
"Philosophy"
],
"pageCount": 108,
"isbn10": "1940051010",
"isbn13": "9781940051017",
"googleBooks": {
"id": "aVz_BgAAQBAJ",
"preview": "http://books.google.com/books?id=aVz_BgAAQBAJ&printsec=frontcover&dq=intitle:Lying+by+Sam+Harris&hl=&cd=1&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=aVz_BgAAQBAJ&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=aVz_BgAAQBAJ"
},
"issueNumber": 9,
"progressPercent": 0,
"state": "completed",
"startedAt": "2020-09-10T00:00:00.000Z",
"completedAt": "2020-08-30T00:00:00.000Z",
"timeToComplete": -950400000,
"timeToCompleteFormatted": "1 week"
},
{
"title": "Tuesdays with Morrie",
"authors": [
"Mitch Albom"
],
"publisher": "Broadway Books",
"publishedDate": "2007-06-29",
"description": "A special 20th anniversary edition of the beloved international bestseller that changed millions of lives Maybe it was a grandparent, or a teacher, or a colleague. Someone older, patient and wise, who understood you when you were young and searching, helped you see the world as a more profound place, gave you sound advice to help you make your way through it. For Mitch Albom, that person was Morrie Schwartz, his college professor from nearly twenty years ago. Maybe, like Mitch, you lost track of this mentor as you made your way, and the insights faded, and the world seemed colder. Wouldn't you like to see that person again, ask the bigger questions that still haunt you, receive wisdom for your busy life today the way you once did when you were younger? Mitch Albom had that second chance. He reconnected with Morrie in the last months of the older man's life. Knowing he was dying, Morrie visited with Mitch in his study every Tuesday, just as they used to back in college. Their rekindled relationship turned into one final \"class:\" lessons in how to live. Tuesdays with Morrie is a magical chronicle of their time together, through which Mitch shares Morrie's lasting gift with the world.",
"image": "http://books.google.com/books/content?id=z2z_6hLoPmgC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 4,
"ratingsCount": 263,
"categories": [
"Biography & Autobiography"
],
"pageCount": 224,
"isbn10": "0307414094",
"isbn13": "9780307414090",
"googleBooks": {
"id": "z2z_6hLoPmgC",
"preview": "http://books.google.com/books?id=z2z_6hLoPmgC&printsec=frontcover&dq=intitle:Tuesdays+with+Morrie+by+Mitch+Albom&hl=&cd=2&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=z2z_6hLoPmgC&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=z2z_6hLoPmgC"
},
"issueNumber": 25,
"progressPercent": 0,
"state": "completed",
"startedAt": "2020-05-25T00:00:00.000Z",
"completedAt": "2020-06-20T00:00:00.000Z",
"timeToComplete": 2246400000,
"timeToCompleteFormatted": "3 weeks"
},
{
"title": "Sapiens",
"authors": [
"Yuval Noah Harari"
],
"publisher": "Harper Collins",
"publishedDate": "2015-02-10",
"description": "New York Times Bestseller A Summer Reading Pick for President Barack Obama, Bill Gates, and Mark Zuckerberg From a renowned historian comes a groundbreaking narrative of humanity’s creation and evolution—a #1 international bestseller—that explores the ways in which biology and history have defined us and enhanced our understanding of what it means to be “human.” One hundred thousand years ago, at least six different species of humans inhabited Earth. Yet today there is only one—homo sapiens. What happened to the others? And what may happen to us? Most books about the history of humanity pursue either a historical or a biological approach, but Dr. Yuval Noah Harari breaks the mold with this highly original book that begins about 70,000 years ago with the appearance of modern cognition. From examining the role evolving humans have played in the global ecosystem to charting the rise of empires, Sapiens integrates history and science to reconsider accepted narratives, connect past developments with contemporary concerns, and examine specific events within the context of larger ideas. Dr. Harari also compels us to look ahead, because over the last few decades humans have begun to bend laws of natural selection that have governed life for the past four billion years. We are acquiring the ability to design not only the world around us, but also ourselves. Where is this leading us, and what do we want to become? Featuring 27 photographs, 6 maps, and 25 illustrations/diagrams, this provocative and insightful work is sure to spark debate and is essential reading for aficionados of Jared Diamond, James Gleick, Matt Ridley, Robert Wright, and Sharon Moalem.",
"image": "http://books.google.com/books/content?id=FmyBAwAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 4,
"ratingsCount": 97,
"categories": [
"Science"
],
"pageCount": 464,
"isbn10": "0062316109",
"isbn13": "9780062316103",
"googleBooks": {
"id": "FmyBAwAAQBAJ",
"preview": "http://books.google.com/books?id=FmyBAwAAQBAJ&printsec=frontcover&dq=intitle:Sapiens+by+Yuval+Noah+Harari&hl=&cd=1&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=FmyBAwAAQBAJ&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=FmyBAwAAQBAJ"
},
"issueNumber": 10,
"progressPercent": 0,
"state": "completed",
"startedAt": "2020-03-01T00:00:00.000Z",
"completedAt": "2020-02-23T00:00:00.000Z",
"timeToComplete": -604800000,
"timeToCompleteFormatted": "1 week"
},
{
"title": "Sam Walton",
"authors": [
"Sam Walton"
],
"publisher": "Bantam",
"publishedDate": "2012-09-12",
"description": "Meet a genuine American folk hero cut from the homespun cloth of America's heartland: Sam Walton, who parlayed a single dime store in a hardscrabble cotton town into Wal-Mart, the largest retailer in the world. The undisputed merchant king of the late twentieth century, Sam never lost the common touch. Here, finally, inimitable words. Genuinely modest, but always sure if his ambitions and achievements. Sam shares his thinking in a candid, straight-from-the-shoulder style. In a story rich with anecdotes and the \"rules of the road\" of both Main Street and Wall Street, Sam Walton chronicles the inspiration, heart, and optimism that propelled him to lasso the American Dream.",
"image": "http://books.google.com/books/content?id=ggN9Kp8UVfwC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",
"language": "en",
"averageRating": 3,
"ratingsCount": 6,
"categories": [
"Biography & Autobiography"
],
"pageCount": 368,
"isbn10": "0307763692",
"isbn13": "9780307763693",
"googleBooks": {
"id": "ggN9Kp8UVfwC",
"preview": "http://books.google.com/books?id=ggN9Kp8UVfwC&printsec=frontcover&dq=intitle:Sam+Walton:+Made+In+America+by+Sam+Walton&hl=&cd=1&source=gbs_api",
"info": "https://play.google.com/store/books/details?id=ggN9Kp8UVfwC&source=gbs_api",
"canonical": "https://play.google.com/store/books/details?id=ggN9Kp8UVfwC"
},
"issueNumber": 22,
"progressPercent": 0,
"state": "completed",
"startedAt": "2016-07-14T00:00:00.000Z",
"completedAt": "2020-02-22T00:00:00.000Z",
"timeToComplete": 113875200000,
"timeToCompleteFormatted": "3 years"
},
{
"title": "Think and Grow Rich",
"authors": [
"Arthur R. Pell",
"Napoleon Hill"
],
"publishedDate": "2005",
"description": "This all-time classic has sold more copies around the world and been responsible for the creation of more millionaires, than any other book in history. It's the result of 25 years of extensive research into the secret of 504 of the world's wealthiest people. Make no mistake; there is a secret to great wealth! The secret is so simple anyone can use it to become fabulously wealthy and successful in their chosen field. Are you ready to receive it?",
"image": "http://books.google.com/books/content?id=rYJaPwAACAAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api",
"language": "en",
"averageRating": 4,
"ratingsCount": 28,
"categories": [
"Conduct of life"
],
"pageCount": 355,
"isbn10": "0975601466",
"isbn13": "9780975601464",
"googleBooks": {
"id": "rYJaPwAACAAJ",
"preview": "http://books.google.com/books?id=rYJaPwAACAAJ&dq=intitle:Think+and+Grow+Rich+by+Napoleon+Hill&hl=&cd=6&source=gbs_api",
"info": "http://books.google.com/books?id=rYJaPwAACAAJ&dq=intitle:Think+and+Grow+Rich+by+Napoleon+Hill&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/Think_and_Grow_Rich.html?hl=&id=rYJaPwAACAAJ"
},
"issueNumber": 21,
"progressPercent": 0,
"state": "completed",
"startedAt": "2016-10-01T00:00:00.000Z",
"completedAt": "2020-02-22T00:00:00.000Z",
"timeToComplete": 107049600000,
"timeToCompleteFormatted": "3 years"
},
{
"title": "The Design of Everyday Things",
"authors": [
"Donald A. Norman"
],
"publishedDate": "2013",
"description": "\"Even the smartest among us can feel inept as we fail to figure out which light switch or oven burner to turn on, or whether to push, pull, or slide a door. The fault, argues this ingenious-even liberating-book, lies not in ourselves, but in product design that ignores the needs of users and the principles of cognitive psychology. The problems range from ambiguous and hidden controls to arbitrary relationships between controls and functions, coupled with a lack of feedback or other assistance and unreasonable demands on memorization. The Design of Everyday Things shows that good, usable design is possible. The rules are simple: make things visible, exploit natural relationships that couple function and control, and make intelligent use of constraints. The goal: guide the user effortlessly to the right action on the right control at the right time. In this entertaining and insightful analysis, cognitive scientist Don Norman hails excellence of design as the most important key to regaining the competitive edge in influencing consumer behavior. Now fully expanded and updated, with a new introduction by the author, The Design of Everyday Things is a powerful primer on how-and why-some products satisfy customers while others only frustrate them. \".",
"image": "http://books.google.com/books/content?id=heCtnQEACAAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api",
"language": "en",
"averageRating": 3.5,
"ratingsCount": 38,
"categories": [
"Design"
],
"pageCount": 368,
"isbn10": "0262525674",
"isbn13": "9780262525671",
"googleBooks": {
"id": "heCtnQEACAAJ",
"preview": "http://books.google.com/books?id=heCtnQEACAAJ&dq=intitle:The+Design+of+Everyday+Things+by+Don+Norman&hl=&cd=2&source=gbs_api",
"info": "http://books.google.com/books?id=heCtnQEACAAJ&dq=intitle:The+Design+of+Everyday+Things+by+Don+Norman&hl=&source=gbs_api",
"canonical": "https://books.google.com/books/about/The_Design_of_Everyday_Things.html?hl=&id=heCtnQEACAAJ"
},
"issueNumber": 20,
"progressPercent": 0,
"state": "completed",
"startedAt": "2016-10-03T00:00:00.000Z",
"completedAt": "2020-02-22T00:00:00.000Z",
"timeToComplete": 106876800000,
"timeToCompleteFormatted": "3 years"
},
{
"title": "How To Win Friends and Influence People",
"authors": [
"Dale Carnegie"
],
"publisher": "Simon and Schuster",
"publishedDate": "2010-08-24",
"description": "You can go after the job you want—and get it! You can take the job you have—and improve it! You can take any situation—and make it work for you! Dale Carnegie’s rock-solid, time-tested advice has carried countless people up the ladder of success in their business and personal lives. One of the most groundbreaking and timeless bestsellers of all time, How to Win Friends & Influence People will teach you: -Six ways to make people like you -Twelve ways to win people to your way of thinking -Nine ways to change people without arousing resentment And much more! Achieve your maximum potential—a must-read for the twenty-first century with more than 15 million copies sold!",
"image": "http://books.google.com/books/content?id=1rW-QpIAs8UC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api",