-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathquestions.json
More file actions
1662 lines (1662 loc) · 77.5 KB
/
Copy pathquestions.json
File metadata and controls
1662 lines (1662 loc) · 77.5 KB
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
[
{
"slug": "10-life-changing-lessons-from-the-longest-ever-study-on-human-happiness-dr-rober",
"title": "10 Life-changing Lessons From The Longest Ever Study On Human Happiness! Dr. Robert Waldinger | E246",
"video_url": "https://www.youtube.com/watch?v=Itg00I2q8lk",
"question": "If you could go back to one era in Civilization what era would you pick why and what would your job be oh interesting",
"category": "life",
"question_extraction": "marker",
"confidence": 18,
"hidden": true
},
{
"slug": "5-natural-medicines-big-pharma-are-hiding-from-you-no-1-herbal-medicine-expert",
"title": "5 Natural Medicines Big Pharma Are Hiding From You! No.1 Herbal Medicine Expert",
"video_url": "https://www.youtube.com/watch?v=5Jk5XCLAr6w",
"question": "How do you keep up?",
"category": "general",
"question_extraction": "anchor",
"confidence": 54,
"hidden": false
},
{
"slug": "a-billionaire-s-guide-to-healing-your-mind-and-extending-your-life-christian-ang",
"title": "A Billionaire\u2019s Guide To Healing Your Mind And Extending Your Life: Christian Angermayer | E72",
"video_url": "https://www.youtube.com/watch?v=yH5YplNDjJM",
"question": "But like you know what I mean?",
"category": "beliefs",
"question_extraction": "fallback-tail",
"confidence": 60,
"hidden": true
},
{
"slug": "addiction-childhood-trauma-and-depression-with-joe-wicks-the-body-coach-e60",
"title": "Addiction, Childhood Trauma And Depression With Joe Wicks (The Body Coach) | E60",
"video_url": "https://www.youtube.com/watch?v=OZN7xRCAz58",
"question": "What should we do now?",
"category": "health",
"question_extraction": "fallback-tail",
"confidence": 72,
"hidden": true
},
{
"slug": "ai-agents-debate-these-jobs-won-t-exist-in-24-months",
"title": "AI AGENTS DEBATE: These Jobs Won't Exist In 24 Months!",
"video_url": "https://www.youtube.com/watch?v=JMYQmGfTltY",
"question": "Are you telling me that you're alive at this particular moment?",
"category": "life",
"question_extraction": "fallback-tail",
"confidence": 72,
"hidden": false
},
{
"slug": "ai-expert-here-is-what-the-world-looks-like-in-2-years-tristan-harris",
"title": "AI Expert: Here Is What The World Looks Like In 2 Years! Tristan Harris",
"video_url": "https://www.youtube.com/watch?v=BFU1OCkhBwo",
"question": "If you could slash had the chance to relive a moment or day in your life, what would it be and why?",
"category": "life",
"question_extraction": "anchor",
"confidence": 32,
"hidden": true
},
{
"slug": "alcohol-rewires-your-brain-dr-sarah-wakeman",
"title": "Alcohol Rewires Your Brain - Dr. Sarah Wakeman",
"video_url": "https://www.youtube.com/watch?v=Fg7U-BhiZGE",
"question": "If you could redo or revise one thing that you have successfully accomplished, what would that be and why?",
"category": "life",
"question_extraction": "anchor",
"confidence": 86,
"hidden": false
},
{
"slug": "america-is-at-breaking-point-is-gavin-newsom-america-s-next-president",
"title": "America Is at Breaking Point, Is Gavin Newsom America\u2019s Next President?",
"video_url": "https://www.youtube.com/watch?v=1NLoTuRR3hE",
"question": "Have you received a sign from beyond?",
"category": "beliefs",
"question_extraction": "anchor",
"confidence": 100,
"hidden": false
},
{
"slug": "an-ai-expert-warning-6-people-are-quietly-deciding-humanity-s-future",
"title": "An AI Expert Warning: 6 People Are (Quietly) Deciding Humanity\u2019s Future!",
"video_url": "https://www.youtube.com/watch?v=P7Y-fynYsgE",
"question": "What do you value the most in life and why?",
"category": "life",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "anti-aging-expert-missing-this-vitamin-is-as-bad-as-smoking-the-truth-about-crea",
"title": "Anti-Aging Expert: Missing This Vitamin Is As Bad As Smoking! The Truth About Creatine!",
"video_url": "https://www.youtube.com/watch?v=JCTb3QSrGMQ",
"question": "If you could go back and change one thing about your life, what would it be?",
"category": "life",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "atheist-vs-christian-vs-spiritual-thinker-is-not-believing-in-god-causing-more-h",
"title": "Atheist vs Christian vs Spiritual Thinker: Is Not Believing In God Causing More Harm Than Good?!",
"video_url": "https://www.youtube.com/watch?v=Esu8BXLBmZ4",
"question": "If you understand that process and if you change a couple of things and sometimes it's amazing how small they are, right?",
"category": "beliefs",
"question_extraction": "fallback-tail",
"confidence": 8,
"hidden": true
},
{
"slug": "body-language-expert-explains-why-people-dislike-you",
"title": "Body Language Expert Explains Why People Dislike You",
"video_url": "https://www.youtube.com/watch?v=ldizQkuWpDE",
"question": "What are you doing on a daily basis to improve the life of someone else?",
"category": "relationships",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "brain-experts-warning-watch-this-before-using-chatgpt-again-shocking-new-discove",
"title": "Brain Experts WARNING: Watch This Before Using ChatGPT Again! (Shocking New Discovery)",
"video_url": "https://www.youtube.com/watch?v=5wXlmlIXJOI",
"question": "How will you address the challenge even if it means a major lifestyle change or way of living?",
"category": "health",
"question_extraction": "anchor",
"confidence": 100,
"hidden": false
},
{
"slug": "brain-rot-emergency-these-internal-documents-prove-they-re-controlling-you",
"title": "Brain Rot Emergency: These Internal Documents Prove They\u2019re Controlling You!",
"video_url": "https://www.youtube.com/watch?v=EScgrk7oEwU",
"question": "Who's it for?",
"category": "health",
"question_extraction": "fallback-tail",
"confidence": 0,
"hidden": true
},
{
"slug": "bren-brown-the-algorithms-have-forced-us-into-a-hidden-epidemic-this-is-the-only",
"title": "Bren\u00e9 Brown: The Algorithms Have Forced Us Into A Hidden Epidemic, This Is The Only Way Out!",
"video_url": "https://www.youtube.com/watch?v=jroF3PH-PTs",
"question": "What are you optimizing for right now?",
"category": "general",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "calm-app-founder-from-0-to-2-billion-by-making-the-world-meditate-michael-acton-",
"title": "Calm App Founder: From $0 To $2 Billion By Making The World Meditate: Michael Acton Smith | E117",
"video_url": "https://www.youtube.com/watch?v=DAVw-yQRUjE",
"question": "What is the pain you enjoy having?",
"category": "life",
"question_extraction": "marker",
"confidence": 56,
"hidden": false
},
{
"slug": "casey-neistat-why-i-quit-youtube-what-i-m-doing-now",
"title": "Casey Neistat: Why I Quit YouTube & What I'm Doing Now!",
"video_url": "https://www.youtube.com/watch?v=vFuyiCnROzs",
"question": "What is one piece of feedback you want to give to me yes me stevenh but might be nervous to tell me?",
"category": "general",
"question_extraction": "marker",
"confidence": 100,
"hidden": false
},
{
"slug": "ceo-of-microsoft-ai-ai-is-becoming-more-dangerous-and-threatening-mustafa-suleym",
"title": "CEO Of Microsoft AI: AI Is Becoming More Dangerous And Threatening! - Mustafa Suleyman",
"video_url": "https://www.youtube.com/watch?v=CTxnLsYHWuI",
"question": "What is a space or place that you consider the most sacred",
"category": "beliefs",
"question_extraction": "marker",
"confidence": 40,
"hidden": false
},
{
"slug": "chris-eubank-jr-i-was-paid-for-the-fight-the-night-before-dad-finally-opened-up",
"title": "Chris Eubank Jr: I Was Paid $***** For The Fight! The Night Before, Dad Finally Opened Up!",
"video_url": "https://www.youtube.com/watch?v=OsAlLgGf9JM",
"question": "If you could listen to one album for the rest of your life, what would it be and why?",
"category": "life",
"question_extraction": "anchor",
"confidence": 86,
"hidden": false
},
{
"slug": "chris-williamson-fix-this-one-habit-and-2026-will-be-your-best-year",
"title": "Chris Williamson: Fix This One Habit And 2026 Will Be Your Best Year!",
"video_url": "https://www.youtube.com/watch?v=q_vZ4H3uW28",
"question": "What is the most important component of human joy and endeavor that you believe must be preserved in priority?",
"category": "beliefs",
"question_extraction": "anchor",
"confidence": 86,
"hidden": false
},
{
"slug": "chris-williamson-new-research-on-why-men-and-women-are-no-longer-compatible",
"title": "Chris Williamson: New Research On Why Men And Women Are No Longer Compatible!",
"video_url": "https://www.youtube.com/watch?v=K2tGt2XWd9Q",
"question": "Go back to the most painful or emotionally challenging moment or period you had as a child. What would you say to that child now?",
"category": "life",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "cia-spy-leave-the-usa-before-2030-why-you-shouldn-t-trust-your-gut-andrew-bustam",
"title": "CIA Spy: \"Leave The USA Before 2030!\" Why You Shouldn't Trust Your Gut! - Andrew Bustamante",
"video_url": "https://www.youtube.com/watch?v=QVVe2rCHtN0",
"question": "What is something you used to strongly believe that you have fundamentally changed your mind on?",
"category": "beliefs",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "cia-whistleblower-they-can-see-all-your-messages",
"title": "CIA Whistleblower: They Can See All Your Messages!",
"video_url": "https://www.youtube.com/watch?v=yUNoJ32eLBc",
"question": "What's something you stopped doing that improved your life more than anything you started?",
"category": "life",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "cmo-of-netflix-work-life-balance-is-bad-advice-i-lost-my-baby-my-husband",
"title": "CMO Of Netflix: \"Work Life Balance\" Is BAD Advice! I Lost My Baby & My Husband!",
"video_url": "https://www.youtube.com/watch?v=cuVTVOdkmek",
"question": "What moment in your journey made you fight even harder to get to where you are right now",
"category": "business",
"question_extraction": "marker",
"confidence": 40,
"hidden": true
},
{
"slug": "cognitive-decline-expert-the-disease-that-starts-in-your-30s-but-kills-you-in-yo",
"title": "Cognitive Decline Expert: The Disease That Starts in Your 30s but Kills You in Your 70s",
"video_url": "https://www.youtube.com/watch?v=0t_DD5568RA",
"question": "What is God to you?",
"category": "beliefs",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "corrupt-cop-i-had-sex-with-girls-in-my-police-car-arrested-drug-dealers-then-sol",
"title": "Corrupt Cop: I Had Sex With Girls In My Police Car, Arrested Drug Dealers, Then Sold Their Drugs!",
"video_url": "https://www.youtube.com/watch?v=NSsx6mkiaf8",
"question": "What is the gift that the universe, life, or God has put you here to share?",
"category": "beliefs",
"question_extraction": "marker",
"confidence": 100,
"hidden": false
},
{
"slug": "david-moyes-reveals-the-truth-about-man-united-west-ham-his-future-e213",
"title": "David Moyes Reveals The Truth About Man United, West Ham & His Future | E213",
"video_url": "https://www.youtube.com/watch?v=YWnaf_Zd5_Y",
"question": "What is the biggest public misconception about?",
"category": "beliefs",
"question_extraction": "marker",
"confidence": 100,
"hidden": false
},
{
"slug": "debate-feminist-women-vs-non-feminist-women",
"title": "DEBATE: Feminist Women Vs Non-Feminist Women",
"video_url": "https://www.youtube.com/watch?v=ZHuZ_8VYCWA",
"question": "Do you want that spaciousness in your life or do you want rules?",
"category": "life",
"question_extraction": "fallback-tail",
"confidence": 72,
"hidden": true
},
{
"slug": "discipline-expert-the-habit-that-will-make-or-break-your-entire-2026",
"title": "Discipline Expert: The Habit That Will Make Or Break Your Entire 2026!",
"video_url": "https://www.youtube.com/watch?v=rtufWBLOXgw",
"question": "What do you believe is the best way to unify people of differing or even conflicting beliefs?",
"category": "beliefs",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "divorce-expert-slippage-is-tearing-marriages-apart-if-kids-are-your-priority-you",
"title": "Divorce Expert: Slippage Is Tearing Marriages Apart! If Kids Are Your Priority You\u2019ll Divorce!",
"video_url": "https://www.youtube.com/watch?v=oAgGirY-GUQ",
"question": "What is your most controversial opinion?",
"category": "beliefs",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "dopamine-expert-how-tiktok-is-physically-rewiring-your-brain-permanent-damage",
"title": "Dopamine Expert: How TikTok Is Physically Rewiring Your Brain (Permanent Damage?)",
"video_url": "https://www.youtube.com/watch?v=2ZKLaUbB33o",
"question": "What's the one thing the universe keeps putting in front of you and what is the thing that it keeps you learning?",
"category": "health",
"question_extraction": "anchor",
"confidence": 32,
"hidden": true
},
{
"slug": "dr-sampson-your-oral-microbiome-is-linked-to-this-disease",
"title": "Dr Sampson: Your Oral Microbiome Is Linked To This Disease!",
"video_url": "https://www.youtube.com/watch?v=p3fSwd1cF08",
"question": "What is the most important relationship in your life and why?",
"category": "relationships",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "early-retirement-expert-a-house-vs-stocks-here-is-the-truth",
"title": "Early Retirement Expert: A House Vs Stocks... (Here Is The Truth)",
"video_url": "https://www.youtube.com/watch?v=99xyy1nUpug",
"question": "If you had all the money you needed to have to support yourself and your family, zero financial worries, what job profession would you be doing?",
"category": "business",
"question_extraction": "anchor",
"confidence": 56,
"hidden": false
},
{
"slug": "eddie-hearn-on-selling-matchroom-for-5-billion-e58",
"title": "Eddie Hearn on Selling Matchroom For 5 Billion | E58",
"video_url": "https://www.youtube.com/watch?v=JF-_w4gvZec",
"question": "How do you do you not get nervous?",
"category": "life",
"question_extraction": "fallback-tail",
"confidence": 72,
"hidden": false
},
{
"slug": "esther-perel-the-3-attachment-styles-why-you-re-struggling-with-love",
"title": "Esther Perel: The 3 Attachment Styles & Why You\u2019re Struggling With Love!",
"video_url": "https://www.youtube.com/watch?v=nTWXfo7narw",
"question": "What is the one piece of advice you received in the last decade that you think about most frequently?",
"category": "life",
"question_extraction": "anchor",
"confidence": 86,
"hidden": false
},
{
"slug": "ex-google-ceo-ai-can-create-deadly-viruses-if-we-see-this-we-must-turn-off-ai",
"title": "Ex Google CEO: AI Can Create Deadly Viruses! If We See This, We Must Turn Off AI!",
"video_url": "https://www.youtube.com/watch?v=2Zg--ouGl7c",
"question": "What is your non-negotiable",
"category": "life",
"question_extraction": "marker",
"confidence": 100,
"hidden": false
},
{
"slug": "ex-google-exec-warning-the-next-15-years-will-be-hell-before-we-get-to-heaven-mo",
"title": "Ex-Google Exec (WARNING): The Next 15 Years Will Be Hell Before We Get To Heaven! - Mo Gawdat",
"video_url": "https://www.youtube.com/watch?v=S9a1nLw70p0",
"question": "What three things do you do you do that make your brain better and three things that make it worse?",
"category": "health",
"question_extraction": "fallback-tail",
"confidence": 100,
"hidden": false
},
{
"slug": "exact-formula-used-to-build-a-130-billion-company-i-said-no-to-3b-from-mark-zuck",
"title": "Exact Formula Used To Build A $130 Billion Company! I Said No to $3B From Mark Zuckerberg!",
"video_url": "https://www.youtube.com/watch?v=rBM6lGk4-fk",
"question": "What is the hardest thing you ever had to overcome?",
"category": "life",
"question_extraction": "fallback-tail",
"confidence": 100,
"hidden": false
},
{
"slug": "exercise-nutrition-scientist-the-truth-about-exercise-on-your-period-take-these-",
"title": "Exercise & Nutrition Scientist: The Truth About Exercise On Your Period! Take These 4 Supplements!",
"video_url": "https://www.youtube.com/watch?v=It5_C6AF1pk",
"question": "If you have children, what is the most important message you would pass on to them?",
"category": "relationships",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "feeling-lost-neuroscience-explains-why-the-science-behind-happiness-dr-tali-shar",
"title": "Feeling Lost? Neuroscience Explains Why! The Science Behind Happiness! - Dr Tali Sharot",
"video_url": "https://www.youtube.com/watch?v=0DZK1nawEXQ",
"question": "Can you describe what winning means to you",
"category": "life",
"question_extraction": "marker",
"confidence": 100,
"hidden": false
},
{
"slug": "fighting-sexism-winning-the-founder-behind-the-1billion-dollar-tech-company-bumb",
"title": "Fighting Sexism & Winning: The Founder Behind The $1Billion Dollar Tech Company Bumble",
"video_url": "https://www.youtube.com/watch?v=ca5h47tJsdE",
"question": "What is the last belief you would relinquish?",
"category": "beliefs",
"question_extraction": "marker",
"confidence": 100,
"hidden": false
},
{
"slug": "former-cia-spies-new-leave-the-usa-before-2030-the-cia-tried-to-ban-this-story",
"title": "Former CIA Spies (NEW): Leave the USA Before 2030! The CIA Tried To Ban This Story!",
"video_url": "https://www.youtube.com/watch?v=fu6bYPTp_kE",
"question": "How did a mistake you made shift the trajectory of your life in a way you could not have predicted?",
"category": "life",
"question_extraction": "anchor",
"confidence": 86,
"hidden": false
},
{
"slug": "former-fbi-agent-if-they-do-this-please-run-narcissists-favourite-trick-to-contr",
"title": "Former FBI Agent: If They Do This Please RUN! Narcissists Favourite Trick To Control You!",
"video_url": "https://www.youtube.com/watch?v=ZuiIvevLg40",
"question": "What do people say that they like about you?",
"category": "relationships",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "godfather-of-ai-they-keep-silencing-me-but-i-m-trying-to-warn-them",
"title": "Godfather of AI: They Keep Silencing Me But I\u2019m Trying to Warn Them!",
"video_url": "https://www.youtube.com/watch?v=giT0ytynSqg",
"question": "What is the biggest threat you see to human happiness?",
"category": "beliefs",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "godfather-of-ai-we-have-2-years-before-everything-changes",
"title": "Godfather of AI: We Have 2 Years Before Everything Changes!",
"video_url": "https://www.youtube.com/watch?v=zQ1POHiR8m8",
"question": "If you had one last phone call with the people you love the most, what would you say on that phone call and what advice would you give them?",
"category": "relationships",
"question_extraction": "anchor",
"confidence": 56,
"hidden": false
},
{
"slug": "harvard-professor-they-re-lying-to-you-about-running-breathing-sitting-daniel-li",
"title": "Harvard Professor: They\u2019re Lying To You About Running, Breathing & Sitting! - Daniel Lieberman",
"video_url": "https://www.youtube.com/watch?v=A-8tPmQtYqs",
"question": "For what would you be willing to die today that's a very hard one",
"category": "general",
"question_extraction": "marker",
"confidence": 28,
"hidden": true
},
{
"slug": "he-put-a-gun-in-my-mouth-then-beat-me-up-molly-bloom-molly-s-game",
"title": "\"He Put A Gun In My Mouth, Then Beat Me Up!\" - Molly Bloom (Molly's Game)",
"video_url": "https://www.youtube.com/watch?v=q3Rf_9GFico",
"question": "What is the message you needed to hear when you were younger that you didn't hear and who was the best per",
"category": "life",
"question_extraction": "marker",
"confidence": 18,
"hidden": true
},
{
"slug": "hormone-expert-control-your-hormones-control-your-belly-fat-cortisol-oestrogen-t",
"title": "Hormone Expert: Control Your Hormones Control Your Belly Fat! Cortisol, oestrogen, testosterone.",
"video_url": "https://www.youtube.com/watch?v=0GQozcTPyO0",
"question": "What do you do every day to make a better brain and better world?",
"category": "health",
"question_extraction": "anchor",
"confidence": 84,
"hidden": false
},
{
"slug": "hormone-fertility-experts-we-ve-been-lied-to-about-women-s-health-if-this-happen",
"title": "Hormone & Fertility Experts: We've Been Lied To About Women's Health! If This Happens, Call A Doctor",
"video_url": "https://www.youtube.com/watch?v=kizDk8idpT8",
"question": "What is the most important subject you think we might have missed?",
"category": "health",
"question_extraction": "fallback-tail",
"confidence": 72,
"hidden": true
},
{
"slug": "how-to-make-money-do-not-buy-a-house-10-ways-to-make-real-money-ramit-sethi",
"title": "How To Make Money...\"Do Not Buy A House!\" 10 Ways To Make REAL Money: Ramit Sethi",
"video_url": "https://www.youtube.com/watch?v=ORqd9QAC8OY",
"question": "What is other people's biggest misconception of you?",
"category": "general",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "i-met-an-uncontacted-tribe-they-killed-my-friend-video-proof",
"title": "I Met An Uncontacted Tribe: They Killed My Friend! (VIDEO PROOF)",
"video_url": "https://www.youtube.com/watch?v=sR7S2Q3c04g",
"question": "If you only had three years left to live, >> what would you regret not doing?",
"category": "life",
"question_extraction": "anchor",
"confidence": 78,
"hidden": false
},
{
"slug": "insulin-doctor-the-fastest-way-to-burn-dangerous-visceral-fat-i-m-finding-mould-",
"title": "Insulin Doctor: The Fastest Way To Burn Dangerous Visceral Fat! I'm Finding Mould In My Patients!",
"video_url": "https://www.youtube.com/watch?v=gryta3KZKU4",
"question": "When he he was sick and he didn't want to go to the hospital and then he passed away in his sleep and then you always ask yourself, could I have done something differently?",
"category": "health",
"question_extraction": "anchor",
"confidence": 56,
"hidden": true
},
{
"slug": "insulin-doctor-this-is-the-first-sign-of-dementia-the-shocking-link-between-keto",
"title": "Insulin Doctor: This Is The First Sign Of Dementia! The Shocking Link Between Keto & Brain Decline!",
"video_url": "https://www.youtube.com/watch?v=KVXnVe8eOkM",
"question": "do you have a daily practice to find deep inner peace when you are emotionally triggered?",
"category": "health",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "insulin-expert-how-to-drain-your-liver-of-fat-do-this",
"title": "Insulin Expert: How To 'Drain' Your Liver of Fat (Do This!)",
"video_url": "https://www.youtube.com/watch?v=C7LL7VwP8Nc",
"question": "If you could have anything in the world for the rest of your life, what would it be and why?",
"category": "life",
"question_extraction": "fallback-tail",
"confidence": 100,
"hidden": false
},
{
"slug": "invest-in-this-it-ll-be-worth-1-5-million-by-2030-world-leading-investing-expert",
"title": "Invest in This \u2013 It\u2019ll Be Worth $1.5 Million by 2030 | World Leading Investing Expert",
"video_url": "https://www.youtube.com/watch?v=ZznpMh0DegE",
"question": "What is the craziest idea you ever had that turned out to be right?",
"category": "business",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "j-rgen-klopp-would-you-go-back-to-manage-lfc-the-real-reason-i-fell-in-love-with",
"title": "J\u00fcrgen Klopp: Would You Go Back To Manage LFC...? The Real Reason I Fell In Love With Liverpool!",
"video_url": "https://www.youtube.com/watch?v=UMy6GESNkDc",
"question": "Is there a particular moment, a particular conversation, a particular day that if you could you would go back and change or say something you wish you had said?",
"category": "life",
"question_extraction": "anchor",
"confidence": 56,
"hidden": false
},
{
"slug": "jaackmaate-the-untold-story-of-my-battle-with-health-anxiety-ocd-e127",
"title": "Jaackmaate: The Untold Story Of My Battle With Health Anxiety & OCD | E127",
"video_url": "https://www.youtube.com/watch?v=1DV6I5hK6ro",
"question": "Usually, we don't tell people who the question is from, right?",
"category": "health",
"question_extraction": "fallback-tail",
"confidence": 60,
"hidden": true
},
{
"slug": "james-smith-how-to-create-the-life-you-ve-always-wanted-e120",
"title": "James Smith: How To Create The Life You\u2019ve Always Wanted | E120",
"video_url": "https://www.youtube.com/watch?v=ke6KS8WuPUk",
"question": "Which you might have seen before if you've watched a podcast before, which is the previous guest asks the next guest a question, and they never know who they're writing it for. And also, I never know what the question is until I read it. So, what is your definition of luck?",
"category": "life",
"question_extraction": "marker",
"confidence": 0,
"hidden": true
},
{
"slug": "jeff-cavaliere-the-truth-about-creatine-melt-belly-fat-with-1-change",
"title": "Jeff Cavaliere: The TRUTH about Creatine! Melt Belly Fat With 1 Change!",
"video_url": "https://www.youtube.com/watch?v=epAVydG6IxI",
"question": "What would you change about you first and secondly?",
"category": "life",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "jimmy-carr-the-easiest-way-to-live-a-happier-life-e106",
"title": "Jimmy Carr: The Easiest Way To Live A Happier Life | E106",
"video_url": "https://www.youtube.com/watch?v=roROKlZhZyo",
"question": "Is an important thing with that. I mean I don't read as an immigrant in any way, shape or form, just your average white guy, but and I sound like I was privately educated, but it's interesting in the book of like people's perception of you. You have to be aware who you are and you have to be aware how you're perceived. They're both important. And you I think acceptance of that is like a it's like that thing of what's the first step on the journey to finding your purpose. It's like well you have to know who you are. You have to start with like there's an honesty to comedy of going right this is what I've got. Going back to that the first person you were sort of I guess assigned to cherup which was your mother. What was did you know at the time she was depressed?",
"category": "life",
"question_extraction": "marker",
"confidence": 4,
"hidden": true
},
{
"slug": "jimmy-fallon-i-didn-t-expect-it-to-be-this-brutal-the-hate-was-something-i-wasn-",
"title": "Jimmy Fallon: I Didn't Expect It To Be This Brutal! The Hate Was Something I Wasn\u2019t Prepared For!",
"video_url": "https://www.youtube.com/watch?v=yHCtfU3syM4",
"question": "What I'm doing.\" It's fascinating I if that's the real truth.",
"category": "beliefs",
"question_extraction": "anchor",
"confidence": 62,
"hidden": true
},
{
"slug": "jocko-willink-former-navy-seal-use-this-weird-trick-to-overcome-fear-anxiety-sel",
"title": "Jocko Willink (Former Navy Seal): Use This Weird Trick To Overcome Fear, Anxiety & Self-Doubt!",
"video_url": "https://www.youtube.com/watch?v=3eZJ_y68wsg",
"question": "If you could bring someone back who's no longer with us and have a conversation with them, who would it be and what would that conversation entail?",
"category": "life",
"question_extraction": "anchor",
"confidence": 56,
"hidden": false
},
{
"slug": "jordan-b-peterson-you-need-to-listen-to-your-wife-we-ve-built-a-lonely-sexless-s",
"title": "Jordan B Peterson: You Need To Listen To Your Wife! We've Built A Lonely & Sexless Society!",
"video_url": "https://www.youtube.com/watch?v=Hik6OY-nk4c",
"question": "How do you feel most misunderstood",
"category": "relationships",
"question_extraction": "marker",
"confidence": 40,
"hidden": true
},
{
"slug": "jordan-peterson-how-to-become-the-person-you-ve-always-wanted-to-be-e113",
"title": "Jordan Peterson: How To Become The Person You\u2019ve Always Wanted To Be | E113",
"video_url": "https://www.youtube.com/watch?v=3uLDin9A9pc",
"question": "Where all the guests that come on write a question for the next guest. So there is a question in there for you. But the guest wrote a question um which changed his life which is um are you happy?",
"category": "life",
"question_extraction": "marker",
"confidence": 0,
"hidden": true
},
{
"slug": "kamala-harris-america-is-at-breaking-point-i-m-deeply-concerned-about-the-state-",
"title": "Kamala Harris: America Is At Breaking Point & I'm Deeply Concerned About The State Of The Country!",
"video_url": "https://www.youtube.com/watch?v=D3lhrrXb4WI",
"question": "If there was a moment in the last 10 years you would do differently, what would it be and why?",
"category": "life",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "kevin-hart-they-re-lying-to-you-about-how-to-become-a-millionaire-i-was-doing-28",
"title": "Kevin Hart: They're Lying To You About How To Become A Millionaire! I Was Doing 28 Sets A Weekend!",
"video_url": "https://www.youtube.com/watch?v=5sCGZAcXKWg",
"question": "What is the advice you got as an adult that had the most significant impact on your life?",
"category": "life",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "kevin-o-leary-every-time-you-get-paid-do-this-it-10xs-your-income-without-having",
"title": "Kevin O'Leary: Every Time You Get Paid, Do This! It 10xs Your Income Without Having To Work Harder!",
"video_url": "https://www.youtube.com/watch?v=mpAZehPviLQ",
"question": "Where do you believe happiness really comes from?",
"category": "beliefs",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "klarna-founder-from-0-to-46-billion-sebastian-siemiatkowski-e98",
"title": "Klarna Founder: From $0 to $46 Billion: Sebastian Siemiatkowski | E98",
"video_url": "https://www.youtube.com/watch?v=QNYPRdyVq0s",
"question": "But how would you do that if you pass them your wealth?",
"category": "business",
"question_extraction": "fallback-tail",
"confidence": 60,
"hidden": false
},
{
"slug": "krept-from-rapper-to-building-a-17-5-million-baby-business-e164",
"title": "Krept: From Rapper To Building A \u00a317.5 Million Baby Business! | E164",
"video_url": "https://www.youtube.com/watch?v=bxdMrA36qhE",
"question": "Where the last guest asks the next guest a question. and they don't know who they're writing it for and I don't get to read the question until I open this book. So, yeah. Um, interesting. These are always quite difficult because they're always quite profound, but um, when was the last time you changed your mind about something life-changing?",
"category": "life",
"question_extraction": "marker",
"confidence": 0,
"hidden": true
},
{
"slug": "leading-childhood-trauma-doctor-10-lies-they-told-you-about-your-childhood-traum",
"title": "Leading Childhood Trauma Doctor: 10 Lies They Told You About Your Childhood Trauma! - Paul Conti",
"video_url": "https://www.youtube.com/watch?v=USE89i0kiiQ",
"question": "Who they're going to be leaving it for. And the question that's been left for you feels quite fitting and very interesting. I really like this one. It just says, it's not even written as a question. It just says, erase one regret from your life dot dot dot. Wow. You know, I think I should have paid more attention to the world around me when I was younger and more lost in trying to feel good enough at the moment. And I think that it made it harder to sort of find my path. And I think it made it harder. I think my brother hadn't found his path. And I think there was a lot of frantic anxiety or fear driven forward movement without pausing and circumspection. And it may be that we just talked about we've talked about his suicide and we've talked about that in this podcast. So it's it's kind of at the forefront of my memory. But when I think back then I probably knew well enough to be more circumspect including about what might have been going on in him or in me. And um I'm happy I got myself on a path that's led to places that feel good and that I think are generative and productive. Um I wish I had more attention to the bigger picture when I was significantly younger. Why?",
"category": "life",
"question_extraction": "marker",
"confidence": 16,
"hidden": true
},
{
"slug": "longevity-debate-shocking-weight-loss-truth-they-ve-been-hiding-this-for-years",
"title": "Longevity Debate: SHOCKING Weight Loss Truth! They've Been Hiding This For YEARS!",
"video_url": "https://www.youtube.com/watch?v=P1CeHGJOX5g",
"question": "How do you do that?",
"category": "beliefs",
"question_extraction": "fallback-tail",
"confidence": 72,
"hidden": true
},
{
"slug": "louis-theroux-the-thing-that-makes-me-great-at-work-makes-me-bad-at-life-e198",
"title": "Louis Theroux: \"The Thing That Makes Me Great At Work, Makes Me Bad At Life!\" | E198",
"video_url": "https://www.youtube.com/watch?v=cj8ojSVgU9I",
"question": "Who the previous guest was, but the previous guest has written a question, um, for you not knowing it was for you, and they said, what is your opinion on hallucinogens?",
"category": "business",
"question_extraction": "anchor",
"confidence": 56,
"hidden": true
},
{
"slug": "louis-tomlinson-when-the-police-knocked-i-just-knew-the-room-was-cold-that-day",
"title": "Louis Tomlinson: When The Police Knocked... I Just Knew! \"The Room Was Cold That Day\".",
"video_url": "https://www.youtube.com/watch?v=lylGyddTiGg",
"question": "If you are a high achiever and performer, have you prioritized the most important thing?",
"category": "general",
"question_extraction": "anchor",
"confidence": 96,
"hidden": true
},
{
"slug": "matt-hancock-opens-up-about-his-affair-mistakes-the-pandemic-e121",
"title": "Matt Hancock: Opens Up About His Affair, Mistakes & The Pandemic | E121",
"video_url": "https://www.youtube.com/watch?v=OMfc98lOw_M",
"question": "Is question for you. If you were lying on your deathbed, what three things would you want to have achieved in life?",
"category": "life",
"question_extraction": "marker",
"confidence": 34,
"hidden": true
},
{
"slug": "matthew-mcconaughey-the-silent-crisis-no-one-is-talking-about-i-sabotaged-my-own",
"title": "Matthew McConaughey: The Silent Crisis No One Is Talking About! I Sabotaged My Own Career!",
"video_url": "https://www.youtube.com/watch?v=QMzxNfX-uAg",
"question": "What is your greatest weakness?",
"category": "business",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "mel-robbins-this-one-hack-will-unlock-your-happier-life-e108",
"title": "Mel Robbins: This One Hack Will Unlock Your Happier Life | E108",
"video_url": "https://www.youtube.com/watch?v=0kOtvoX88J0",
"question": "Which is in the diary, the famous diary of a CEO, the previous guest always writes a question for the next guest that's coming and they don't know who they are. Okay. And these guests, they're so diverse. It's always so fascinating and they never know who they're writing it for, which is also interesting. The previous guest wrote, \"What is the one regret you have, if you have any at all?",
"category": "life",
"question_extraction": "marker",
"confidence": 0,
"hidden": true
},
{
"slug": "michelle-obama-this-is-a-scam-people-were-running-from-us-because-we-were-black",
"title": "Michelle Obama: This Is A Scam! People Were Running From Us Because We Were Black!",
"video_url": "https://www.youtube.com/watch?v=D67eWcX2XYQ",
"question": "Who would it be?",
"category": "relationships",
"question_extraction": "anchor",
"confidence": 74,
"hidden": true
},
{
"slug": "minute-by-minute-of-what-happens-if-a-nuclear-bomb-hits-how-to-survive-it",
"title": "Minute By Minute Of What Happens If A Nuclear Bomb Hits & How To Survive It!",
"video_url": "https://www.youtube.com/watch?v=asmaLnhaFiY",
"question": "What is the last thing you changed your mind about?",
"category": "life",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "mohnish-pabrai-fastest-way-to-financial-freedom-proven-playbook-for-quitting-you",
"title": "Mohnish Pabrai: FASTEST Way To Financial Freedom! Proven Playbook For Quitting Your 9-5 In 9 Months!",
"video_url": "https://www.youtube.com/watch?v=qgeQ5kMVwRA",
"question": "If you could go anywhere right now instantly, where would you go?",
"category": "life",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "molly-mae-how-she-became-creative-director-of-plt-at-22-110",
"title": "Molly Mae: How She Became Creative Director Of PLT At 22 | 110",
"video_url": "https://www.youtube.com/watch?v=6WgIOKFLrHY",
"question": "Like you've achieved enough and you've done enough and to be to be happy, you know, do you feel like you're enough?",
"category": "life",
"question_extraction": "fallback-tail",
"confidence": 38,
"hidden": true
},
{
"slug": "mrballen-former-navy-seal-if-you-feel-lost-here-s-how-to-turn-your-life-around-i",
"title": "MrBallen (Former Navy SEAL): If You Feel Lost, Here's How To Turn Your Life Around In 2025!",
"video_url": "https://www.youtube.com/watch?v=rDyTyppGxSg",
"question": "What do you see as the most desirable future for the New Media podcast world",
"category": "business",
"question_extraction": "marker",
"confidence": 40,
"hidden": true
},
{
"slug": "neil-degrasse-tyson-the-harsh-truth-about-horoscopes-sorry-but-it-s-true",
"title": "Neil deGrasse Tyson: The Harsh Truth About Horoscopes (sorry but it\u2019s true)",
"video_url": "https://www.youtube.com/watch?v=gW3vVIFRVhw",
"question": "How good are you at knowing what you will regret and is there anything you do regret?",
"category": "beliefs",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "neuroscientist-dr-tara-swart-evidence-we-can-communicate-after-death",
"title": "Neuroscientist (Dr. Tara Swart): Evidence We Can Communicate After Death!",
"video_url": "https://www.youtube.com/watch?v=yfEQRqFo2bI",
"question": "What is the best thing that someone has done for you?",
"category": "relationships",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "nischa-shah-they-re-lying-to-you-about-buying-a-house-my-652510-rule-built-200k-",
"title": "Nischa Shah: They\u2019re Lying To You About Buying a House! My 652510 Rule Built $200K Passive Income!",
"video_url": "https://www.youtube.com/watch?v=NxTsA72O5x0",
"question": "Could you go back if you're wrong?",
"category": "general",
"question_extraction": "fallback-tail",
"confidence": 72,
"hidden": true
},
{
"slug": "no-1-brain-scientist-your-brain-is-lying-to-you-here-s-how-i-discovered-the-trut",
"title": "No.1 Brain Scientist: Your Brain Is Lying To You! Here's How I Discovered The Truth!",
"video_url": "https://www.youtube.com/watch?v=hQaN5w3YwtM",
"question": "What does that mean?",
"category": "beliefs",
"question_extraction": "fallback-tail",
"confidence": 62,
"hidden": true
},
{
"slug": "no-1-christianity-expert-the-truth-about-christianity-the-case-for-jesus-histori",
"title": "No.1 Christianity Expert: The Truth About Christianity! The Case For Jesus (Historian's Proof)",
"video_url": "https://www.youtube.com/watch?v=nrwNSSyKuD4",
"question": "What is one risk that you should be taking in your life but aren't currently?",
"category": "life",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "no-1-money-saving-experts-do-not-buy-a-house-putting-money-in-a-bank-makes-you-p",
"title": "No.1 Money Saving Experts: Do Not Buy A House! Putting Money In A Bank Makes You Poorer!",
"video_url": "https://www.youtube.com/watch?v=XTGlde-Pbd8",
"question": "Is there anything else that you guys would like me to link that you think is going to be pertinent to the audience?",
"category": "business",
"question_extraction": "fallback-tail",
"confidence": 62,
"hidden": true
},
{
"slug": "no-1-neuroscientist-new-research-your-life-your-work-your-sex-life-will-get-bori",
"title": "No.1 Neuroscientist: NEW RESEARCH Your Life, Your Work & Your Sex Life Will Get Boring! (THE FIX)",
"video_url": "https://www.youtube.com/watch?v=7KTwmEGsY5g",
"question": "What is one thing that people who are listening could do that you know about that would improve their lives how about",
"category": "life",
"question_extraction": "marker",
"confidence": 30,
"hidden": true
},
{
"slug": "no-1-neuroscientist-your-whole-life-might-be-a-prediction",
"title": "No.1 Neuroscientist: Your Whole Life Might Be a Prediction",
"video_url": "https://www.youtube.com/watch?v=rCtvAvZtJyE",
"question": "How about then how to live life without your identity making you unhappy?",
"category": "life",
"question_extraction": "anchor",
"confidence": 96,
"hidden": true
},
{
"slug": "no-1-sugar-expert-you-ve-been-sold-a-lie-about-healthy-food",
"title": "No. 1 Sugar Expert: You've Been Sold A Lie About \"Healthy\" Food!",
"video_url": "https://www.youtube.com/watch?v=ZE_H7rijrVk",
"question": "How would you describe the journey of life and how to approach it?",
"category": "beliefs",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "oz-pearlman-mentalist-this-small-mistake-makes-people-dislike-you-they-do-this-t",
"title": "Oz Pearlman (Mentalist): This Small Mistake Makes People Dislike You! They Do This, They\u2019re Lying!",
"video_url": "https://www.youtube.com/watch?v=4qfxHfBJ3Mw",
"question": "If you could live forever, would you?",
"category": "life",
"question_extraction": "anchor",
"confidence": 96,
"hidden": true
},
{
"slug": "passive-income-expert-buying-a-house-makes-you-poorer-than-renting",
"title": "Passive Income Expert: Buying A House Makes You Poorer Than Renting!",
"video_url": "https://www.youtube.com/watch?v=FoeQUNASmTU",
"question": "Is there anywhere else that they can get in contact with you, read your work that I should recommend?",
"category": "business",
"question_extraction": "fallback-tail",
"confidence": 62,
"hidden": true
},
{
"slug": "passive-income-expert-how-to-make-10k-per-month-in-90-days",
"title": "Passive Income Expert: How To Make $10k Per Month In 90 Days!",
"video_url": "https://www.youtube.com/watch?v=4QLWlcneJig",
"question": "What was that in particular?",
"category": "general",
"question_extraction": "anchor",
"confidence": 96,
"hidden": true
},
{
"slug": "paul-brunson-the-70-30-body-shape-is-scientifically-the-most-sexy-this-predicts-",
"title": "Paul Brunson: \"The 70/30 Body Shape Is Scientifically The Most Sexy\" & THIS Predicts Divorce!",
"video_url": "https://www.youtube.com/watch?v=i2sHBL8BjWI",
"question": "What things are you doing that are contributing to keeping you stuck or stopping you from progressing in the way that you would like oh wow",
"category": "health",
"question_extraction": "marker",
"confidence": 12,
"hidden": true
},
{
"slug": "peter-attia-anti-aging-cure-no-one-talks-about-50-chance-you-ll-die-in-a-year-if",
"title": "Peter Attia: Anti-aging Cure No One Talks About! 50% Chance You\u2019ll Die In A Year If This Happens!",
"video_url": "https://www.youtube.com/watch?v=ZxXruY7llcc",
"question": "So, could I ask you for a favor?",
"category": "general",
"question_extraction": "anchor",
"confidence": 84,
"hidden": true
},
{
"slug": "ray-dalio-we-re-heading-into-very-very-dark-times-america-the-uk-s-decline-is-co",
"title": "Ray Dalio: We\u2019re Heading Into Very, Very Dark Times! America & The UK\u2019s Decline Is Coming!",
"video_url": "https://www.youtube.com/watch?v=49RT6SQ8n0Y",
"question": "What is a book or books that you've recommended or gifted more than others and why?",
"category": "beliefs",
"question_extraction": "anchor",
"confidence": 96,
"hidden": false
},
{
"slug": "richard-branson-how-a-dyslexic-drop-out-build-a-billion-dollar-empire",
"title": "Richard Branson: How A Dyslexic Drop-out Build A Billion Dollar Empire!",
"video_url": "https://www.youtube.com/watch?v=-Fmiqik4jh0",
"question": "Where were you when you when you felt most vulnerable and why?",
"category": "general",
"question_extraction": "anchor",
"confidence": 96,
"hidden": true
},
{
"slug": "russell-howard-how-to-laugh-through-fear-anxiety-imposter-syndrome-e109",
"title": "Russell Howard: How To Laugh Through Fear, Anxiety & Imposter Syndrome | E109",
"video_url": "https://www.youtube.com/watch?v=CLcqXg0fFvY",
"question": "Is it like a No, it's just it's sort of if you're there, yeah, there's maybe it's just that weird thing of like, right, I've done 10, I can, you know, and then if you don't do 10 the first time and it falls, you got to do 20 and if it falls 30. So, do you know what I mean?",
"category": "life",
"question_extraction": "marker",
"confidence": 4,
"hidden": true
},
{
"slug": "scooter-braun-when-everything-broke-it-fixed-me",
"title": "Scooter Braun: When Everything Broke, It Fixed Me",
"video_url": "https://www.youtube.com/watch?v=j4z25zj6bmE",
"question": "If you could do one thing that fear of failure has kept you from doing, what would it be and why has it kept you from doing it?",
"category": "life",
"question_extraction": "anchor",
"confidence": 56,
"hidden": true
},
{
"slug": "secret-agent-authenticity-is-quietly-sabotaging-you-do-this-they-ll-stop-respect",
"title": "Secret Agent: Authenticity Is Quietly Sabotaging You! Do This & They'll Stop Respecting You!",
"video_url": "https://www.youtube.com/watch?v=DazRYdqZRDI",
"question": "So, could I ask you for a favor?",
"category": "relationships",
"question_extraction": "anchor",
"confidence": 84,
"hidden": true