-
Notifications
You must be signed in to change notification settings - Fork 0
/
video_data.csv
We can't make this file beautiful and searchable because it's too large.
1516 lines (1516 loc) · 580 KB
/
video_data.csv
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,ID,Published_date,Tags,Views,Likes,Comments,Duration,Captoins
Why Your Cat Looks Like That: Genetics: Crash Course Biology #31,YnJPbphsoMY,2024-02-20T17:00:21Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'microscopes', 'biology', 'sammy ramsey', 'dr. sammy ramsey', 'samuel ramsey', 'dr. buggs', 'ap bio', 'bio', 'complexly', 'sci show', 'hank green', 'john green']",32963,1416,24,PT11M48S,true
Black American History Arts & Culture | Compilation,bfH3fkIsc5U,2024-02-16T16:30:06Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Clint Smith', 'Hank Green', 'John Green', 'Black American History', 'Zora Neale Hurston', 'Phillis Wheatley', 'harlem renaissance', 'toni morrison', 'Complexly', 'black history month', 'black history month 2024', 'lecture', 'compilation', 'february', 'american history', 'harlem history', 'black literature', 'black art', 'black history facts', 'black history video', 'rap', 'hip hop', 'black american history', 'black american culture', 'black american art']",16596,666,27,PT1H13M13S,true
Why Are All Humans Unique? Meiosis: Crash Course Biology #30,pj1oFx42d48,2024-02-13T17:00:39Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'microscopes', 'biology', 'sammy ramsey', 'dr. sammy ramsey', 'samuel ramsey', 'dr. buggs', 'ap bio', 'bio']",45926,1394,36,PT12M50S,true
Mitosis and the Cell Cycle: Crash Course Biology #29,skPOXcVvS5c,2024-02-06T17:00:44Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education']",47789,1338,14,PT11M11S,true
Photosynthesis: The Original Solar Power: Crash Course Biology #28,-ZRsLhaukn8,2024-01-30T17:00:00Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'microscopes', 'biology', 'sammy ramsey', 'dr. sammy ramsey', 'samuel ramsey', 'dr. buggs', 'ap bio', 'bio', 'photosynthesis', 'chloroplasts', 'light-dependent reactions', 'calvin cycle', 'carbon fixation']",52459,1185,26,PT13M4S,true
How do cells get their energy? (Electron Transport Chain): Crash Course Biology #27,HeO3yagexTw,2024-01-23T17:00:13Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'microscopes', 'biology', 'sammy ramsey', 'dr. sammy ramsey', 'samuel ramsey', 'dr. buggs', 'ap bio', 'bio', 'atp', 'adenosine triphosphate', 'cellular respiration', 'electron transport chain', 'krebs cycle', 'glycolysis', 'citric acid cycle', 'pyruvate']",59867,1707,48,PT14M2S,true
How Do We Get Energy? (Chemical Reactions): Crash Course Biology #26,62cN8Z5Velo,2024-01-16T17:00:05Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'microscopes', 'biology', 'sammy ramsey', 'dr. sammy ramsey', 'samuel ramsey', 'dr. buggs', 'ap bio', 'bio', 'atp', 'celllular energy', 'thermodynamics', 'energy', 'adenosine triphosphate', 'potential energy', 'phosphate bonds', 'phosphate groups', 'hydrolysis', 'entropy', 'exergonic reactions', 'endergonic reactions', 'reactants', 'enzymes', 'metabolic pathways']",38552,1349,41,PT13M27S,true
How Do Cells Communicate? (Cell Communication): Crash Course Biology #25,p15KSbNxb28,2024-01-09T17:00:44Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'microscopes', 'biology', 'sammy ramsey', 'dr. sammy ramsey', 'samuel ramsey', 'dr. buggs', 'ap bio', 'bio', 'cell communication', 'cellular communication', 'cells', 'transduction', 'estrogen', 'progesterone', 'autocrine', 'endocrine signaling', 'hormones', 'adrenaline']",50536,1702,57,PT11M10S,true
How Does Stuff Get Into Your Cells? (Cell Membranes): Crash Course Biology #24,9Ia8zH-qMZw,2023-12-19T17:00:06Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'microscopes', 'biology', 'sammy ramsey', 'dr. sammy ramsey', 'samuel ramsey', 'dr. buggs', 'ap bio', 'bio', 'membrane', 'cell membrane', 'lipid', 'phospholipid bilayer', 'membrane structure', 'membrane transport']",51890,1412,31,PT13M20S,true
A Tour of the Cell: Crash Course Biology #23,jsDxw63QqK0,2023-12-12T17:00:44Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'microscopes', 'biology', 'sammy ramsey', 'dr. sammy ramsey', 'samuel ramsey', 'dr. buggs', 'ap bio', 'bio', 'cell', 'mitochondria', 'chloroplast', 'vacuole', 'endoplasmic reticulum', 'nucleus', 'cell biology', 'eukaryotic', 'endosymbiosis', 'modern cell theory', 'classical cell theory', 'Robert Hooke']",86541,2156,43,PT13M52S,true
How We See What We Can't See (Microscopes): Crash Course Biology #22,V66WBvI7Ufw,2023-12-05T17:00:31Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'microscopes', 'biology', 'sammy ramsey', 'dr. sammy ramsey', 'samuel ramsey', 'dr. buggs', 'ap bio', 'bio', 'microscopy', 'cryoelectron microscopy', 'light microscopes', 'how microscopes work']",47744,1407,10,PT13M1S,true
A Love Letter to H2O: Water & pH: Crash Course Biology #21,zheKWEkW94o,2023-11-28T17:01:00Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'science', 'biology', 'crash course biology', 'ap bio', 'bio', 'water', 'polarity', 'h2o', 'sammy ramsey', 'dr sammy ramsey', 'samuel ramsey', 'dr buggs']",46999,1460,32,PT12M52S,true
What is Life Made of? (Carbon & Biological Molecules): Crash Course Biology #20,y7raEBOvLwU,2023-11-14T17:00:52Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'microscopes', 'biology', 'sammy ramsey', 'dr. sammy ramsey', 'samuel ramsey', 'dr. buggs', 'ap bio', 'bio', 'polymerization', 'hydrolysis', 'chemical bonds', 'biological molecules', 'carbon', 'hydrogen', 'nitrogen', 'oxygen', 'phosphorous', 'sulfur']",71378,1890,36,PT13M53S,false
How Did Humans Evolve? Crash Course Biology #19,TmNHk7kIxr8,2023-11-07T17:00:23Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'microscopes', 'biology', 'sammy ramsey', 'dr. sammy ramsey', 'samuel ramsey', 'dr. buggs', 'ap bio', 'bio', 'evolution', 'hominins']",277208,8935,127,PT12M49S,true
Humans Develop Butt First (and other insights from the Tree of Life): Crash Course Biology #18,Aa1dGBKgGVc,2023-10-31T16:00:08Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'bio', 'biology', 'ap bio', 'evolution', 'prokaryote', 'eukaryote', 'protist', 'animals', 'plants', 'fungi', 'bacteria', 'tree of life', 'phylogeny', 'dr sammy ramsey', 'samuel ramsey', 'sammy ramsey', 'dr sammy', 'dr buggs', 'crash course biology']",56421,1686,43,PT13M9S,true
How We're All Related (Phylogeny): Crash Course Biology #17,YM6Ekb5De2o,2023-10-24T16:00:34Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'microscopes', 'biology', 'sammy ramsey', 'dr. sammy ramsey', 'samuel ramsey', 'dr. buggs', 'ap bio', 'bio', 'taxonomy', 'systematics', 'phylogeny', 'genetics', 'dr. Motoo Kimura', 'phylogenetic trees', 'evolution']",47578,1612,23,PT13M51S,true
How Did Life Begin? (Evolutionary History): Crash Course Biology #16,4mxJbgdiyIY,2023-10-17T16:00:04Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'microscopes', 'biology', 'sammy ramsey', 'dr. sammy ramsey', 'samuel ramsey', 'dr. buggs', 'ap bio', 'bio', 'evolution', 'macroevolution', 'rna', 'dna']",97566,2756,104,PT13M10S,true
Where Do Species Come From? (Speciation): Crash Course Biology #15,WAUX8dXu6aw,2023-10-10T16:00:20Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'science', 'biology', 'bio', 'ap bio', 'studying', 'learning', 'stem', 'speciation', 'evolution', 'biodiversity', 'dr sammy', 'dr buggs', 'sammy ramsey', 'samuel ramsey']",65539,1980,35,PT12M57S,true
Why do we have different skin colors? (Population Genetics): Crash Course Biology #14,4joZpdXeS4A,2023-10-03T16:00:02Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'bio', 'biology', 'ap bio', 'studying', 'learning', 'evolution', 'race', 'human genetics', 'melanin', 'skin color', 'clines', 'ancestry', 'human evolution', 'dr sammy', 'dr buggs', 'samuel ramsey', 'sammy ramsey']",107792,3851,138,PT12M56S,true
Natural Selection: Life's Way of Stayin' Alive: Crash Course Biology #13,i-VeKZeyHZs,2023-09-19T16:00:27Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sammy ramsey', 'samuel ramsey', 'natural selection', 'evolution', 'biology', 'bio', 'ap bio', 'science', 'learning', 'dr sammy', 'dr buggs']",53511,1475,36,PT12M43S,true
Microevolution: What's An Allele Got to Do With It?: Crash Course Biology #12,fBOrzQP423A,2023-09-12T16:00:24Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'biology', 'ap bio', 'evolution', 'population evolution', 'genetics', 'gene flow', 'genetic drift', 'alele', 'study', 'science', 'stem', 'crash course biology', 'dr sammy', 'dr bugs', 'dr buggs', 'sammy ramsey', 'Hardy-Weinberg equation']",53451,1653,42,PT12M32S,true
The Future of Botany: Crash Course Botany #15,eLt9itd3KhA,2023-09-07T16:35:07Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'botany', 'alexis nikole nelson', 'blackforager', 'astrobotany', 'plant communication', 'ethnobotany', 'plants in space', 'plant science', 'plant senses']",49845,1653,57,PT12M37S,true
The Weird Thing About A Giraffe's Neck Nerve: Crash Course Biology #11,2TSIUt-lHyo,2023-09-05T16:00:02Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education']",49707,1841,43,PT13M58S,true
Can Planting Trees Fix Climate Change? (Plants & Biomes): Crash Course Botany #14,FlkHfAWadaM,2023-08-31T16:00:20Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'botany', 'plant science', 'alexis nikole nelson', 'blackforager', 'ecology', 'conservation', 'climate change', 'biomes', 'ecosystems']",44602,1727,27,PT12M39S,true
Are We in the Middle of Earth's Sixth Mass Extinction: Crash Course Biology #10,IALw687nswo,2023-08-29T16:00:10Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'conservation biology']",37440,1157,29,PT13M53S,true
How We ALL Get Our Energy (Plants & Ecosystems): Crash Course Botany #13,oZtUFJAJ3lU,2023-08-24T16:00:39Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'botany', 'plants', 'agriculture', 'alexis nikole nelson', 'blackforager', 'ecosystems', 'autotrophs', 'heterotrophs', 'food webs', 'keystone species']",35737,1201,26,PT13M42S,true
The Effects of Climate Change: Crash Course Biology #9,HsAUGbUgx6Y,2023-08-22T16:00:10Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education']",44980,1390,38,PT12M19S,true
The Secret Social Lives of Plants (Population & Community Ecology): Crash Course Botany #12,b8avl_V8Jbo,2023-08-17T16:00:25Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'botany', 'plants', 'agriculture', 'alexis nikole nelson', 'blackforager', 'symbiotic', 'symbyosis', 'community ecology', 'ecology', 'population ecology', 'conservation', 'everglades']",39571,1453,42,PT13M26S,true
What is Climate Change?: Crash Course Biology #8,Y1mPWVzaGQY,2023-08-15T15:00:19Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sammy ramsey', 'dr sammy ramsey', 'samuel ramsey', 'dr bugs', 'dr sammy', 'biology', 'ap bio', 'climate change', 'greenhouse effect', 'eunice foote', 'nicole hernandez hammer', 'environmental justice']",70371,2217,119,PT13M58S,true
GMOs are Nothing New: Plant Breeding & Gene Editing: Crash Course Botany #11,5ryUVuISxzg,2023-08-10T16:00:04Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'botany', 'plants', 'agriculture', 'alexis nikole nelson', 'blackforager', 'GMOs', 'plant genetics', 'plant breeding']",47704,1864,98,PT14M3S,true
How Did We Save the Bald Eagle? (Population Ecology) Crash Course Biology #7,KfHYN6tZnpU,2023-08-08T16:00:26Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'biology', 'crash course biology', 'ap bio', 'sammy ramsey', 'samuel ramsey', 'dr sammy', 'dr bugs', 'ecology', 'population ecology', 'conservation ecology', 'science', 'stem', 'learning']",41099,1182,28,PT13M43S,true
What Do Pea Plants Have To Do With Your Eye Color? (Mendelian Genetics): Crash Course Botany #10,Ox4bHA9fGGY,2023-08-03T16:00:15Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'botany', 'plant science', 'plant genetics', 'mendelian genetics', 'gregor mendel', 'pea plants', 'alelle', 'phenotype', 'genotype', 'haploid', 'diploid', 'plant breeding', 'inherited traits', 'alexis nikole nelson', 'blackforager', 'crash course botany']",52451,1580,50,PT13M57S,true
Secret Friendships of Species: Crash Course Episode 6,yGYnwMSflBU,2023-08-01T16:00:47Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'community ecology', 'pets', 'secret language of animals']",55701,1698,30,PT14M43S,true
Why Do Flowers Exist? (Gymnosperms & Angiosperms): Crash Course Botany #9,tnIi9fzXPXk,2023-07-27T16:00:47Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'plants', 'agriculture', 'alexis nikole nelson', 'blackforager', 'gymnosperm', 'gymnosperms', 'angiosperm', 'angiosperms', 'seeds', 'flowers', 'else marie friis', 'flower structure', 'plant science']",67869,1841,64,PT14M20S,true
Why Don't These Plants Need Seeds? (Moss and Ferns): Crash Course Botany #8,usKrCTtArNc,2023-07-20T16:00:44Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'alexis nikole nelson', 'blackforager', 'black forager', 'botany', 'plant science', 'science', 'bryophytes', 'seedless vascular plants', 'liverwort', 'hornwort', 'moss', 'learning', 'nature']",55211,2135,73,PT13M37S,true
Why Did All These Elephants Die? (Intro to Ecology): Crash Course Biology #5,aO3Yp45zmw8,2023-07-18T16:00:02Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'biology', 'crash course biology', 'AP Bio', 'samuel ramsey', 'dr sammy', 'sammy ramsey', 'dr bugs', 'ecology']",53556,1632,35,PT14M25S,true
How Life is Organized: Crash Course Biology #4,cjR5zPrVjTc,2023-07-11T16:00:30Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Sammy Ramsey', 'Dr. Sammy', 'Dr. Bugs', 'biology', 'AP Bio', 'bio', 'Asmeret Asefaw Berhe', 'Crash Course Biology']",76045,2100,52,PT14M2S,true
How Do We Categorize Plants?: Crash Course Botany #7,rrLZPDGNr6w,2023-07-06T05:00:20Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'botany']",50706,2156,119,PT13M23S,true
How Did Plants Evolve?: Crash Course Botany #6,ciGqnGFWqBs,2023-06-29T16:00:22Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'plants', 'botany', 'plant science', 'evolution', 'ecology', 'biology', 'alexis nikole nelson', 'blackforager']",66659,2562,87,PT14M45S,true
What Biologists Do: Crash Course Biology #3,rgZhDoPgzK8,2023-06-27T16:00:41Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Sammy Ramsey', 'Dr. Sammy', 'Dr. Bugs', 'Biology', 'Crash Course Biology', 'biologist', 'bio', 'AP Bio']",71022,2134,56,PT12M38S,true
Photosynthesis and Cellular Respiration: Crash Course Botany #5,WzOrF5W4l3Q,2023-06-22T16:00:21Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'botany', 'photosynthesis', 'mitochondria', 'chloroplast', 'ribosomes', 'cellular respiration', 'plants', 'plant science', 'alexis nikole nelson', 'blackforager', 'science']",113527,2700,82,PT13M,true
What Do These Creepy Plant Mouths Do? (Plant Tissues): Crash Course Botany #4,pqosCR6J2qo,2023-06-15T16:00:38Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'botany', 'photosynthesis', 'plant fibers']",62714,2587,58,PT12M44S,true
The Scientific Method: Crash Course Biology #2,xOLcZMw0hd4,2023-06-13T16:00:44Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Sammy Ramsey', 'Dr. Sammy', 'Dr. Bugs', 'biology', 'scientific method', 'AP Bio', 'bio']",150881,3562,108,PT15M9S,true
Introduction to Biology: Crash Course Biology #1,tZE_fQFK8EY,2023-06-06T16:00:39Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Sammy Ramsey', 'Dr. Sammy', 'Dr. Bugs', 'biology', 'AP Bio']",317175,8667,284,PT13M27S,true
Plant Cells & Hormones: Crash Course Botany #3,y9BLCfcUcFg,2023-06-01T16:03:13Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'botany', 'plants', 'agriculture', 'alexis nikole nelson', 'blackforager', 'cells', 'auxin', 'gibberellins', 'ethylene', 'cytokinins', 'abscisic acid', 'plant hormones', 'photosynthesis', 'vacuoles', 'chloroplasts', 'organelles', 'Robert Hooke']",90962,4555,141,PT12M58S,true
What Are Plants Made Of? Crash Course Botany #2,9AEzixu_xZk,2023-05-25T16:00:10Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'botany', 'plants', 'agriculture', 'alexis nikole nelson', 'blackforager', 'stem cells', 'meristems', 'leaves', 'fruits', 'vegetables', 'crash course botany', 'stems', 'roots', 'plant organs', 'are tomatoes fruits', 'are tomatoes vegetables']",141134,7059,263,PT16M30S,true
NEW Crash Course Biology Series!,PWGBqskV1UQ,2023-05-23T16:00:14Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'biology', 'sammy ramsey', 'samuel ramsey', 'dr bugs', 'ap bio']",145004,4593,235,PT4M19S,true
What is Botany? Crash Course Botany #1,2th5lAd-77A,2023-05-18T16:00:01Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Alexis Nikole Nelson', 'BlackForager', 'botany', 'plants', 'plant science', 'science', 'nature', ""Maxi'diwiac"", 'Edmond Albius', 'Buffalo Bird Woman']",326542,29889,1285,PT13M41S,true
Crash Course Botany Preview!,WACSnwKby2Y,2023-05-11T18:00:12Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'botany', 'plants', 'agriculture', 'alexis nikole nelson', 'blackforager']",127565,9280,525,PT3M20S,true
How Can We Respond to Climate Change?: Crash Course Climate & Energy #12,3p51wKUuwOU,2023-04-26T16:00:07Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education']",58548,0,113,PT14M7S,true
The Hidden Price of Climate Change: Crash Course Climate & Energy #11,ML70W4O6F4E,2023-04-12T16:00:24Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'climate', 'climate change', 'climate and energy', 'apes', 'environmental science', 'fossil fuels', 'energy', 'M Jackson']",56428,1583,113,PT13M40S,true
International Climate Agreements: Crash Course Climate & Energy #10,Z5YvjG4lTpQ,2023-04-05T16:00:17Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education']",36365,0,56,PT13M31S,true
Are Natural Disasters Actually Natural? (Climate Justice): Crash Course Climate & Energy #9,7ODrQW0vSmA,2023-03-22T19:30:01Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'climate', 'climate change', 'climate and energy', 'apes', 'environmental science', 'fossil fuels', 'energy', 'M Jackson']",63754,0,70,PT14M44S,true
How Will Climate Change Continue to Affect Us?: Crash Course Climate & Energy #8,eVUuwHGLIYo,2023-03-15T16:00:33Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'climate', 'climate change', 'climate and energy', 'apes', 'environmental science', 'fossil fuels', 'energy', 'M Jackson']",62135,0,142,PT14M22S,true
Can We Capture Greenhouse Gases?: Crash Course Climate & Energy #7,bjIXPPlg1TQ,2023-03-02T18:00:25Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'M Jackson', 'climate', 'energy', 'fast fashion', 'greenhouse gas']",56702,0,64,PT13M26S,true
Can We Gas Up... Without Gas?: Crash Course Climate & Energy #6,1-YtC3nwWwU,2023-02-15T17:00:01Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'climate', 'climate change', 'climate and energy', 'apes', 'environmental science', 'fossil fuels', 'energy', 'M Jackson', 'electric vehicles', 'electric cars']",64733,1690,86,PT14M10S,true
Can We Keep Warm and Stay Cool Without Fossil Fuels?: Crash Course Climate & Energy #5,3yH5TuLYRcs,2023-02-01T18:00:01Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'climate', 'climate change', 'climate and energy', 'apes', 'environmental science', 'fossil fuels', 'energy', 'M Jackson']",70053,2004,113,PT14M2S,true
How Can We Store Renewable Energy?: Crash Course Climate & Energy #4,rDkaZWirNME,2023-01-18T17:00:35Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'climate', 'climate change', 'climate and energy', 'apes', 'environmental science', 'fossil fuels', 'energy', 'M Jackson', 'duck curve', 'nuclear', 'carbon emissions', 'baseload', 'electricity']",97200,0,151,PT13M8S,true
Can We Make Electricity Without Fossil Fuels?: Crash Course Climate & Energy #3,pT7vRUGeEtA,2023-01-04T17:00:29Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'climate', 'climate change', 'climate and energy', 'apes', 'environmental science', 'fossil fuels', 'energy', 'M Jackson', 'green premium', 'nuclear power', 'wind power', 'solar power']",111535,3513,380,PT12M53S,true
Why Do We Release So Much Gas?: Crash Course Climate & Energy #2,Q26Z4JWVZvk,2022-12-21T17:00:15Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'climate', 'climate change', 'climate and energy', 'apes', 'environmental science', 'fossil fuels', 'energy', 'M Jackson']",77659,2210,185,PT14M5S,true
What is Climate Change?: Crash Course Climate & Energy #1,9PFhrpyWV-w,2022-12-07T17:00:05Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'climate', 'climate change', 'climate and energy', 'apes', 'environmental science', 'fossil fuels', 'energy', 'M Jackson']",160417,3716,155,PT13M3S,true
Crash Course Climate & Energy Preview,dhFlDkES6Ws,2022-11-30T17:00:32Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'climate', 'climate change', 'climate and energy', 'apes', 'environmental science', 'fossil fuels', 'energy', 'M Jackson']",84629,2594,126,PT4M7S,true
Black Lives Matter: Crash Course Black American History #51,i_OU4EcWQ6I,2022-11-09T18:55:38Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education']",164829,0,445,PT13M21S,true
Barack Obama: Crash Course Black American History #50,VKWEwBxDd9k,2022-11-02T21:39:23Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education']",135518,4569,279,PT14M51S,true
Hurricane Katrina: Crash Course Black American History #49,VmqZvlj07-w,2022-10-19T21:07:32Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education']",135153,4876,242,PT15M4S,true
The Future of Public Health: Crash Course Public Health #10,VvRr0oL6s_E,2022-10-06T17:00:30Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'health', 'public health', 'vanessa hill', 'covid', 'dr. fauci']",90845,2064,67,PT12M50S,true
Toni Morrison: Crash Course Black American History #48,CbzLFgW_Wgc,2022-10-05T23:44:43Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'toni morrison', 'sula', 'beloved', 'black american history']",76561,3207,84,PT12M1S,true
Global Health: Crash Course Public Health #9,2rfRk_mTf7M,2022-09-29T17:00:02Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'public health', 'vanessa hill', 'global health', 'covid', 'WHO']",69547,1458,40,PT15M31S,true
How Laws Affect Your Health: Crash Course Public Health #8,Z08sh4PN8Lc,2022-09-22T17:00:30Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'public health', 'vanessa hill', 'health policy', 'covid', 'covid-19']",63355,1628,67,PT13M53S,true
Rap and Hip Hop: Crash Course Black American History #47,RHCA5b9TkVg,2022-09-20T19:00:08Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'rap', 'hip hop', 'black american history', 'music history', 'tupac', 'notorious big']",241943,6966,284,PT14M55S,true
Which Healthcare System is Best? Crash Course Public Health #7,vxvhGj9fA3g,2022-09-15T17:00:29Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education']",86484,2404,158,PT12M45S,true
Intro to Epidemiology: Crash Course Public Health #6,_luU3I03JwE,2022-09-08T17:00:18Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education']",119935,2574,35,PT14M49S,true
Anita Hill and Clarence Thomas: Crash Course Black American History #46,t_uMce7lK94,2022-09-06T23:15:00Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education']",74096,3030,129,PT12M12S,true
Stress is Bad for Your Health: Crash Course Public Health #5,rKaG9VaM0pw,2022-09-01T17:00:32Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education']",106901,2931,71,PT13M5S,true
Los Angeles Uprisings: Crash Course Black American History #45,prKS4YsSnmE,2022-08-26T18:00:19Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education']",88881,3336,96,PT12M29S,true
How Society Affects Your Health: Crash Course Public Health #4,CcdSeqqMR5M,2022-08-25T17:00:13Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Vanessa hill', 'apha', 'public health', 'covid', 'housing', 'healthcare']",76475,2208,54,PT13M49S,true
How the Environment Affects Your Health: Crash Course Public Health #3,g3vf0I_j9kk,2022-08-18T17:00:23Z,"['Crash Course', 'crashcourse', 'education', 'Vanessa hill', 'apha', 'public health', 'climate change', 'environmental justice', 'environment', 'pollution']",110006,2727,74,PT14M25S,true
How Your Biology Affects Your Health: Crash Course Public Health #2,SzsifG0UvTM,2022-08-11T17:00:14Z,"['Crash Course', 'crashcourse', 'education', 'Vanessa hill', 'apha', 'public health', 'covid', 'camera jones', 'health inequities', 'biological determinants', 'determinants of health', 'environmental', 'social', 'determinants', 'epigenetics', 'Dutch Hunger Winter']",89040,2709,71,PT12M42S,true
Jesse Jackson: Crash Course Black American History #44,C2vl1mixqLU,2022-08-09T20:11:56Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",64236,2624,70,PT11M31S,true
What is Public Health? Crash Course Public Health #1,5aww-Bpgkf4,2022-08-04T17:22:20Z,"['Crash Course', 'crashcourse', 'education', 'Vanessa hill', 'apha', 'public health', 'covid', 'health inequities', 'camara jones']",116072,3863,98,PT12M44S,true
Shirley Chisholm: Crash Course Black American History #43,ATfkyVN7M5c,2022-07-27T21:56:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",80083,3272,56,PT11M46S,true
Crash Course Public Health Preview!,PjdJ19ugXzQ,2022-07-21T18:02:35Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Vanessa hill', 'apha', 'public health', 'covid', 'determinants of health', 'health equity']",76559,2703,115,PT4M40S,true
Celebration and Lifelong Learning | How to College | Crash Course,ItlvHgot7MQ,2022-07-14T22:00:10Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",39346,1465,41,PT7M58S,true
The War on Drugs: Crash Course Black American History #42,shGpC_WVDQk,2022-07-13T13:18:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",172504,7144,105,PT13M4S,true
Finances After College | How to College | Crash Course,wlM0WTPNup0,2022-07-07T22:00:23Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",47378,1571,30,PT8M41S,true
After College | How to College | Crash Course,i4XTHxWBOXs,2022-06-30T22:00:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",53609,1927,37,PT9M38S,true
Marsha P. Johnson and the Stonewall Rebellion: Crash Course Black American History #41,ftcvaJCKVjs,2022-06-29T22:57:56Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",92290,5027,86,PT11M59S,true
How to Graduate | How to College | Crash Course,V16qfhdIK6M,2022-06-23T19:00:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",45787,1156,52,PT9M32S,true
Your Mental Health in College | How to College | Crash Course,l_9PchV6PIc,2022-06-16T22:00:31Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",102097,3137,102,PT9M7S,true
Women and the Black Power Movement: Crash Course Black American History #40,j-OMR3h4Isw,2022-06-14T21:00:54Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",94474,3585,75,PT11M4S,true
How to Work in College | Crash Course | How to College,rnjeJxO_vs4,2022-06-02T22:00:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",85245,2769,70,PT8M6S,true
How to Transfer Colleges | Crash Course | How to College,-RQdkW-em-g,2022-05-26T22:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",77881,2074,43,PT8M40S,true
The Black Panther Party: Crash Course Black American History #39,ao0Jozn_7HM,2022-05-24T22:11:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",334088,13026,143,PT13M48S,true
Finding Your Place | How to College | Crash Course,8Nkxbovj96U,2022-05-19T22:00:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",52747,1268,45,PT8M25S,true
Choosing a Specialization | Crash Course | How to College,pTyMNvoBbSk,2022-05-12T22:00:25Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",70130,1705,43,PT9M20S,false
Malcolm X and the Rise of Black Power: Crash Course Black American History #38,8woU9Rq0cPI,2022-05-10T20:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",278098,9304,85,PT14M25S,true
How to Choose a Major | Crash Course | How to College,eGR2Yf6yBRA,2022-05-05T22:00:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",225737,5497,73,PT11M24S,true
Crash Course Office Hours: World History,3k0v5ZvZrVQ,2022-04-26T18:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",269224,1954,34,PT57M52S,true
Crash Course Office Hours: Geography,jMS-ouZNIzg,2022-04-25T18:00:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",72972,873,21,PT1H53S,true
Student Civil Rights Activism: Crash Course Black American History #37,F624q1jBd0Y,2022-04-23T14:30:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",144944,3674,34,PT13M27S,true
How to Pay for College | Crash Course | How to College,L6cjyTaExCQ,2022-04-22T19:00:17Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",157845,4019,108,PT10M33S,true
Crash Course Office Hours: Anatomy & Physiology,-eIuQAMTI4I,2022-04-21T22:51:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",186333,2221,34,PT56M25S,true
How to Apply to College | How to College | Crash Course,m_9S5cBNvTs,2022-04-15T19:00:15Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",203869,6089,72,PT8M15S,true
Medicinal Chemistry and Penicillin Total Synthesis: Crash Course Organic Chemistry #50,qygFjt2_LG4,2022-04-14T00:00:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry']",71032,1590,41,PT14M11S,true
Geographies of the Future: Crash Course Geography #50,T_vLXgj2pvo,2022-04-12T18:07:17Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'geography', 'human footprint', 'human geography', 'ap geography', 'globalization', 'virtual space', 'slow city movement', 'damyang', 'surveillance', 'geoengineering']",83915,2089,99,PT12M48S,true
"Martin Luther King, Jr: Crash Course Black American History #36",BmeUT7zH62E,2022-04-09T18:07:39Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",282343,6569,64,PT13M13S,false
Biological Polymers: Crash Course Organic Chemistry #49,3Pp1AY_lmR4,2022-04-08T22:32:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry']",49258,1252,20,PT14M30S,true
How to Prepare for College | How to College | Crash Course,158aX-gyHU4,2022-04-07T22:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",152709,4171,62,PT12M22S,true
Sustainable Cities: Crash Course Geography #49,ZMn-bCdThEg,2022-04-04T19:27:58Z,"['Crash Course', 'crashcourse', 'education', 'Zoning', 'ecological design', 'urban planning', 'sustainability', 'environmental planning', 'social equity', 'grey-green divide', 'retrofit', 'brownfield', 'greenfield', 'development', 'la borda', 'geography', 'human geography', 'ap geographyt']",153031,4087,65,PT11M19S,true
How to Choose a School | How to College | Crash Course,hYV5HqPKFS4,2022-03-31T22:00:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",177339,4590,82,PT8M9S,true
How did Detroit Become the Motor City? | Industrial Geography | Crash Course Geography #48,yhVU0mNm4VM,2022-03-28T18:45:04Z,"['Crash Course', 'crashcourse', 'education', 'geography', 'human geography', 'detroit', 'transportation', 'planning', 'motor city', 'ford', 'chrysler', 'general motors', 'toyota', 'hyundai', 'just-in-time', 'production', 'industrial geography']",78704,2055,52,PT11M31S,true
The Montgomery Bus Boycott: Crash Course Black American History #35,ylOpide9dus,2022-03-25T23:02:22Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",176852,4331,38,PT12M44S,true
To College or Not To College | Crash Course | How to College,iaDpfalKSxQ,2022-03-24T22:04:20Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",192751,5344,111,PT11M,true
What is Urban Planning? Crash Course Geography #47,iFPokf8mwPk,2022-03-21T19:18:02Z,"['Crash Course', 'crashcourse', 'education', 'geography', 'human geography', 'urban geography', 'urban planning', 'brasilia']",175607,4704,84,PT11M17S,true
How to College: Preview,G8csJtDwjzk,2022-03-16T23:39:37Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",243030,6203,139,PT4M14S,true
Biochemical Building Blocks & Fischer and Haworth Projections: Crash Course Organic Chemistry #48,Ak7jp_VbX_A,2022-03-16T18:00:08Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry']",42462,1016,15,PT13M15S,true
How Are Cities Organized? Crash Course Geography #46,hDaW8KIeTNw,2022-03-14T20:00:35Z,"['Crash Course', 'crashcourse', 'education', 'geography', 'urban planning', 'urban form', 'chicago', 'history', 'boston', 'fez', 'morocco']",134330,3849,52,PT11M52S,true
Emmett Till: Crash Course Black American History #34,4HljsKwpv3g,2022-03-12T17:28:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",217701,8184,107,PT11M45S,true
Why are People Moving to Cities? Crash Course Geography #45,ON4oIKza7bw,2022-03-07T18:35:41Z,"['Crash Course', 'crashcourse', 'education', 'geography', 'ap geography', 'human geography', 'urbanization', 'cities', 'hong kong', 'shanghai', 'Guangzhou', 'central place theory']",138624,2909,35,PT11M15S,true
Diazonium Salts & Nucleophilic Aromatic Substitution: Crash Course Organic Chemistry #47,aPdxwMJVwf4,2022-03-02T22:28:44Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'organic chemistry', 'chemistry']",48803,1048,18,PT14M9S,true
Mineral Extraction: Crash Course Geography #44,wQhFQFeYdJU,2022-02-28T18:26:28Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",129382,2747,21,PT11M14S,true
How Do We Produce Food? Crash Course Geography #43,xx_Cu7Le3ZY,2022-02-21T21:09:24Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",126029,3351,47,PT11M40S,true
Amines: Crash Course Organic Chemistry #46,Kzm61ubVQmE,2022-02-16T23:52:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry']",91486,1723,42,PT12M11S,true
Why is There Uneven Access to Food? Crash Course Geography #42,dRd9CloivY8,2022-02-15T17:02:08Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",82163,2483,78,PT11M32S,true
School Segregation and Brown v Board: Crash Course Black American History #33,NBlqcAEv4nk,2022-02-11T21:27:45Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",276551,6223,47,PT12M29S,true
"Agribusiness, GMOs, and their Role in Development: Crash Course Geography #41",VJEpCjD14hw,2022-02-07T21:42:43Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",85370,2699,149,PT11M40S,true
"Crossed Aldol Reactions, Enones, and Conjugate Addition: Crash Course Organic Chemistry #45",diM2D3SaPc4,2022-02-03T00:29:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry']",39186,733,23,PT13M13S,true
"What is a ""Developed"" Country? Crash Course Geography #40",gzYzmbQYTI4,2022-01-31T19:18:36Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",167650,4108,78,PT12M29S,true
"Randolph, Rustin, & the Origins of the March on Washington: Crash Course Black American History #32",vDNkw13NAA0,2022-01-28T17:36:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",103134,3494,43,PT12M50S,false
The Aldol and Claisen Reactions: Crash Course Organic Chemistry #44,eCBW1wlHt2k,2022-01-26T19:00:24Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry']",53448,979,14,PT12M35S,true
Colonialism: Crash Course Geography #39,RzHbL0ByeLY,2022-01-24T19:42:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",228288,5067,57,PT12M19S,true
World War II: Black American History #31,U7wrwPnQVg4,2022-01-15T18:55:17Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",186302,5847,39,PT12M36S,true
"Enols and Enolates - Reactivity, Halogenation, and Alkylation: Crash Course Organic Chemistry #43",gZ7pMORZ6U0,2022-01-13T17:42:31Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'organic chemistry', 'chemistry']",45627,916,13,PT12M20S,true
Zora Neale Hurston: Crash Course Black American History #30,72ABMa_PuHU,2022-01-08T22:26:46Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",163220,5329,54,PT10M4S,true
The Tuskegee Experiment: Crash Course Black American History #29,56gqCXlUCoE,2021-12-24T16:56:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",643529,19902,88,PT13M48S,true
The Diels-Alder & Other Pericyclic Reactions: Crash Course Organic Chemistry #42,3sLfG79NWOc,2021-12-23T19:00:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",46421,883,15,PT13M1S,true
How Are We All Part of Ending Outbreaks? Crash Course Outbreak Science #15,Dpah15G3LSA,2021-12-21T21:15:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",46282,1437,17,PT11M54S,true
"Capitalism, Communism, & Political Economies: Crash Course Geography #38",X2ZIDALAkXo,2021-12-20T20:14:40Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",200893,5675,71,PT12M9S,true
How do Outbreaks End? Vaccines and Recovery: Crash Course Outbreak Science #14,0nSjN8GVJQM,2021-12-14T19:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'outbreak science', 'epidemic', 'pandemic', 'vaccines']",78390,2204,11,PT11M17S,true
What are the Patterns of Border Conflicts? Crash Course Geography #37,CgaZGbzFK1s,2021-12-13T18:43:39Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",88252,2399,48,PT11M58S,true
The Great Depression: Crash Course Black American History #28,f14kiGoexVg,2021-12-11T22:16:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",202259,6641,49,PT11M53S,true
Conjugation & UV-Vis Spectroscopy: Crash Course Organic Chemistry #41,nolHg3FHJW4,2021-12-08T19:00:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'conjugation', 'UV-Vis spectroscopy', 'wandavision', 'golden rice', 'hydrogenation', 'orbital', 'molecular orbital', 'bonding orbital', 'antibonding orbital', 'higest occupied molecular orbital', 'lowest occupied molecular orbital', 'ultraviolet spectroscopy', 'pi to pi star excitation', 'molar absorptivity']",48276,1099,9,PT13M3S,true
What Is Outbreak Culture? Crash Course Outbreak Science #13,EuSGImH2pG8,2021-12-07T19:00:04Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'outbreak', 'outbreak science', 'epidemic', 'pandemic', 'culture', 'values', 'media', 'social distancing', 'cultural awareness', 'stigma', 'Tuskeegee Syphilis study', 'caregiving', 'grief', 'Ebola', 'Fambul Tok']",47111,1553,10,PT11M12S,true
What Holds a Country Together or Tears it Apart? Crash Course Geography #36,RwWy30m4G2c,2021-12-06T21:29:50Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Geopolitics', 'Costa Rica', 'Venezuela', 'Brazil', 'stability', 'petrostate', 'sanctions', 'communism', 'capitalism', 'nationalism', 'populism', 'Brexit', 'authoratarianism']",82511,2605,64,PT12M26S,true
Political Thought in the Harlem Renaissance: Crash Course Black American History #27,0HY8d4ABHQA,2021-12-04T18:00:42Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",173902,4354,15,PT13M32S,true
How Can Infrastructure Help Us Stop Outbreaks? Crash Course Outbreak Science #12,k0WGXeWPb1M,2021-11-30T20:19:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",46583,1396,11,PT10M58S,true
"Synthesis, Distillation, & Recrystallization: Crash Course Organic Chemistry #40",esBgihsV02A,2021-11-24T19:00:12Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'organic chemistry', 'chemistry', 'TLC', 'thin layer chromatography', 'proton NMR', 'flash chromatography', 'EAS', 'electrophilic aromatic substitution', 'halogenation', 'nitration', 'sulfonation', 'Friedel-Crafts alkylation', 'Friedel-Crafts acylation', 'EWG', 'EDG', 'electron withdrawing group', 'electron donating group', 'sulfanilamide', 'ditillation', 'recrystallization', 'vacuum filtration', 'chlorosulfonation', 'retrosynthesis']",52855,1151,13,PT13M58S,true
How Can Cooperation End an Outbreak? Crash Course Outbreak Science #11,fXt42GzI1FU,2021-11-23T19:00:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'outbreak', 'outbreak science', 'epidemic', 'pandemic', 'disease', 'virus', 'pathogen', 'cooperation', 'coordination', 'smallpox', 'public health', 'community', 'WHO', 'World Health Organization', 'variolation', 'variolator', 'Afghanistan', 'CDC', 'AIDs pandemic']",32721,1145,8,PT12M2S,true
Tyranny of the Map: Crash Course Geography #35,xDi-Lo0xOr8,2021-11-22T20:19:22Z,"['Crash Course', 'crashcourse', 'education', 'Geography', 'human geography', 'borders', 'map', 'tyranny of the map', 'gerrymandering', 'Tuareg', 'Mali', 'state', 'Berlin conference of 1884', 'congress of Vienna']",83849,2696,43,PT11M16S,true
Arts and Letters of the Harlem Renaissance: Crash Course Black American History #26,vKaegbtcE00,2021-11-19T21:48:37Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'harlem renaissance']",323618,6604,45,PT12M38S,true
How Does Disease Move? Crash Course Geography #34,DaHTOFphlMY,2021-11-15T19:35:57Z,"['Crash Course', 'crashcourse', 'education', 'Geography', 'human geography', 'medical geography', 'epidemic', 'outbreak', 'disease', 'John snow', 'pathogen', 'covid', 'ebola', 'cholera', 'dengue', 'zika', 'measles', 'lead poisoning', 'flint', 'Michigan']",71435,2091,40,PT11M54S,true
The Red Summer of 1919: Crash Course Black American History #25,Q_1Zwm8N_vo,2021-11-12T19:52:38Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",283199,9532,120,PT13M4S,true
More EAS & Benzylic Reactions: Crash Course Organic Chemistry #39,eGp6vN2fZvI,2021-11-10T23:38:49Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'EAS', 'electrophilic aromatic substitution', 'Friedel-Crafts alkylation', 'Friedel-Crafts acylation', 'electron withdrawing groups', 'electron donating group', 'overalkylation', 'Clemmensen reduction']",39558,733,16,PT12M20S,true
How Does Public Health Tackle Outbreaks? Crash Course Outbreak Science #10,zN58Uj1pxg4,2021-11-09T19:00:30Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'public health', 'outbreak', 'pandemic', 'epidemic', 'determinants', 'primary prevention', 'secondary prevention', 'tertiary prevention', 'public health agency', 'CDC', 'one health', 'epidemiology', 'prevention', 'Swiss Cheese Model', 'flattening the curve']",34046,1113,9,PT11M,true
How Populations Grow and Change: Crash Course Geography #33,JpAiBg0hrfQ,2021-11-08T19:31:33Z,"['Crash Course', 'crashcourse', 'education', 'geography', 'human geography', 'population', 'malthusian', 'malthus', 'boserup', 'boserup theory', 'dtm', 'demographic transition model', 'demography']",193311,3310,23,PT10M37S,true
The Great Migration: Crash Course Black American History #24,Woh63FlFDBk,2021-11-06T15:53:33Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",409061,10446,49,PT12M40S,true
Can We Predict An Outbreak's Future? - Modeling: Crash Course Outbreak Science #9,0nLxb3ms28A,2021-11-02T18:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Outbreak', 'outbreak science', 'epidemiology', 'model', 'modeling', 'simulation', 'scientific model', 'quantitative', 'variables', 'parameters', 'equation', 'linear', 'non-linear', 'S-I-R model', 'SIR model', 'susceptible', 'infected', 'removed', 'reproductive number', 'basic reproductive number', 'r naught']",38139,1261,15,PT11M27S,true
Where and Why Do People Move? Crash Course Geography #32,5Z55k7CqZ0c,2021-11-01T19:16:35Z,"['Crash Course', 'crashcourse', 'education', 'Geography', 'human geography', 'ap geography', 'migration', 'population', 'india', 'Trinidad', 'Tobago', 'monsoon migration', 'economic migration', 'diaspora', 'refugee', 'internal migration', 'reluctant migration', 'voluntary migration', 'cyclical migration', 'step migration']",173753,3337,44,PT11M16S,true
The Black Women's Club Movement: Crash Course Black American History #23,Cy2ODAB8mJs,2021-10-29T19:38:15Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'black american history', ""women's club"", ""black women's club"", 'american history', ""women's rights"", 'voting rights', 'mary mcleod bethune', 'Division of Negro Affairs', 'black cabinet', 'Fair Employment Practices Committee', 'national urban league', 'naacp', 'mary church terrell', 'anna julia cooper', 'mary jane patterson', 'Josephine St. Pierre Ruffin']",115646,4536,39,PT11M,true
More EAS - Electron Donating and Withdrawing Groups: Crash Course Organic Chemistry #38,geIhhMml1W8,2021-10-28T19:34:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'EAS', 'electrophilic aromatic substitution', 'EDG', 'EWG', 'electron drawing groups', 'electron withdrawing groups', 'activate', 'deactivate', 'TBP', 'hyperconjugation', 'substituent']",52373,1109,11,PT11M29S,true
How Do We Investigate Outbreaks? Epidemiology: Crash Course Outbreak Science #8,vk6e0pCbh1k,2021-10-26T23:56:09Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'outbreak', 'outbreak science', 'pandemic', 'epidemic', 'epidemiology', 'infectious disease epidemiology', 'epidemiologist', 'prevalence', 'incidence', 'population at risk', 'descriptive epidemiology', 'analytic epidemiology', 'lyme disease', 'case-control study', 'exposure', 'cohort study', 'contact tracing', 'intervention', 'modeling']",55476,1609,23,PT12M22S,true
How Did Religion Spread Along the Silk Road? Crash Course Geography #31,4SWe3bFYcOA,2021-10-25T20:11:10Z,"['Crash Course', 'crashcourse', 'education', 'Human geography', 'ap geography', 'religion', 'Silk Road', 'silk roads', 'fez', 'diffusion', 'syncretic', 'Ptolomey', 'animist', 'enthinic religion', 'Hinduism', 'Shintoism', 'Taoism', 'Confucianism', 'Islam', 'Judaism', 'Buddhism', 'universal religion', 'Muhammad al-Idrisi']",211096,5385,57,PT11M30S,true
Booker T. Washington and W.E.B DuBois: Crash Course Black American History #22,zHn-vSTMOWE,2021-10-23T17:49:50Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",369040,9516,67,PT11M23S,true
How Does Language Move? Crash Course Geography #30,QJmF8E_UQUQ,2021-10-20T21:27:02Z,"['Crash Course', 'crashcourse', 'education', 'Language', 'language families', 'linguistics', 'hearth', 'Bantu', 'diffusion', 'mother tongue', 'creole', 'pidgin', 'banjo']",125537,3972,59,PT10M58S,true
How Does the Healthcare System Work During Outbreaks? Crash Course Outbreak Science #7,wbtpOhIP9Bc,2021-10-19T23:34:19Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'outbreak science', 'epidemic', 'pandemic', 'outbreak', 'hospital', 'clinic', 'healthcare', 'healthcare system', 'capacity', 'treatment', 'PPE']",43051,1530,8,PT12M18S,true
Plessy v Ferguson and Segregation: Crash Course Black American History #21,nbZUQGPMTjk,2021-10-15T21:31:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'homer plessy', 'plessy v ferguson', 'plessy vs ferguson', 'separate but equal', 'jim crow', 'segregation', 'black history', 'american history']",297279,7623,69,PT10M36S,true
Intro to Electrophilic Aromatic Substitution: Crash Course Organic Chemistry #37,vuSF5yhKRxA,2021-10-13T21:53:49Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'EAS', 'Electrophilic aromatic substitution', 'benzene', 'Friedel-Crafts alkylation', 'acylation', 'acyl group']",49528,1093,25,PT12M1S,true
How Do We Know We're Sick? Crash Course Outbreak Science #6,toEnT4C2uNI,2021-10-12T22:46:30Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'outbreak', 'epidemic', 'pandemic', 'illness', 'hospital', 'clinical symptomatology', 'diagnostic testing', 'epidemiology', 'symptom', 'sign', 'medical history', 'susceptibility', 'disease reservoir', 'reservoir', 'variable presentation', 'differential', 'pathogen', 'PCR test', 'antigen test', 'antibodies', 'antibody test', 'sensitivity', 'specificity']",66743,2229,42,PT11M16S,true
Ida B. Wells: Crash Course Black American History #20,ocbAfpjibr4,2021-10-08T22:01:25Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",210182,7007,46,PT11M34S,true
The Weaponization of Outbreaks: Crash Course Outbreak Science #5,JjIgNfURISY,2021-10-05T20:30:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'outbreak', 'outbreak science', 'epidemic', 'pandemic', 'biological warfare', 'bioweapon']",58483,2205,13,PT12M2S,true
"Race, Ethnicity, and the Cultural Landscape: Crash Course Geography #29",lVGJxaogu5A,2021-10-04T20:01:35Z,"['Crash Course', 'crashcourse', 'education', 'Geography', 'human geography', 'race', 'ethnicity', 'culture', 'cultural landscape', 'Kuala Lumpur', 'Melaka', 'assimilation', 'appropriation', 'racism', 'xenophobia', 'refugees']",155606,4406,107,PT12M5S,true
"Aromaticity, Hückel's Rule, and Chemical Equivalence in NMR: Crash Course Organic Chemistry #36",C0ZHrfTuCGk,2021-09-30T18:00:09Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'August Kekule', 'benzene', 'Auguste Laurent', 'conjugation', 'aromatic compound', 'cyclic', 'planar', 'Huckels rule', 'napthalene', 'tropylium', 'pyrrole', 'furan', 'NMR', 'Nuclear Magnetic Resonance']",57402,1146,20,PT13M31S,true
Why Do Outbreaks Affect People Unequally? Crash Course Outbreak Science #4,vc7xQs0MCLY,2021-09-29T14:00:23Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'outbreak', 'outbreak science', 'epidemic', 'pandemic', 'disease', 'illness', 'sociology', 'epidemiology', 'globalization']",58529,2187,20,PT13M5S,true
What is Human Geography? Crash Course Geography #28,4y2nndDs8m4,2021-09-27T18:17:07Z,"['Crash Course', 'crashcourse', 'education', 'Geography', 'human geography', 'Mount McKinley', 'Denali', 'political geography', 'Uluru', 'economic geography', 'urban geography', 'Alaska']",204468,3823,45,PT10M11S,true
Reconstruction: Crash Course Black American History #19,NGPAnLDzQYY,2021-09-24T21:01:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",501942,9874,47,PT13M59S,true
Why Do We Have Fewer Outbreaks? Epidemiological Transition: Crash Course Outbreak Science #3,ATK_qlg6tTY,2021-09-21T22:55:22Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'outbreak science', 'epidemiology', 'epidemiological transition', 'demographic transition', 'epidemic', 'outbreak', 'pandemic']",76243,2442,38,PT11M35S,true
Natural Hazards: Crash Course Geography #27,-FBq5lE1Kz0,2021-09-20T20:46:28Z,"['Crash Course', 'crashcourse', 'education', 'Geography', 'natural hazard', 'natural disaster', 'flood', 'earthquake', 'tornado', 'drought', 'blizzard', 'hurricane', 'tsunami', 'Hurricane Katrina', 'Boxing Day Tsunami']",218159,3836,100,PT11M15S,true
Black Americans in the Civil War: Crash Course Black American History #18,_NgdnsjPFNE,2021-09-17T19:00:09Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'civil war', 'slavery', 'confederacy', 'union', 'US history', 'black american history']",300259,8907,63,PT14M12S,true
How Do Outbreaks Start? Pathogens and Immunology: Crash Course Outbreak Science #2,40cyYqqQmJ4,2021-09-14T18:36:47Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'outbreak science', 'pandemic', 'epidemic', 'epidemiology', 'pathogens', 'virus', 'bacteria', 'protozoa', 'fungi', 'prion', 'parasite', 'immunology', 'immune system', 'vector', 'monocyte', 'macrophage', 'cytokines', 'neutrophils', 'natural killer cells', 't-cells', 'b-cells', 'antibodies']",134676,3836,44,PT11M51S,true
What Are Glaciers? Crash Course Geography #26,mkt-0ZuTKXU,2021-09-13T20:11:31Z,"['Crash Course', 'crashcourse', 'education', 'Geography', 'glacier', 'glaciers', 'Matterhorn', 'climate change', 'ice sheet', 'alpine', 'mountain', 'Greenland', 'Antarctica', 'erratic', 'ice age', 'glaciation', 'interglaciation', 'last glacial maximum', 'terminal moraine', 'alps', 'Thwaites glacier', 'doomsday glacier']",145592,3319,36,PT11M12S,true
Frederick Douglass: Crash Course Black American History #17,7QOTexnD-NE,2021-09-10T20:26:50Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'frederick Douglass', 'abraham lincoln', 'black history', 'black american history', 'slavery']",446806,11343,74,PT12M19S,true
Polymer Chemistry: Crash Course Organic Chemistry #35,dXaBkrS1HaM,2021-09-08T22:15:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'organic chemistry', 'chemistry', 'polymer', 'PTFE', 'BPA', 'monomer', 'addition polymer', 'repeat unit', 'copolymer', 'chain growth polymerization', 'polymerization', 'radical', 'step-growth polymers', 'condensation polymers', 'HDPE', 'LDPE', 'branched', 'crystalline', 'amorphous', 'degree of crystallinity']",85251,2340,63,PT13M15S,true
What Is Outbreak Science? Crash Course Outbreak Science #1,_qAzXb7mA2g,2021-09-07T21:27:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'outbreak science', 'Pardis Sabeti', 'Sabeti Lab', 'Moore Foundation', 'Broad Institute', 'pathogens', 'endemic', 'epidemic', 'pandemic', 'cholera', 'outbreak', 'reservoir', 'healthcare']",104468,3913,33,PT11M31S,true
The Dred Scott Decision: Crash Course Black American History #16,9VffLWl8asY,2021-09-04T16:59:53Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",355052,10070,63,PT11M36S,true
Crash Course Outbreak Science Preview,QnVjv-LIgjM,2021-08-31T18:00:07Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'outbreak science', 'Pardis Sabeti', 'COVID-19', 'virus', 'pathogens', 'disease', 'healthcare', 'epidemic', 'pandemic']",120774,4315,69,PT4M21S,true
Groundwater & the Israeli-Palestinian Conflict: Crash Course Geography #25,Hzntl-YJe04,2021-08-30T19:58:37Z,"['Crash Course', 'crashcourse', 'education', 'geography', 'groundwater', 'aquifer', 'Israel', 'Palestine', 'Israeli-Palestinian Conflict', 'water rights', 'hydropolitics', 'MENA', 'freshwater']",123021,3602,77,PT11M6S,true
The Underground Railroad: Crash Course Black American History #15,Byh-HityBIM,2021-08-27T20:52:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",339526,8625,73,PT12M45S,true
Retrosynthesis and Liquid-Liquid Extraction: Crash Course Organic Chemistry #34,oi3bcICQd40,2021-08-26T16:00:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'organic chemistry', 'chemistry', 'organic synthesis', 'retrosynthesis', 'functional group interconversion', 'FGI', 'penicillin', 'liquid-liquid extraction']",37086,893,26,PT12M45S,true
Why Does Jakarta Flood So Easily? Crash Course Geography #24,HDvS2rQZXMc,2021-08-23T19:00:04Z,"['Crash Course', 'crashcourse', 'education', 'floods', 'floodplain', 'river', 'subsidence', 'channelize', 'wetlands', 'natural hazard', 'natural disaster']",98911,3040,71,PT10M51S,true
Maria Stewart: Crash Course Black American History #14,nsVnWD5PrIg,2021-08-20T19:43:23Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",164160,6249,41,PT11M53S,true
The Rise of Cotton: Crash Course Black American History #13,83eJfEFFZ74,2021-08-13T23:26:56Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",329689,10561,63,PT12M11S,true
Chemoselectivity and Protecting Groups: Crash Course Organic Chemistry #33,BUmdnJZcC88,2021-08-11T20:41:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'organic chemistry', 'chemistry', 'chemoselectivity', 'protecting groups', 'penicillin']",46887,1020,66,PT11M30S,true
How Rivers Shape the Landscape: Crash Course Geography #23,CDEj62HGNkk,2021-08-10T16:15:01Z,"['Crash Course', 'crashcourse', 'education', 'geography', 'Zambezi', 'River', 'Victoria Falls', 'Mosi-oa-Tunya', 'tributary', 'drainage basin', 'watershed', 'distributary', 'delta', 'deposition', 'erosion', 'sinuosity', 'canyons']",186276,3905,40,PT11M11S,true
The Louisiana Rebellion of 1811: Crash Course Black American History #12,fYOA_sS5q-A,2021-08-06T22:46:38Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",470765,14316,33,PT12M7S,true
What is Weathering? Crash Course Geography #22,pmF41T52nJs,2021-08-02T19:01:17Z,"['Crash Course', 'crashcourse', 'education', 'Weathering', 'erosion', 'scree', 'salt crystal growth', 'frost action', 'chemical weathering', 'physical weathering', 'biological weathering', 'cave', 'Karst', 'sinkhole', 'solution cave', 'denudation', 'mammoth cave']",252091,4396,28,PT11M25S,true
Women's Experience Under Slavery: Crash Course Black American History #11,eAe7ETfQ_aA,2021-07-31T19:02:51Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'women', 'slavery', 'US History']",971640,24378,55,PT12M23S,true
Carboxylic Acid Derivatives & Hydrolysis Reactions: Crash Course Organic Chemistry #31,VfX2od-AwRo,2021-07-28T15:00:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'vitamin c', 'amides', 'anhydrides', 'acid chlorides', 'esters', 'inductive effect', 'carbonyl', 'resonance', 'nucleophilic acyl substitution', 'triglycerides', 'ester hydrolysis', 'saponification reaction', 'carboxylic acid', 'hydrolysis', 'penicillin V', 'John C Sheehan', 'protecting group', 'penicillin']",64405,1278,27,PT12M27S,true
Carboxylic Acid Derivatives - Interconversion & Organometallics: Crash Course Organic Chemistry #32,XkvoUrdbtZA,2021-07-28T15:00:14Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'carboxylic acids', 'carboxylic acid derivatives', 'interconversion', 'meta reagents', 'painkillers', 'acid chlorides', 'anhydride', 'esters', 'ester', 'penicillin', 'organometallics', 'reduction', 'metal hydrides']",32712,742,12,PT11M48S,true
What Are Volcanoes? Crash Course Geography #21,cnKoTlUaqAs,2021-07-26T20:10:47Z,"['Crash Course', 'crashcourse', 'education', 'Geography', 'Volcano', 'volcanoes', 'lava', 'magma', 'Kīlauea', 'Mount St. Helens', 'Mount Rainier', 'Mauna Loa', 'stratovolcano', 'shield volcano', 'Mount Fuji', 'Mount Mayon', 'Mount Shishaldin', 'Pico de Orizaba', 'Milankovitch cycles', 'Maya Tolstoy']",238156,4298,91,PT12M44S,true
The Fugitive Slave Act of 1793: Crash Course Black American History #10,AcdOWKiKgWU,2021-07-23T20:04:08Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",320933,10220,39,PT11M15S,true
How Does the Earth Create Different Landforms? Crash Course Geography #20,1gMU7zfDqfg,2021-07-19T19:32:02Z,"['Crash Course', 'crashcourse', 'education', 'Landforms', 'geomorphology', 'rock cycle', 'tectonic cycle', 'ring of fire', 'afar depression', 'great rift valley', 'Kamchatka peninsula', 'bob ross', 'volcanoes', 'Uluru', 'Appalachian Mountains', 'Himalayas', 'Alps', 'Half Dome', 'Serengeti']",230879,3843,65,PT13M1S,true
Frontiers in Zoology: Crash Course Zoology #14,rH63obMflyo,2021-07-15T19:01:07Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'zoology', 'zoologist', 'animals', 'species', 'field study', 'volunteer', 'conservation', 'field research', 'citizen science', 'citizen scientist']",55647,2231,115,PT12M36S,true
The Plate Tectonics Revolution: Crash Course Geography #19,7CPv0NSIG2M,2021-07-12T19:00:01Z,"['Crash Course', 'crashcourse', 'education', 'plate tectonics', 'marie tharp', 'lithosphere', 'pangaea', 'continental drift', 'bruce heezen', 'harry hess', 'Robert dietz', 'fred vine', 'drummond matthews', 'ring of fire']",389068,6739,60,PT10M58S,true
"The US Constitution, 3/5, and the Slave Trade Clause: Crash Course Black American History #9",57xUbch1viI,2021-07-10T16:24:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",551711,14716,40,PT10M26S,true
What is a Species? Crash Course Zoology #13,gmERYByX7_s,2021-07-08T19:23:19Z,"['Crash Course', 'crashcourse', 'education', 'zoology', 'ap zoology', 'species', 'biological species concept', 'hybrids', 'dna barcoding', 'stufful', 'pokemon', 'gene flow', 'ring species', 'crash course', 'dr rae wynn grant']",78446,3048,100,PT13M12S,true
The American Revolution: Crash Course Black American History #8,y75yPx9WKHY,2021-07-02T21:30:43Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",307616,8941,69,PT11M30S,true
Phylogenetic Mysteries: Crash Course Zoology #12,cVaw7nF72Aw,2021-07-01T19:02:10Z,"['Crash Course', 'crashcourse', 'education', 'Phylogenetic mystery', 'clade', 'baby eels', 'horseshoe crab', 'spiders', 'termites', 'zoology', 'ap zoology', 'crash course', 'vlogbrothers']",64404,2599,72,PT12M33S,true
What Are Rocks and How Do They Form? Crash Course Geography #18,7Bxw4kkeHJ8,2021-06-28T21:39:27Z,"['Crash Course', 'crashcourse', 'education', 'geography', 'ap geography', 'limestone', 'granite', 'cliffs of dover', 'grand canyon', 'giants causeway', 'igneous', 'extrusive', 'intrusive', 'rock', 'felsic', 'mafic', 'mineral', 'yosemite', 'dolomites']",815346,15883,182,PT10M57S,true
Parasites: Crash Course Zoology #11,uliiNX1gni8,2021-06-24T19:00:31Z,"['Crash Course', 'crashcourse', 'education', 'Parasites', 'parasitism', 'host', 'mosquitos', 'micropredation', 'hyperparasitism', 'California condor', 'zoology', 'ap zoology', 'john green', 'hank green', 'crash course', 'vlogbrothers', 'leech', 'bloodsucker', 'ticks', 'oxpecker', 'tapeworm']",82021,2644,117,PT13M5S,true
Carboxylic Acids: Crash Course Organic Chemistry #30,cA0fGIfALxI,2021-06-24T00:45:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'organic chemistry', 'penicillin', 'chemistry', 'carboxylic acids']",85481,1925,63,PT11M36S,true
Phillis Wheatley: Crash Course Black American History #7,a3l9Pmza7Gs,2021-06-18T16:27:28Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",272728,9529,64,PT11M56S,true
Animals Working Together: Crash Course Zoology #10,_1g9ip9Y7n4,2021-06-17T19:20:15Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociality', 'coloniality', ""man o'war"", 'superorganism', 'eusocial', 'parasocial', 'colonial', 'hank green', 'john green', 'crash course']",73147,2671,75,PT13M58S,true
What is Soil (and Why is it Important)?: Crash Course Geography #17,udseIcrUxvA,2021-06-15T20:13:45Z,"['vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'geography', 'soil', 'horizon', 'aral sea', 'A Horizon', 'B Horizon', 'O Horizon', 'topsoil', 'regolith', 'humus', 'E Horizon', 'R Horizon', 'C Horizon', 'laterite', 'caliche']",298723,7360,37,PT10M3S,true
The Stono Rebellion: Crash Course Black American History #6,pND-9KhM1Xw,2021-06-12T18:09:43Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",384302,12679,72,PT12M1S,true
Reproduction: Crash Course Zoology #9,poLyJDVjKlM,2021-06-10T21:16:58Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'reproduction', 'zoology', 'ap zoology', 'sexual reproduction', 'gender', 'gamete', 'sex determination', 'chromosomes', 'hermaphroditic', 'asexual', 'genetic diversity', 'red queen hypothesis', 'same-sex behavior', 'animals', 'animal sexuality']",89238,2873,134,PT13M1S,true
"Aldehyde and Ketone Reactions - Hydrates, Acetals, & Imines: Crash Course Organic Chemistry #29",Sz8G97H27EE,2021-06-09T18:00:07Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'aldehyde', 'ketone', 'hydrate', 'acetal', 'hemiacetal', 'amine', 'imine', 'enamine', 'carbonyl group', 'geminal-diols', 'gem-diols', 'diastereomers', 'anomers']",78222,1512,29,PT13M30S,true
The Germantown Petition Against Slavery: Crash Course Black American History #5,XT8q6cYsVpc,2021-06-05T15:42:53Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",328363,11941,56,PT10M51S,true
Ancestral & Weird Senses: Crash Course Zoology #8,jszmqmOcrlM,2021-06-03T19:00:34Z,"['Crash Course', 'crashcourse', 'education', 'zoology', 'ap zoology', 'chemosensation', 'electroreception', 'magnetoreception', 'elephant-nose fish', 'taste', 'smell', 'convergent evolution', 'olfaction']",80699,3034,46,PT12M42S,true
Population & Food: Crash Course Geography #16,Hvc1P5edKTc,2021-06-01T18:36:06Z,"['Crash Course', 'crashcourse', 'education', 'geography', 'food', 'population', 'food web', 'energy', 'food chain', 'trophic level', 'overpopulation', 'carrying capacity', 'factory farms']",138075,3796,79,PT10M12S,true
Slave Codes: Crash Course Black American History #4,gu9RIGGXeNo,2021-05-29T15:23:56Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",1499516,45230,62,PT8M30S,true
How Animals Hear: Crash Course Zoology #7,KN5Bjh54uB8,2021-05-27T18:57:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'hearing', 'ears', 'tympanal organ', 'Charles Turner', 'ultrasound', 'infrasound', 'pitch', 'zoology', 'ap zoology', 'hertz', 'frequencies', 'near-field', 'far-field', 'sound']",93324,3063,30,PT11M57S,true
Organometallic Reagents and Carbanions: Crash Course Organic Chemistry #28,oYddXjm6QRw,2021-05-26T18:00:12Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'organometallics', 'carbanions', 'electronegativity', 'Grignard reagents', 'organolithium compounds', 'Wittig reagents', 'Gilman reagents', 'organocuprates', 'organocopper reagents', 'transmetallation', 'cross coupling reactions']",53974,1217,39,PT10M59S,true
Elizabeth Key: Crash Course Black American History #3,hJUknOKAv1M,2021-05-22T14:47:16Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",309632,12875,36,PT7M52S,true
How Animals See: Crash Course Zoology #6,r4FT1YOjv6s,2021-05-20T19:27:55Z,"['Crash Course', 'crashcourse', 'education', 'sight', 'vision', 'animals', 'eyes', 'image-forming eye', 'eye patch', 'compound eye', 'acuity', 'camera-type eye', 'field-of-view', 'rods', 'cones', 'mantis shrimp', 'zoology', 'ap zoology', 'animal']",98195,3731,70,PT13M17S,true
What Are Ecosystems? Crash Course Geography #15,KQF9WdZrH_c,2021-05-18T19:11:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'biosphere', 'ecosystem', 'net primary production', 'biomes', 'producers', 'consumers', 'decomposuers', 'biogeochemical', 'deforestation', 'swidden', 'shifting cultivation', 'slash-and-burn', 'land rotation', 'biodiversity']",282113,4538,63,PT11M41S,true
Slavery in the American Colonies: Crash Course Black American History #2,G4syEkyOzmY,2021-05-15T14:00:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",527980,17306,106,PT10M55S,true
Brainy & Brainless Animals: Crash Course Zoology #5,_r9kSA3s2fQ,2021-05-13T20:01:14Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'brains', 'zoology', 'ap zoology', 'animals', 'neural net', 'nervous system', 'encephalization quotient', 'EQ']",109154,4097,70,PT12M46S,true
The Transatlantic Slave Trade: Crash Course Black American History #1,S72vvfBTQws,2021-05-07T18:00:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",858369,31370,160,PT13M8S,true
How & What Animals Eat: Crash Course Zoology #4,aJKkUFR4eDA,2021-05-06T19:59:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Carnivore', 'herbivore', 'omnivore', 'heterotroph', 'osteophager', 'filter feeder', 'predators', 'parasites', 'sea lamprey', 'eating', 'food']",112921,3583,126,PT13M36S,true
What is Climate Change? Crash Course Geography #14,tMwFNMfjFuU,2021-05-03T21:15:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'global warming', 'climate change', 'paleoclimatologist', 'anthropogenic', 'climate']",296010,5709,99,PT13M,true
Crash Course Black American History Preview,xPx5aRuWCtc,2021-04-30T17:00:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",542383,21376,241,PT6M19S,true
Diversity of Bodies & Sizes (but mostly crabs): Crash Course Zoology #3,C118ADYpEqo,2021-04-29T19:22:41Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'zoology', 'ap zoology', 'eutely', 'predetermined growth', 'periodic growth', 'indeterminate growth', 'carcinization', 'bilateral symmetry', 'radial symmetry', 'invertebrates', 'vertebrates', 'endoskeleton', 'exoskeleton', 'hydroskeleton']",109013,3991,53,PT13M58S,true
An Overview of Aldehydes and Ketones: Crash Course Organic Chemistry #27,-fBPX-4kFlw,2021-04-28T21:38:22Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'aldehyde', 'ketone', 'acetone', 'carbonyl', 'ozonolysis', 'hydroboration', 'oxymercuration', 'zwitterion', 'ylide']",154801,3123,46,PT11M34S,true
"What's the Most ""Animal"" Animal? Crash Course Zoology #2",lDMfsb09Hw4,2021-04-22T19:01:15Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'zoology', 'ap zoology', 'beetles', 'global species richness', 'phylum', 'arthropods', 'macro ecological patterns', 'diversity ratio', 'species', 'animal', 'animals']",130828,4484,149,PT12M25S,true
How to Identify Molecules - Proton NMR: Crash Course Organic Chemistry #26,Liit4blsrqM,2021-04-21T19:00:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'organic chemistry', 'chemistry', 'NMR', 'Nuclear magnetic resonance', 'mass number', 'spin', 'Proton NMR', 'MOM chloride']",116041,2799,58,PT11M27S,true
🥔 How do we Classify Climates? Crash Course Geography #13,xiGhLGFkJjo,2021-04-19T21:44:51Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'geography', 'weather', 'climate', 'potato', 'geo-literacy', 'Köppen system']",153205,3554,75,PT10M56S,true
What is an Animal? Crash Course Zoology #1,zgM0F6UmC70,2021-04-15T19:01:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'animals', 'zoology', 'ap zoology', 'taxonomy', 'binomial nomenclature', 'genus', 'species', 'phylogenetics', 'phylogenetic tree', 'phylogeny', 'clades', 'parsimony']",273682,8967,203,PT15M26S,true
🦀 Crash Course Zoology Preview,ipOoEmrm4pI,2021-04-08T19:00:39Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'zoology', 'zoology 101', 'zoology major', 'zoology class']",186557,7144,369,PT3M37S,true
What Are the Different Types of Cyclones? Crash Course Geography #12,06ke7hr1m_Q,2021-04-05T18:50:56Z,"['Crash Course', 'crashcourse', 'education', 'geography', 'hurricane', 'typhoon', 'cyclone', 'mid-latitude cyclone', 'bhola', 'katrina', 'harvey', 'polar front', 'Sundarbans', 'mangrove']",144034,3544,48,PT10M37S,true
Synthesis and Column Chromatography: Crash Course Organic Chemistry #25,IGC5J_7gkKg,2021-03-31T22:29:37Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'organic chemistry', 'chemistry', 'lab experiment', 'chromatography', 'capillary action', 'thin layer chromatography', 'retention factor', 'flash chromatography']",83619,2062,52,PT11M37S,true
How Can Rain Create Conflict? Precipitation and Water Use: Crash Course Geography #11,68G1ikYRNxg,2021-03-23T21:18:10Z,"['crashcourse', 'education', 'water', 'water rights', 'geography', 'precipitation', 'rain', 'rain shadow', 'great plains', 'dust bowl', 'Colorado River compact', 'water use']",139021,3682,61,PT10M30S,true
"Alcohols, Ethers, and Epoxides: Crash Course Organic Chemistry #24",j04zMFwDeDU,2021-03-17T18:00:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'alcohol', 'ether', 'epoxide', 'diol', 'alkoxide', 'acid catalyzed reaction', 'base catalyzed reaction']",144979,2955,84,PT12M30S,true
☁️ What is a Cloud? Crash Course Geography #10,EK_UOLsN72Q,2021-03-08T21:22:14Z,"['Crash Course', 'crashcourse', 'education', 'geography', 'clouds', 'cloud', 'cirrus', 'stratus', 'cumulus', 'smog', 'nimbus', 'humidity', 'hydrological cycle', 'condensation nuclei']",280893,6090,120,PT10M19S,true
"Determining SN1, SN2, E1, and E2 Reactions: Crash Course Organic Chemistry #23",2SWVieovfsQ,2021-03-04T16:00:07Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'substitution reactions', 'substitution', 'SN1', 'SN2', 'E1', 'E2', 'elimination', 'elimination reactions', 'substrate', 'nucleophile', 'Williamson etherification', ""Zaitsev's rule""]",178459,3532,48,PT13M31S,true
How Do Oceans Circulate? Crash Course Geography #9,xa6SdvFA3w0,2021-03-01T21:48:56Z,"['Crash Course', 'crashcourse', 'education', 'geograpy', 'oceans', 'garbage patch', 'pllution', 'gyre', 'current', 'North Pacific garbage patch', 'Coriolis effect', 'eddies', 'upwelling', 'nonpoint source pollution']",249403,5402,109,PT11M3S,true
Where Does Wind Come From? Crash Course Geography #8,ao_-OjDQwfk,2021-02-23T22:00:32Z,"['Crash Course', 'crashcourse', 'education', 'geography', 'geo', 'wind', 'high', 'low', 'cyclone', 'anticyclone', 'air pressure', 'equatorial trough', 'Coriolis effect', 'Hadley cell', 'intertropical convergence zone', 'doldrum', 'trade winds', 'westerly', 'easterly', 'westerlies', 'easterlies']",319332,7580,111,PT11M19S,true
E1 and E2 Reactions: Crash Course Organic Chemistry #22,ZOUS0Q_B4fQ,2021-02-17T23:15:16Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'elimination', 'elimination reactions', 'E1 mechanism', 'E2 mechanism', ""Zaitsev's Rule""]",205721,3632,71,PT13M58S,true
How Does Air Temperature Shape a Place? Crash Course Geography #7,OrhQmxK7s5A,2021-02-09T22:03:31Z,"['Crash Course', 'crashcourse', 'education', 'temperature', 'siberia', 'phoenix', 'arizona', 'urban heath islands', 'isotherms', 'continental effect', 'Yakutsk', 'Verkhoyansk', 'altitude', 'elevation']",165264,3866,48,PT10M52S,true
Substitution Reactions - SN1 and SN2 Mechanisms: Crash Course Organic Chemistry #21,Wxn5jvR-ffQ,2021-02-08T17:22:23Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'Substitution reactions', 'SN1', 'SN2', 'dry cleaning', 'perc', 'substrate', 'leaving group', 'nucleophile', 'solvent', 'polar protic', 'polar aprotic', 'reaction mechanisms']",235795,4244,49,PT12M19S,true
What Does the Atmosphere Do? Crash Course Geography #6,11ZI9aqurfA,2021-02-01T20:57:50Z,"['Crash Course', 'crashcourse', 'education', 'geography', 'atmosphere', 'air', 'troposphere', 'stratosphere', 'ozone', 'thermosphere', 'mesophere', 'solar radiation', 'atmospheric energy budget', 'convection', 'greenhouse gases', 'greenhouse effect', 'weather']",301102,5626,76,PT10M42S,true
How Does the Earth Move? Crash Course Geography #5,ljjLV-5Sa98,2021-01-25T21:09:12Z,"['Crash Course', 'crashcourse', 'education', 'geography', 'equinox', 'solstice', 'seasons', 'plane of the ecliptic', 'orbit', 'wobble', 'malankovich cycles', 'circle of illumination']",236556,6077,128,PT10M33S,true
Writing Systems: Crash Course Linguistics #16,-sUUWyo4RZQ,2021-01-22T19:00:12Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'language', 'linguistics', 'writing systems', 'orthography', 'grapheme', 'alphabet', 'abjad', 'logographic writing', 'logograms', 'syllabary', 'kanji', 'kana', 'proto-writing', 'hieroglyphs', 'cuneiform', 'olmec glyphs', 'oracle bone script', 'spelling', 'hangul', 'PBS', 'lingthusiasm']",118408,4659,243,PT11M46S,true
Intro to Substitution Reactions: Crash Course Organic Chemistry #20,69-FZDJ_eoI,2021-01-21T22:30:38Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'substitution reactions', 'SN1', 'SN2']",165929,3254,51,PT12M7S,true
Computational Linguistics: Crash Course Linguistics #15,3npuPXvA_g8,2021-01-15T19:01:22Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'language', 'linguistics', 'computational linguistics', 'natural language processing', 'NLP', 'machine bias', 'neural networks', 'supervised learning', 'unsupervised learning', 'semi-supervised learning', 'text generation', 'speech synthesis', 'bias', 'PBS', 'lingthusiasm']",130842,4234,111,PT11M23S,true
What is Physical Geography? Crash Course Geography #4,vlVVaZhRAEA,2021-01-12T20:06:57Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",363663,6332,111,PT11M9S,true
World Languages: Crash Course Linguistics #14,Nxyo83cQjhI,2021-01-08T18:45:35Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'mutual intelligibility', 'dialect', 'dialect continuum', 'linguistic diversity', 'dialect chain', 'diaspora', 'diaspora communities', 'deaf-community sign language', 'village sign language', 'language ideology', 'language nest', 'linguistic justice', 'PBS', 'lingthusiasm', 'linguistics', 'language']",147218,4791,264,PT11M40S,true
Radical Reactions & Hammond's Postulate: Crash Course Organic Chemistry #19,WsKWFoIMCQ0,2021-01-06T23:50:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'radicals', ""hammond's postulate"", 'halogenation of alkanes', 'halogenation of alkenes']",90241,1735,52,PT12M1S,true
What is space and how do we study it? Crash Course Geography #3,mtq2PG67w4E,2020-12-22T19:11:24Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",254208,5915,100,PT10M26S,true
Language Change and Historical Linguistics: Crash Course Linguistics #13,dNkMC92kFLA,2020-12-18T19:00:37Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'language', 'linguistics', 'historical linguistics', 'language change', 'homesign', 'language contact', 'multilingualism', 'pidgin', 'creole', 'diachronic analysis', 'synchronic analysis', 'cognates', 'proto-language', 'isolates', 'comparative reconstruction', 'lingthusiasm', 'PBS']",176217,5219,142,PT12M13S,true
Alkyne Reactions & Tautomerization: Crash Course Organic Chemistry #18,zFSHoaScfwY,2020-12-16T23:16:49Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'alkyne', 'tautomer', 'terminal alkyne', 'carbanion', 'halogenation', 'mercury-catalyzed hydration reaction', 'enol', 'acid-catalyzed tautomerization', 'tautomerization', 'enol form', 'keto form', 'hydroboration', 'base-catalyzed tautomerization', 'Lindlar’s catalyst', 'metal-ammonia reduction']",91128,1757,90,PT11M56S,true
What is a Map? Crash Course Geography #2,iHEMOdRo5u8,2020-12-14T19:02:30Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",538182,9074,179,PT10M30S,true
Language Acquisition: Crash Course Linguistics #12,Ccsf0yX7ECg,2020-12-11T19:20:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'language', 'linguistics', 'babbling', 'child directed speech', 'one word phase', 'two word phase', 'wug', 'wug test', 'Jean Berko-Gleason', 'overextending rules', 'critical period', 'language deprivation', 'language transfer', 'biligualism', 'multilingualism', 'code switching', 'heritage language', 'PBS', 'lingthusiasm']",263188,7126,169,PT10M52S,true
Psycholinguistics: Crash Course Linguistics #11,A5uNFKEn4_A,2020-12-04T19:03:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'linguistics', 'language', 'psycholinguitics', ""Broca's area"", ""Wernicke's area"", 'brain', 'psychology', 'aphasia', 'kiki', 'bouba', 'kiki bouba test', 'neuroplasticity', 'garden path sentences', 'eyetracking', 'gating experiments', 'fMRI', 'EEG', 'PBS', 'lingthusiasm']",172673,5907,134,PT11M3S,true
Alkene Redox Reactions: Crash Course Organic Chemistry #17,HYSRwaMo3tY,2020-12-03T20:04:15Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'redox', 'redox reactions', 'oxidation', 'reduction', 'oxidation reduction reactions', 'alkene']",85180,1562,74,PT11M9S,true
🍌 What is Geography? Crash Course Geography #1,93LLwiMjDko,2020-11-30T21:01:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",827479,16360,370,PT10M33S,true
Phonology: Crash Course Linguistics #10,imH7hdOgxrU,2020-11-20T19:00:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'language', 'linguistics', 'phology', 'phonological patterns', 'phone', 'phoneme', 'sound', 'patterns', 'pronunciation', 'aspiration', 'allophones', 'assimilation', 'deletion', 'elision', 'epenthesis', 'metathesis', 'dissimilation', 'PBS', 'lingthusiasm']",258481,7062,139,PT12M6S,true
Crash Course Geography Preview,Di5vJwH0VZ8,2020-11-17T18:55:54Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",474166,12236,544,PT3M23S,true
Phonetics - Vowels: Crash Course Linguistics #9,qPTL5x0QW-Y,2020-11-13T19:01:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'linguistics', 'language', 'phonetics', 'vowels', 'IPA', 'International Phonetic Alphabet', 'vowel space', 'rounding', 'diphthong', 'vowel inventory', 'diacritics', 'nasalization', 'tone', 'Lingthusiasm', 'PBS']",188223,5969,120,PT11M24S,true
Alkene Addition Reactions: Crash Course Organic Chemistry #16,3WbjKwRqOhk,2020-11-12T00:26:08Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'alkenes', 'alkene addition', 'addition reactions', 'hydration', ""Markovnikov's rule"", 'syn addition', 'anti addition', 'regioselectivity', 'halogenation', 'oxymercuration/reduction', 'hydroboration', 'concerted reaction', 'oxidation']",209583,3480,142,PT12M53S,true
Phonetics - Consonants: Crash Course Linguistics #8,vyea8Ph9BOM,2020-10-30T18:24:33Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'language', 'linguistics', 'phonetics', 'consonants', 'International Phonetic Alphabet', 'IPA', 'speech sounds', 'vocal tract', 'articulation', 'PBS', 'Lingthusiasm', 'vocal chords', 'voicing']",447350,10624,191,PT11M30S,true
Thermodynamics and Energy Diagrams: Crash Course Organic Chemistry #15,Ykhn2psFmEM,2020-10-28T21:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'thermodynamics', 'entropy', 'enthalpy', 'Gibbs free energy', 'energy diagrams', 'kinetics', 'reaction kinetics', 'activation energy', 'catalysts', 'catalysis']",305474,19233,1873,PT11M12S,true
Sociolinguistics: Crash Course Linguistics #7,of4XzrbkknM,2020-10-23T18:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'language', 'linguistics', 'sociolinguistics', 'dialect', 'dialectology', 'demographics', 'society', 'social networks', 'accent', 'AAE', 'AAVE', ""observer's paradox"", 'William Labov', 'BANZSL', 'PBS', 'Lingthusiasm', 'code switching', 'linguistic discrimination']",229545,7433,156,PT11M22S,true
Covid-19 and Public Health: A Message from Crash Course,G4rcv3p7AYg,2020-10-19T19:40:39Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'back to school', 'reopening', 'coronavirus', 'corona', 'virus', 'covid-19', 'pandemic', 'lockdown', 'lock down', 'outbreak', 'CDC', 'recommendations']",286243,17429,563,PT13M51S,true
Pragmatics: Crash Course Linguistics #6,MPwpk-YgvjQ,2020-10-16T18:03:33Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'linguistics', 'language', 'pragmatics', 'cooperative principle', ""Grice's maxims"", 'Paul Grice', 'context', 'implicature', 'turn taking', 'assumptions', 'hedges', 'lingthusiasm', 'PBS', 'communication']",257936,8698,179,PT9M57S,true
"E/Z Alkenes, Electrophilic Addition, & Carbocations: Crash Course Organic Chemistry #14",B8qaENT_k0A,2020-10-14T18:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'alkene', ""Markovnikov's Rule"", 'nomenclature', 'carbocations', 'addition reactions', 'inductive effect', 'hyperconjugation']",153522,3114,77,PT14M2S,true
Semantics: Crash Course Linguistics #5,6geQjY8b7sA,2020-10-09T18:01:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'language', 'linguistics', 'semantics', 'lexicon', 'lexicography', 'semantic relationships', 'Eleanor Rosch', 'prototype theory', 'formal semantics', 'predicate calculus', 'meaning', 'definition', 'lingthusiasm', 'PBS']",302675,8741,185,PT10M39S,true
Syntax - Trees: Crash Course Linguistics #4,n1zpnN-6pZQ,2020-10-02T18:00:31Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'linguistics', 'language', 'syntax', 'tree diagrams', 'tree structure diagrams', 'cleft test', 'noun phrase', 'verb phrase', 'determiner', 'grammar', 'recursion', 'prepositional phrase', 'lingthusiasm', 'PBS']",219956,6561,147,PT10M42S,true
Intro to Reaction Mechanisms: Crash Course Organic Chemistry #13,ORMUTUhYjvg,2020-09-30T18:00:04Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'reaction mechanisms', 'arrow pushing', 'resonance', 'resonance structures', 'nucelophilic attack']",286616,5786,105,PT12M43S,true
Syntax - Morphosyntax: Crash Course Linguistics #3,B1r1grQiLdk,2020-09-25T18:00:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'linguistics', 'language', 'syntax', 'grammar', 'morphosyntax', 'grammaticality', 'cleft test', 'substitution test', 'Noam Chomsky', 'linguist', 'idiolect', 'lingthusiasm', 'Gretchen McCulloch', 'Lauren Gawne', 'PBS', 'PBS Digital Studios']",276815,8704,200,PT10M32S,true
Morphology: Crash Course Linguistics #2,93sK4jTGrss,2020-09-18T18:00:04Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'linguistics', 'language', 'morphology', 'lingthusiasm', 'Gretchen McCulloch', 'Lauren Gawne', 'morpheme', 'affix', 'Taylor Behnke', 'PBS', 'lexeme', 'lexicon', 'suffix', 'prefix']",533269,19172,464,PT10M49S,true
Nucleophiles and Electrophiles: Crash Course Organic Chemistry #12,R3PLq3dOqv4,2020-09-16T18:00:04Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'nucleophile', 'electrophile', 'nucleophilic attack', 'reaction mechanism', 'IR spectroscopy', 'infrared spectroscopy', 'cyanide']",200947,4547,118,PT12M8S,true
What is Linguistics?: Crash Course Linguistics #1,3yLXNzDUH58,2020-09-11T18:02:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'linguistics', 'language', 'sign language', 'lingthusiasm', 'PBS']",859169,30004,806,PT11M12S,true
Crash Course Linguistics Preview,eDop3FDoUzk,2020-09-04T18:01:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'linguistics', 'language']",437124,16448,1032,PT2M50S,true
Acidity: Crash Course Organic Chemistry #11,BLKqbC_QIZA,2020-09-03T16:30:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'organic chemisty', 'chemistry', 'acid base chemistry', 'acidity']",213130,5131,161,PT11M18S,true
"What History Was, Is, and Will Be: Crash Course European History #50",1hAraGgEiAo,2020-08-28T19:20:39Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'historic', 'historiography', 'Europe', 'European', 'nationalism', 'narrative', 'historians', 'France', 'England', 'Germany', 'Russia', 'USSR', 'Soviet Union']",271598,9804,444,PT15M7S,true
"Polarity, Resonance, and Electron Pushing: Crash Course Organic Chemistry #10",r83xGgfkxa8,2020-08-19T22:35:16Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'polarity', 'resonance', 'electronegativity', 'electron pushing']",201505,4991,200,PT11M46S,true
21st Century Challenges: Crash Course European History #49,-_6978boAQ8,2020-08-14T23:26:53Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",238785,7952,675,PT12M46S,false
More Stereochemical Relationships: Crash Course Organic Chemistry #9,ofFEFywbJKA,2020-08-05T21:17:47Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'stereochemistry', 'enantiomers', 'polarimetry']",149762,2937,81,PT12M48S,true
Europe in the Global Age: Crash Course European History #48,UauE2FUQYH0,2020-07-30T22:02:31Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",244496,7625,354,PT11M57S,true
Stereochemistry: Crash Course Organic Chemistry #8,Bw_cetheReo,2020-07-23T15:00:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'chirality', 'stereochemistry', 'enantiomers', 'chiral', 'achiral']",354905,7479,143,PT14M35S,true
The Fall of Communism: Crash Course European History #47,OfJ8Wzanhr4,2020-07-16T18:35:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Europe', 'history', 'European', 'AP', 'WHAP', 'World History', 'communism', 'communist', 'Soviet Union', 'Warsaw Pact', 'Collapse', 'fall', '1991', '1989', 'Poland', 'Hungary', 'Bulgaria', 'Czechoslovakia', 'Czech Republic', 'Slovakia', 'Yugoslavia', 'Bosnia', 'Heregovina', 'Serbia', 'Albania']",390892,11511,543,PT13M25S,true
Cyclohexanes: Crash Course Organic Chemistry #7,GRVxDqhgOYo,2020-07-08T21:00:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'conformations', 'chair flip']",182247,3814,121,PT14M9S,true
The Soviet Bloc Unwinds: Crash Course European History #46,aStaPgdvIdI,2020-06-30T17:05:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'Europe', 'European History', 'AP', 'WHAP', 'world history', 'Germany', 'East Germany', 'USSR', 'Soviet Union', 'Soviet bloc', 'Warsaw Pact']",405291,9165,281,PT13M59S,true
Alkanes: Crash Course Organic Chemistry #6,ryHnC0wqTTo,2020-06-24T18:00:15Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'alkanes']",255074,5284,110,PT11M51S,true
Protests East and West: Crash Course European History #45,fs_SvMr5IPE,2020-06-20T14:23:58Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'europe', 'european', 'european history', 'cold war', 'protest', 'dissent', 'Prague', 'Paris', '1968', 'USSR', 'Russia', 'France', 'Czechoslovakia', 'Vaclav Havel', 'United Kingdom']",274833,7429,352,PT12M28S,true
IR Spectroscopy and Mass Spectrometry: Crash Course Organic Chemistry #5,xMa1BQ8z9C0,2020-06-09T20:58:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry']",348554,7279,148,PT13M51S,true
Revolutions in Science and Tech: Crash Course European History #44,zDEmHQhGkBg,2020-06-01T20:39:24Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'europe', 'european', 'history', 'world history', 'AP', 'AP Euro', 'WHAP', 'DNA', 'Watson', 'Crick', 'Science', 'Technology', 'University', 'Vaccine', 'antibiotic', 'scientific', 'inventions', 'advances']",322800,7518,318,PT15M14S,true
3D Structure and Bonding: Crash Course Organic Chemistry #4,cpWHgKgKxGk,2020-05-27T19:30:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'organic chemistry', 'chemistry', 'isomers', 'VSEPR']",313756,6101,199,PT14M33S,true
More Organic Nomenclature: Heteroatom Functional Groups: Crash Course Organic Chemistry #3,VAmVdxEksxY,2020-05-20T20:00:07Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'IUPAC']",315235,6246,118,PT12M24S,true
Decolonization: Crash Course European History #43,FlMKqRCNX9c,2020-05-19T22:25:54Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Europe', 'European history', 'colony', 'colonial', 'decolonization', 'Kenya', 'India', 'Congo', 'Africa', 'Asia', 'Pakistan', 'partition', 'Bangladesh', 'Empire', 'Britain', 'France', 'Pondicherry', 'Angola']",495730,11399,1087,PT13M23S,true
The Basics of Organic Nomenclature: Crash Course Organic Chemistry #2,HhT2E7wuAgg,2020-05-06T21:00:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chemistry', 'organic chemistry', 'IUPAC', 'organic chemistry nomenclature', 'systematic naming']",642672,14642,328,PT12M48S,true
Post-World War II Recovery: Crash Course European History #42,nlp068CmQaE,2020-05-06T00:41:24Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Europe', 'european', 'history', 'historic', 'war', 'world war ii', 'Germany', 'United Kingdom', 'France', 'United Nations', 'Poland', 'Warsaw Pact', 'Soviet', 'Soviet Union', 'USSR']",473172,10531,678,PT15M57S,false
Announcing the Crash Course App!,JfMmzx67Krw,2020-05-01T19:11:58Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",173525,15932,1339,PT3M22S,true
What Is Organic Chemistry?: Crash Course Organic Chemistry #1,PmvLB5dIEp8,2020-04-30T18:30:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'organic chemistry', 'chemistry']",938284,21828,446,PT10M16S,true
Crash Course Organic Chemistry Preview,bSMx0NS0XfY,2020-04-22T19:30:04Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'organic chemistry', 'chemistry']",871469,16896,811,PT3M34S,true
Post-War Rebuilding and the Cold War: Crash Course European History #41,-rkIqtV07HE,2020-04-21T18:39:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'European history', 'Europe', 'Euro', 'AP', 'WHAP', 'test', 'exam', 'cold war', 'world war II', 'war', 'conflict', 'Germany', 'France', 'Russia', 'USSR', 'UK', 'United Kingdom', 'Italy', 'United States', 'Marshall Plan', 'NATO', 'Warsaw Pact']",622402,11038,586,PT14M46S,false
"The Holocaust,Genocides, and Mass Murder of WWII: Crash Course European History #40",iQeDvnapdlg,2020-04-10T14:44:46Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'holocaust', 'Shoah', 'genocide', 'muder', 'mass murder', 'Jewish', 'concentration camps', 'Auschwitz', 'Treblinka', 'Dachau', 'Bergen-Belsen', 'pogrom', 'cremation', 'gas chamber', 'zyklon b']",1084342,23553,0,PT13M39S,true
World War II Civilians and Soldiers: Crash Course European History #39,rlx6ur_D51s,2020-03-31T20:28:04Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'World War II', 'history', 'european history', 'Europe', 'UK', 'United Kingdom', 'France', 'Germany', 'Italy', 'Norway', 'Russia', 'USSR', 'Soviet Union', 'Ukraine', 'war', 'battle', 'famine', 'Leningrad', 'Bengal', 'India', 'Stalingrad', 'London', 'Paris', 'World History']",461748,10677,617,PT14M25S,true
World War II: Crash Course European History #38,Hs_JMydrxZM,2020-03-17T17:59:04Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",1016479,17114,835,PT16M15S,true
Economic Depression and Dictators: Crash Course European History #37,Ojo8-GhhQcA,2020-03-05T21:37:25Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Germany', 'Italy', 'Japan', 'Russia', 'USSR', 'Soviet Union', 'Hitler', 'Spain', 'Mussolini', 'Franco', 'Stalin', 'depression', 'wall street']",1295685,22323,1286,PT16M34S,true
Post-World War I Recovery: Crash Course European History #36,xzWL2XPBHMk,2020-02-25T22:39:49Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'europe', 'European', 'history', 'world history', 'Germany', 'Inflation', 'Versailles', 'treaty', 'World War I', 'WWI', '1920s', '1930s', 'Hitler', 'Mussolini', 'Reichstag', 'Weimar', 'black shirts', 'brown shirts', 'SA']",848778,13922,672,PT14M48S,true
Russian Revolution and Civil War: Crash Course European History #35,U6KR4cLLVzQ,2020-02-13T22:37:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'Europe', 'European', 'Euro', 'AP', 'WHAP', 'Russia', 'Russian', 'Revolution', 'civil war', 'bolshevik', 'communist', 'Lenin', 'Stalin', 'Trotsky', 'Red Army', 'Petrograd', 'Moscow', '1917', '1918', '1919', 'October Revolution']",1378549,21544,1077,PT14M16S,true
"WWI's Civilians, the Homefront, and an Uneasy Peace: Crash Course European History #34",dPXNZkGYJHM,2020-01-29T15:42:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'european history', 'euro', 'Europe', 'World War I', 'civilians', 'home front', 'homefront', 'UK', 'Britain', 'Russia', 'France', 'Germany', 'labor', 'factory', 'work', 'Soviet', 'Paris Conference', 'Treaty of Versailles', 'Woodrow Wilson', 'peace', '14 Points', 'League of Nations']",589400,10027,476,PT14M7S,true
World War I Battlefields: Crash Course European History #33,IIiDULrXaqQ,2020-01-23T21:22:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'Europe', 'European', 'war', 'World War I', 'WWI', 'Germany', 'France', 'UK', 'Britain', 'United Kingdom', 'Belgium', 'Italy', 'Austria-Hungary', 'Habsburg', 'Ottoman Empire', 'battle', 'battlefields', 'trench', 'trenches.']",694525,12670,774,PT14M16S,true
The Roads to World War I: Crash Course European History #32,KGlmlSTn-eM,2020-01-16T13:56:44Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'WWI', 'world war i', 'history', 'European history', 'Europe', 'Euro', 'AP', 'WHAP', 'World History', 'historic', 'advanced placement', 'exam', 'test', 'England', 'UK', 'Germany', 'France', 'Russia', 'Empire', 'Archduke', 'Franz Ferdinand']",1036785,16369,735,PT15M1S,true
Modern Thought and Culture in 1900: Crash Course European History #31,xGjpTjeGuZc,2020-01-08T20:59:07Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Europe', 'European', 'history', 'historic', 'arts', 'science', 'philosophy', 'music', 'dance', 'art', 'ballet', 'stravinsky', 'rite of spring', 'modernism', 'modern', 'century', 'nineteenth', 'Art Nouveau', 'Impressionist', 'Cezanne', 'Manet', 'Monet', 'Van Gogh', 'Mucha', 'History of Science', 'Hilma Af Klint', 'Picasso', 'Edvard Munch', 'Curie', 'Einstein', 'von Planck', 'Freud', 'Relativity', 'physics']",474155,9617,310,PT15M9S,true
The Future of Artificial Intelligence: Crash Course AI #20,T7Rv4tGRlfc,2019-12-27T20:00:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",202272,4118,191,PT11M,true
Cats vs Dogs? Let's make an AI to settle this: Crash Course AI #19,_DZJV9ey1nE,2019-12-20T21:02:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'algorithmic bias', 'bias', 'neural network', 'machine learning', 'artificial intelligence', 'correlated feature', 'cats vs dogs']",81254,1736,97,PT13M5S,true
Modern Life: Crash Course European History #30,meC5Zl5PC1U,2019-12-18T00:41:07Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'Europe', 'European History', 'Euro', 'AP', 'WHAP', 'World History', 'modern', 'modernity', 'Kaiser', 'William II', 'Oscar Wilde', 'women', 'feminism', 'suffrage', 'suffragettes']",378243,7764,526,PT14M33S,true
Algorithmic Bias and Fairness: Crash Course AI #18,gV0_raKR2UQ,2019-12-13T22:31:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'algorithmic bias', 'fiarness', 'discrimination', 'protected classes', 'data', 'transparency', 'predpol', 'positive feedback loop', 'correlated feature']",148025,3112,147,PT11M20S,true
Is Growth Right For You?: Crash Course Entrepreneurship #17,pqPvwTvvnaY,2019-12-11T22:30:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",94349,2016,81,PT11M4S,true
Migration: Crash Course European History #29,MN8fjAjLLpg,2019-12-10T22:57:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'European history', 'Europe', 'Euro', 'world history', 'whap', 'AP', 'exam', 'test', 'study', 'homework help', 'Britain', 'France', 'Russia', 'Italy', 'Sicily', 'immigrant', 'immigration', 'emigrant', 'emigration', 'Ireland', 'England', 'United Kingdom', 'Ellis Island', 'United States', 'migrant', 'migration']",487275,9581,545,PT13M58S,false
Web Search: Crash Course AI #17,PnFwdCGmVG0,2019-12-06T22:18:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'search engine', 'google', 'siri', 'alexa', 'web', 'internet', 'nell', 'inverted index', 'web crawler', 'knowledge base', 'genghis khan', 'web page', 'seed', 'darth vader']",79391,1745,60,PT11M15S,true
Financing Options for Small Businesses: Crash Course Entrepreneurship #16,MYVL1XHeB74,2019-12-04T22:30:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",159961,3143,74,PT10M56S,true
Expansion and Resistance: Crash Course European History #28,eBA7P-zKbi8,2019-12-03T19:04:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'Euro', 'European history', 'France', 'England', 'Britain', 'Portugal', 'Belgium', 'Africa', 'Asia', 'Oceania', 'China', 'Mozambique', 'South Africa', 'colony', 'colonial', 'colonialism', 'empire', 'imperial']",576055,9089,710,PT13M14S,true
Let's make a movie recommendation system: Crash Course AI #16,iaIW3CO4rcY,2019-11-29T21:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'artificial intelligence', 'ai', 'machine learning', 'movie recommender', 'collaborative filtering', 'lenskit', 'movielens', 'princess bride', 'movie', 'netflix']",69666,1636,60,PT14M41S,true
Understanding Financial Statements and Accounting: Crash Course Entrepreneurship #15,_HK5gpg39pY,2019-11-27T22:30:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'accounting', 'money', 'expenses', 'revenue', 'revenue stream', 'point of sale', 'net income', 'income statement', 'balance sheet', 'assets', 'liabilities', 'anna akana', 'crash course business', 'cash flow', 'cash flow statement']",479547,11930,137,PT12M43S,true
Italian and German Unification: Crash Course European History #27,KSjDe9_jZk8,2019-11-27T00:21:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'History', 'historic', 'Europe', 'European', 'Euro', 'AP', 'World History', 'WHAP', 'Germany', 'Italy', 'France', 'Austria', 'Prussia', 'Russian Empire', 'Franco-Prussian War', 'Austro-Prussian War', 'Otto von Bismarck']",1166797,19238,664,PT14M22S,true
How YouTube knows what you should watch: Crash Course AI #15,kiInh5STnyQ,2019-11-22T19:29:07Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",83165,2829,108,PT10M52S,true
Expenses & Costs - How to Spend Money Wisely: Crash Course Entrepreneurship #14,iXbz1lMNd7I,2019-11-20T23:26:19Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'entrepreneurship', 'crash course business', 'expenses', 'fixed costs', 'direct costs', 'sg&a', 'cost driven', 'value driven', 'anna akana']",125385,2644,77,PT10M54S,true
Revolutions of 1848: Crash Course European History #26,cXTaP1BD1YY,2019-11-19T21:55:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'historic', 'europe', 'European', 'Euro', 'AP', 'test', 'exam', 'study', 'WHAP', 'Austria', 'German States', 'Germany', '1848', 'revolutions', 'Bohemia', 'Prague', 'Vienna', 'Pest', 'Hungary', 'Poland', 'Polish', 'Austrian Empire']",911582,15459,644,PT16M25S,true
Humans and AI working together: Crash Course AI #14,PIAPzioNt9Y,2019-11-15T21:00:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'artificial intelligence', 'machine learning', 'ai', 'exoskeleton', 'chess', 'robots', 'robotics', 'automation', 'jobs']",69782,1602,72,PT10M13S,true
Revenue Streams: Crash Course Entrepreneurship #13,Vhz9fGYkYLg,2019-11-13T22:00:04Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'money', 'revenue', 'revenue streams', 'business', 'small business', 'entrepreneurship', 'entrepreneur', 'anna akana', 'crash course business', 'crash course entrepreneurship', 'how to make money']",128877,2521,78,PT10M48S,true
Reform and Revolution 1815-1848: Crash Course European History #25,_uKp4FHPjHU,2019-11-12T17:53:28Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'Euro', 'European history', 'Europe', 'Robert Owen', 'Reform', 'parliament', 'social', 'socialism', 'socialist', 'utopia', 'utopian', 'fourier', 'Comte', 'Saint Simon', 'France', 'England']",743033,12037,338,PT14M6S,true
Let's make an AI that destroys video games: Crash Course AI #13,osbmLJb2Tkc,2019-11-08T22:07:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Artificial intelligence', 'machine learning', 'ai', 'games', 'gaming', 'neural network', 'evolutionary neural network']",89975,2006,66,PT13M26S,true
What's new with Crash Course,seLtYzXJ_YE,2019-11-07T23:07:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",116427,6791,716,PT2M54S,true
How to Sell Anything: Crash Course Entrepreneurship #12,n7-wsGLc1js,2019-11-06T22:30:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'entrepreneurship', 'business', 'anna akana', 'crash course business', 'how to sell', 'selling']",136905,3633,147,PT11M4S,true
The Industrial Revolution: Crash Course European History #24,zjK7PWmRRyg,2019-11-05T21:19:14Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'europe', 'european history', 'historic', 'Euro', 'AP', 'AP Euro', 'WHAP', 'World History', 'Industry', 'Industrial', 'revolution', 'Watt', 'steam engine', 'England', 'flying shuttle', 'weaving', 'textile', 'factory', 'mechanization', 'proletariat', 'bourgeosie']",1871229,25436,732,PT17M6S,true
AI Playing Games: Crash Course AI #12,nw7zmdBLQ6U,2019-11-01T19:58:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Artificial intelligence', 'machine learning', 'ai', 'games', 'gaming', 'neural network', 'MarI/O', 'evolutionary neural network', 'DOTA 2', 'Jeopardy', 'Chess', 'Go', 'minimax algorithm', 'Starcraft 2', 'Deep Blue', 'Mechanical Turk', 'Battleship']",79495,1784,104,PT11M31S,true
How to Communicate with Customers: Crash Course Entrepreneurship #11,gaPWVChiyfk,2019-10-30T21:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'entrepreneurship', 'business entrepreneurship', 'anna akana', 'communication', 'customers', 'customer communication']",87014,1765,73,PT10M29S,true
The Congress of Vienna: Crash Course European History #23,DuVw9sGpWUc,2019-10-30T01:24:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Europe', 'European', 'history', 'Euro', 'World History', 'historic', 'WHAP', 'AP', 'test', 'exam', 'homework help', 'study', 'Metternich', 'France', 'French Revolution', 'Napoleon', 'Bonaparte', 'Talleyrand', 'Congress of Vienna', 'romance', 'romantic', 'Shelley', 'Byron']",877631,14418,405,PT14M1S,true
Robotics: Crash Course AI #11,_U21fT8VLp0,2019-10-25T20:40:23Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'robots', 'robotics', 'artificial intelligence', 'machine learning', 'ml', 'curiosity', 'slam', 'lidar', 'manipulation', 'proprioception', 'exoskeleton', 'delivery robot', 'drones', 'localization', 'planning', 'IR', 'mapping', 'self-driving cars']",123376,2573,77,PT10M12S,true
Napoleon Bonaparte: Crash Course European History #22,Pd6E38FfuMg,2019-10-22T02:04:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'Euro', 'Europe', 'European History', 'AP', 'WHAP', 'Napoleon', 'France', 'Bonaparte', 'French Revolution', 'French', 'army', 'war', '1812', 'Waterloo', 'Leipzig', 'UK', 'Britain', 'British', 'United Kingdom', 'Wellington', 'Paris', 'battle']",2089790,31152,854,PT15M54S,true
Symbolic AI: Crash Course AI #10,WHCo4m2VOws,2019-10-18T20:15:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'articial intelligence', 'machine learning', 'ai', 'symbolic ai', 'expert systems', 'logic', 'propositional logic', 'implication', 'if then']",105073,2803,93,PT13M22S,true
How to Build Customer Relationships: Crash Course Entrepreneurship #10,hoO5ZdKl2qE,2019-10-16T21:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'entrepreneurship', 'entrepreneur', 'customer', 'customer relationship', 'anna akana', 'customer relationships', 'crash course business', 'crash course entrepreneurship']",183380,2753,57,PT10M44S,true
Reinforcement Learning: Crash Course AI #9,nIgIv4IfJ6s,2019-10-11T20:17:51Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'machine learning', 'artificial intelligence', 'reinforcement learning', 'ai', 'credit assignment', 'reward', 'agent', 'exploration', 'exploitation', 'supervised learning', 'unsupervised learning']",123141,3242,74,PT11M28S,true
How to Seek Help and Find Key Partners: Crash Course Entrepreneurship #9,-KjqyqQAZ3A,2019-10-09T21:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'key partners', 'key resources', 'business', 'entrepreneur', 'entrepreneurship', 'self care']",103635,2315,85,PT11M15S,true
The French Revolution: Crash Course European History #21,5fJl_ZX91l0,2019-10-08T20:43:55Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'European history', 'world', 'AP', 'Euro', 'WHAP', 'French Revolution', 'Louis XVI', 'Marie Antoinette', 'France', 'Robespierre', 'Committee for Public Safety', 'The Directory', 'Napoleon', 'Bonaparte', 'Europe', 'historic', 'revolution', 'war', 'conflict']",1430561,22276,799,PT15M29S,true
Make an AI sound like a YouTuber (LAB): Crash Course AI #8,kZWum5omEv4,2019-10-04T19:45:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'artificial intelligence', 'machine learning', 'ai', 'nlp', 'natural language processing', 'neural network', 'recurrent', 'rnn', 'lexical type', 'lexical token', 'tokenization', 'stemming', 'validation', 'embedding matrix', 'perplexity']",86520,2197,101,PT16M,true
The Core of a Business - Key Activities & Resources: Crash Course Business Entrepreneurship #8,8bu1Ltpeiu4,2019-10-02T21:30:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'entrepreneur', 'entrepreneurship', 'crash course business', 'anna akana', 'key activities', 'key resources']",113169,2455,90,PT10M2S,true
Natural Language Processing: Crash Course AI #7,oi0JXuL19TA,2019-09-27T20:59:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'natural language processing', 'NLP', 'artificial intelligence', 'machine learning', 'ai', 'rnn', 'recurrent neural network', 'distributional semantics', 'siri', 'alexa', 'google assistant', 'encoder', 'decoder', 'morphology', 'natural language generation', 'natural langugage understanding']",128808,3255,109,PT13M29S,true
Testing Your Product and Getting Feedback: Crash Course Business Entrepreneurship #7,zzn3xDiw1iE,2019-09-25T21:30:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'feedback', 'validation', 'products', 'product validation', 'crash course business', 'entrepreneurship', 'anna akana']",98928,2086,75,PT12M18S,true
18th Century Warfare: Crash Course European History #20,xbbYCe2o1SI,2019-09-24T14:52:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'Europe', 'Euro', 'European History', 'conflict', 'war', 'warfare', 'France', 'England', 'Britain', 'Austria', 'Poland', 'Spain', 'Habsburg', 'United States', 'American Revolution', 'Revolutionary war', 'Seven Years War', 'French and Indian War']",618441,10950,447,PT14M59S,true
Unsupervised Learning: Crash Course AI #6,JnnaDNNb380,2019-09-20T22:00:15Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Unsupervised Learning', 'Artificial Intelligence', 'Machine Learning', 'k-means clustering', 'clustering', 'representation learning', 'reconstruction']",160367,3971,88,PT12M35S,true
Minimum Viable Product and Pivoting: Crash Course Business Entrepreneurship #6,kmfC-i9WgH0,2019-09-18T22:07:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'mvp', 'minimum viable product', 'crash course', 'crash course business', 'entrepreneurship', 'business entrepreneurship', 'anna akana']",158796,3679,105,PT11M15S,true
Enlightened Monarchs: Crash Course European History #19,k108xCzJhbs,2019-09-17T00:21:51Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'European history', 'enlightenment', 'enlightened', 'monarch', 'rule', 'Habsburg', 'Hapsburg', 'France', 'Europe', 'Austria', 'Prussia', 'Bourbon', 'Vienna']",711754,11537,428,PT13M41S,true
Legal Basics and Business Entity Formation: Crash Course Business Entrepreneurship #5,1-xiSOvgNvw,2019-09-11T21:30:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",311208,6121,163,PT14M56S,true
The Enlightenment: Crash Course European History #18,NnoFj2cMRLY,2019-09-09T22:51:40Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'Euro', 'Europe', 'Voltaire', 'Rousseau', 'Montesquieu', 'Kant', 'Adam Smith', 'David Hume', 'Enlightenment', 'hilisophe', 'philosophy']",1936537,27144,631,PT16M23S,true
How to make an AI read your handwriting (LAB) : Crash Course Ai #5,6nGCGYWMObE,2019-09-06T20:45:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Neural network', 'machine learning', 'artificial intelligence', 'python', 'segmentation', 'emnist', 'moist', 'training', 'testing', 'iteration', 'epoch', 'sklearn', 'ai']",167238,4846,154,PT17M17S,true
What Can You Learn from Your Competition?: Crash Course Business Entrepreneurship #4,5hL66Xl6W6M,2019-09-04T21:30:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'competition', 'entrepreneur', 'entrepreneurship']",200176,3953,136,PT12M35S,true
Training Neural Networks: Crash Course AI #4,lgKrup5oi_A,2019-08-30T20:46:22Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Neural network', 'backpropagation', 'optimization', 'local optimal solution', 'global optimal solution', 'loss function', 'linear regression', 'weight', 'bias']",180128,4681,139,PT12M29S,true
Value Proposition and Customer Segments: Crash Course Business - Entrepreneurship #3,m2IPvT920XM,2019-08-28T21:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",361564,8019,162,PT12M3S,true
The Rise of Russia and Prussia: Crash Course European History #17,FBzRaxLdjZE,2019-08-27T16:24:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'European History', 'Euro', 'AP', 'WHAP', 'World History', 'Russia', 'Brandenburg', 'Prussia', 'Moscow', 'Peter the Great', 'Hohenzollern', 'German', 'Germany', '30 Years War']",830841,14214,541,PT14M56S,false
Neural Networks and Deep Learning: Crash Course AI #3,oV3ZY6tJiA0,2019-08-23T20:45:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'artificial intelligence', 'neural network', 'machine learning', 'ai', 'deep learning', 'hidden layer', 'alexnet', 'imagenet', 'artificial neural network']",317647,7244,178,PT12M23S,true
How to Develop a Business Idea: Crash Course Business - Entrepreneurship #2,iywvlUk2Wfg,2019-08-21T21:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'entrepreneur', 'entrepreneurship', 'anna akana', 'crash course business', 'crash course entrepreneurship', 'ideas']",539864,11386,206,PT12M21S,true
Eastern Europe Consolidates: Crash Course European History #16,VwlrvAvcO28,2019-08-20T01:11:58Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'The Ottoman Empire', 'european history', 'poland', 'lithuania', 'poland-lithuania', 'russia', 'Ivan the Terrible', 'Ivan IV', 'Ivan III', 'Ottoman', 'Turkey', 'Turks', 'Austria', 'Kazan', 'Moscow', 'Ukraine', 'Crimea', 'Putin', 'Euro', 'AP', 'WHAP']",637409,11812,744,PT15M18S,true
Supervised Learning: Crash Course AI #2,4qVRBYAdLAo,2019-08-16T21:15:04Z,"['Crash Course', 'crashcourse', 'education', 'john green', 'vlogbrothers', 'artificial intelligence', 'ai', 'machine learning', 'supervised learning', 'perceptron', 'neural network', 'neuron', 'reinforcement learning', 'unsupervised learning', 'weights', 'bias', 'update rule', 'precision', 'recall']",372210,9109,264,PT15M23S,true
Who Even Is An Entrepreneur?: Crash Course Business - Entrepreneurship #1,aozlwC3XwfY,2019-08-14T21:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'entrepreneurship', 'start up', 'business start up', 'what is an entrepreneur', 'anna akana', 'crash course business']",1137503,24904,587,PT13M2S,true
Dutch Golden Age: Crash Course European History #15,35PinDPNPw0,2019-08-13T12:55:45Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Europe', 'European', 'history', 'Euro', 'AP', 'historic', 'Netherlands', 'Dutch', 'trade', 'English', 'England', 'Indian Ocean']",973503,17488,939,PT13M44S,true
What Is Artificial Intelligence? Crash Course AI #1,a0_lo_GDcFw,2019-08-09T20:44:25Z,"['John Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'John Green Bot', 'artificial intelligence', 'ai', 'A.I.', 'machine learning', 'generalized ai', ""moore's law"", 'social media', 'the internet']",674133,17889,584,PT11M46S,true
Crash Course Business: Entrepreneurship Preview,YHBVjv4MYXE,2019-08-07T21:00:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'entrepreneur', 'entrepreneurship', 'hard skills', 'money', 'success', 'failure', 'anna akana']",353272,7142,205,PT2M15S,true
English Civil War: Crash Course European History #14,dyk3bI_Y68Y,2019-08-06T21:00:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'Euro', 'European History', 'England', 'Scotland', 'Britain', 'Wales', 'Ireland', 'James I', 'Charles I', 'Maria Theresa', 'Elizabeth I', 'English Civil War', 'Tudor', 'Stuart', 'Oliver Cromwell', 'Parliament', 'New Model Army']",1112798,17879,616,PT14M36S,true
Crash Course Artificial Intelligence Preview,GvYYFloV0aA,2019-08-02T21:22:49Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'artificial intelligence', 'AI', 'machine learning', 'ML', 'supervised', 'unsupervised', 'learning', 'neural networks', 'deep learning', 'nlp', 'symbolic', 'recommender', 'algorithmic bias']",545703,16380,640,PT3M50S,true
Absolute Monarchy: Crash Course European History #13,YYPAFqQgbqE,2019-07-27T15:09:58Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'europe', 'european', 'france', 'WHAP', 'Euro', 'AP', 'France', 'Bourbon', 'Louis', 'XIII', 'XIV', 'Sun King', 'nobles', 'nobility']",1187505,16947,565,PT13M16S,true
Scientific Revolution: Crash Course European History #12,w70BkCqgyyI,2019-07-14T19:45:24Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'european history', 'world history', 'WHAP', 'AP', 'Euro', 'Europe', 'European', 'Science', 'scientific', 'Galileo', 'Copernicus', 'Kepler', 'Descartes', 'Erasmus']",1418659,19444,721,PT15M8S,true
How to Avoid Burnout: Crash Course Business - Soft Skills #17,DJq9zVLu5_Q,2019-07-03T21:13:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'soft skills', 'self care', 'burnout', 'avoid burnout', 'evelyn from the internets']",170702,5381,183,PT10M40S,true
The 17th Century Crisis: Crash Course European History #11,cmKHYpC_jVs,2019-06-29T15:13:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'europe', 'european history', 'AP', 'world history', 'thirty years war', 'war', 'fighting', 'Holy Roman Empire', 'France', 'Italy', 'Spain', 'Denmark', 'Sweden', 'Netherlands', 'Dutch']",1142118,20084,806,PT13M30S,true
The Many Forms of Power: Crash Course Business - Soft Skills #16,NL4_VoX7DuQ,2019-06-26T21:39:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'soft skills', 'power', 'power dynamics', 'unions', 'how power works', 'evelyn form the internets']",96246,2709,114,PT11M34S,true
Witchcraft: Crash Course European History #10,rW4XFiHUQAs,2019-06-22T20:37:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'european history', 'europe', 'european', 'AP', 'world history', 'magic', 'witch', 'witchcraft', 'witches', 'sorcerer', 'medieval', 'renaissance', 'reformation']",1222846,26515,1113,PT15M33S,true
How to Create a Fair Workplace: Crash Course Business: Soft Skills #15,59sCMUnvNdA,2019-06-19T21:17:39Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",70416,1732,106,PT10M42S,true
How to Find Your Leadership Style: Crash Course Business - Soft Skills #14,bSRvDfD451I,2019-06-13T20:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'soft skills', 'leadership', 'business leadership', 'leaders', 'evelyn from the internets']",157429,3664,104,PT10M11S,true
Catholic Counter-Reformation: Crash Course European History #9,xy_M4pDjafo,2019-06-07T22:37:54Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Euro', 'European History', 'AP', 'history', 'world history', 'catholic', 'church', 'religion', 'christianity', 'jesuit', 'Martin Luther', 'Ignatius Loyola', 'Teresa of Avila', 'evangelize', 'Council of Trent', 'Pope Paul III', 'Rome', 'Roman Catholic', 'Protestant', 'Reformation', 'Counter-reformation']",951145,15339,583,PT13M44S,true
How to Handle Conflict: Crash Course Business - Soft Skills #13,gOHoSuDEO4M,2019-06-05T20:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'soft skills', 'business', 'crash course business', 'conflict', 'conflict resolution', 'apologizing', 'apologies', 'corporate buseinss', 'evelyn from the internets']",119684,3043,92,PT11M36S,true
"Commerce, Agriculture, and Slavery: Crash Course European History #8",mU2dhPlJWyY,2019-06-02T22:31:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'euro', 'AP', 'european history', 'world history', 'europe', 'slavery', 'slaves', 'slave trade', 'slave', 'agriculture', 'farm', 'farming', 'peasants', 'enclosure', 'England', 'United Kingdom', 'France', 'East India Company', 'Netherlands', 'North America', 'colonies', 'colonization']",696112,12539,538,PT15M34S,true
How to Avoid Teamwork Disasters: Crash Course Business - Soft Skills #12,fRj7Am63wVc,2019-05-29T20:30:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'meetings', 'teamwork', 'soft skills', 'business', 'management', 'business management', 'evelyn from the internets']",104164,2533,92,PT10M36S,true
Reformation and Consequences: Crash Course European History #7,PbBDP1Elbbg,2019-05-26T20:16:40Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'Europe', 'European', 'Euro', 'AP', 'Jean Calvin', 'Henry VIII', 'Elizabeth I', 'religion', 'reformation', 'Spain', 'France', 'Catholic', 'Protestant', 'Christianity', 'Henry', 'Navarre', 'Calvinist', 'Calvinism', 'Hugenots']",922574,14408,548,PT13M38S,true
How to Make Tough Decisions: Crash Course Business - Soft Skills #11,vLxjUNINfnY,2019-05-22T21:14:31Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'decision making', 'business', 'soft skills', 'how to make decisions', 'evelyn from the internets', 'crash course business', 'anchoring']",121215,3349,121,PT11M28S,true
The Protestant Reformation: Crash Course European History #6,0eO0pPrGi6o,2019-05-18T20:02:53Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'European history', 'World History', 'AP', 'Euro', 'Catholic', 'Reformation', 'Protestant', 'Martin Luther', 'Luther', 'Lutheran', 'communion', 'eucharist', 'transsubstantiation', 'consubstantiation', 'church', 'religion', 'religious']",1512109,22779,820,PT15M44S,true
Making Time Management Work for You: Crash Course Business - Soft Skills #10,2Si7ah_h32s,2019-05-15T21:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'soft skills', 'crash course business', 'evelyn from the internets', 'self care', 'time managment', 'schedules', 'calendars', 'getting work done']",264427,7034,153,PT11M,true
Expansion and Consequences: Crash Course European History #5,AcphphFoijY,2019-05-11T17:12:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'crash course', 'european history', 'europe', 'Euro', 'AP', 'advanced placement', 'Americas', 'New World', 'Old World', 'North America', 'South America', 'New Spain', 'Spanish Empire', 'Spain', 'Portugal', 'England', 'Brazil']",996351,16186,868,PT16M34S,true
How to Set and Achieve SMART Goals: Crash Course Business - Soft Skills #9,LQ5Uj1nryBc,2019-05-08T20:49:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'SMART goals', 'setting goals', 'goals', 'business', 'soft skills', 'crash course business']",186772,3961,91,PT10M53S,true
The Age of Exploration: Crash Course European History #4,wOclF9eP5uM,2019-05-03T21:10:45Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Europe', 'European History', 'Spain', 'Portugal', 'New World', 'South America', 'Brazil', 'India', 'carrack', 'ship', 'navigation', 'maps', 'Henry the Navigator', 'Columbus', 'Cortes', 'Pizzaro', 'Mexica', 'Aztec', 'Inca', 'colonization']",2040314,23816,924,PT15M40S,true
The Biggest Problems We're Facing Today & The Future of Engineering: Crash Course Engineering #46,Fzq_yuj-oZM,2019-05-02T20:04:07Z,"['engineering', 'education', 'stem', 'grand challenges', 'national academy of engineers']",183222,4076,165,PT10M25S,true
How to Become a Better Negotiator: Crash Course Business - Soft Skills #8,FTrxX0b4I4o,2019-05-01T23:06:57Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'negotiation', 'salary negotiation', 'evelyn from the internets', 'business', 'business skills', 'soft skills', 'crash course business']",117648,3353,127,PT11M33S,true
The Limits of History: Crash Course History of Science #46,EhBhP-zk0_I,2019-04-29T21:15:23Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history of science', 'science', 'science education']",119379,4376,553,PT10M52S,true
The Northern Renaissance: Crash Course European History #3,EuzAbE-kPkM,2019-04-26T23:53:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'History', 'Euro', 'AP', 'European History', 'Renaissance', 'France', 'Germany', 'Italy', 'Erasumus', 'Machiavelli', 'humanist', 'humanism']",1253957,20454,745,PT14M2S,true
How To Become An Engineer: Crash Course Engineering #45,77xMVKOEZ5g,2019-04-25T19:59:24Z,"['stem', 'education', 'engineering', 'engineers', 'engineering careers']",230777,5659,244,PT9M11S,true
Prepare to Negotiate Your Salary (Or Anything): Crash Course Business - Soft Skills #7,UTsK8LdDqbU,2019-04-24T21:40:14Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'negotiation', 'negotiation prep', 'soft skills', 'negotiating your salary', 'salary', 'how to negotiate', 'conflict', 'conflict resolution', 'distributive negotiation', 'integrative negotiation']",101514,2788,106,PT11M11S,true
Climate Science: Crash Course History of Science #45,LsFdROZ2OdA,2019-04-22T23:02:10Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history of science', 'climate science', 'climate change', 'history of climate science', 'capitalocene', 'anthropocene', 'era', 'eras', 'global warming', 'greenhouse effect', 'greenhouse gasses', 'o zone']",135245,4125,431,PT11M34S,true
Florence and the Renaissance: Crash Course European History #2,tecocKSclwc,2019-04-19T21:04:12Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Europe', 'European', 'history', 'world history', 'Italy', 'Florence', 'Rome', 'Pope', 'Medici', 'Michelangelo', 'DaVinci', 'Leonardo', 'Donatello', 'Boticelli', 'art', 'artists', 'painting', 'sculpture', 'Uffizi', 'Firenze', 'Milan', 'Venice', 'architecture', 'basilica', 'church', 'catholic']",1960801,30404,897,PT14M34S,true
Building a Desalination Plant from Scratch: Crash Course Engineering #44,ke5jUHe4fII,2019-04-18T19:05:33Z,"['engineering', 'stem', 'engineering design', 'design synthesis', 'process control', 'desalination plant']",102812,2366,72,PT9M42S,true
How to Ace the Interview: Crash Course Business - Soft Skills #6,BssdOyLB2GU,2019-04-17T21:53:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'interview', 'how to interview', 'business', 'business skills', 'soft skills', 'evelyn from the internet']",132464,3444,108,PT11M31S,true
Life and Longevity: Crash Course History of Science #44,JlfFcPYaJIc,2019-04-15T21:25:14Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'CRISPR', 'human longevity', 'longevity', 'dna', 'history of science', 'crash course history of science', 'dna splicing']",120871,3654,179,PT12M51S,true
Medieval Europe: Crash Course European History #1,rNCw2MOfnLQ,2019-04-12T20:28:25Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Europe', 'European', 'history', 'world history', 'medieval', 'middle ages', 'black plague', 'great schism', 'church', 'catholic', 'pope', 'avignon']",2885429,50315,2090,PT14M9S,true
How Seawater Sabotages Ships: Crash Course Engineering #43,J9A55q7AR6E,2019-04-11T20:05:50Z,"['engineering', 'marine engineering', 'ships', 'corrosion', 'oxidation', 'propellors', 'stem', 'galvanic corrosion', 'fouling', 'shipway']",68868,1791,126,PT9M57S,true
How to Make a Resume Stand Out: Crash Course Business - Soft Skills #5,T_4JBbeGsSE,2019-04-10T23:33:36Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'soft skills', 'resume', 'resumes', 'resume building', 'how to build a resume', 'cover letter', 'cover letters', 'evelyn from the internet', 'informational interviews']",246607,4909,192,PT11M24S,true
The Internet and Computing: Crash Course History of Science #43,ur9aGqcmq8M,2019-04-08T22:25:57Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', ""moore's law"", 'computing', 'the computer', 'computers', 'transistors', 'IMB', 'Xerox', 'PARC', 'quantum computing', 'history of the internet', 'internet', 'ai', 'history of computing', 'history of science']",130940,3648,196,PT12M28S,true
YouTube Couldn't Exist Without Communications & Signal Processing: Crash Course Engineering #42,VjuFaPAIOHw,2019-04-04T22:03:14Z,"['engineering', 'communications', 'signal processing', 'stem', 'bandwidth', 'noise', 'morse code', 'bit rate']",113992,2935,94,PT9M30S,true
How to Speak With Confidence: Crash Course Business - Soft Skills #4,sjdxUiAJ0UQ,2019-04-04T15:52:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course business', 'soft skills', 'S.U.C.C.E.S.', 'framework', 'business', 'intro to business', 'public speaking', 'how to speak with confidence', 'confidence', 'speaking', 'evelyn from the internets']",209741,4972,142,PT11M12S,true
The Century of the Gene: Crash Course History of Science #42,TUvquCOGs3U,2019-04-01T21:09:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",125148,3159,141,PT13M25S,true
Crash Course European History Preview,WhtuC9dp0Hk,2019-03-29T22:30:24Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history', 'Europe', 'European', 'world history', 'black death', 'plague', 'medieval', 'historic', 'AP', 'Euro']",1534219,27271,1845,PT6M36S,true
Why Moving People is Complicated: Crash Course Engineering #41,erYf6NNw8Ec,2019-03-28T21:15:19Z,"['education', 'stem', 'transportation', 'signaling', 'traffic flow', 'transportation engineering']",98873,2301,81,PT10M16S,true
The Secret to Business Writing: Crash Course Business - Soft Skills #3,8E-oqahDnb8,2019-03-27T21:26:42Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'soft skills', 'written communication', 'writing', 'communication', 'evelyn from the internets']",271871,6069,147,PT11M44S,true
Bodies and Dollars: Crash Course History of Science #41,RZvvZslgEWk,2019-03-25T20:32:16Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'GMO', 'SSRI', 'anti depressent', 'medication', 'brain medication', 'biology', 'Big Pharma', 'pharmasuticals', 'corn', 'salmon']",130249,3300,146,PT12M57S,true
Defense Against the Dark Arts of Influence: Crash Course Business Soft Skills #2,aS2NB8CFwZc,2019-03-20T22:09:38Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'emotional influence', 'business', 'soft skills', 'business skills']",222348,6201,374,PT12M19S,true
Biotechnology: Crash Course History of Science #40,Qo9gcZ0r8k8,2019-03-18T20:44:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'biotech', 'dna', 'crick and watson', 'crick', 'franklin', 'phage', 'Rosalind Franklin', 'Diamond v. Chakrabarty', 'Paul Berg', 'Stanley Cohen', 'Herbert Boyer', 'helix', 'double helix', 'proteins']",347132,7682,168,PT12M13S,true
How the Leaning Tower of Pisa Was Saved: Crash Course Engineering #40,5mkeoVpTaMA,2019-03-14T20:02:05Z,"['education', 'stem', 'engineering', 'geotechnical engineering', 'foundations', 'seismeic engineering', 'bearing capacity', 'shear strength', 'earthquakes', 'seismic activity']",111705,2488,110,PT9M54S,true
Why You Need Trust to Do Business: Crash Course Business - Soft Skills #1,EFeEAtXdzFU,2019-03-13T21:32:35Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'soft skills', 'crash course business', 'evelyn from the internets', 'evelyn ngugi', 'trust', 'communication', 'written communication', 'verbal communication', 'business skills']",333796,9476,294,PT11M45S,true
Social Media: Crash Course Navigating Digital Information #10,M5YKW6fhlss,2019-03-12T20:11:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'social media', 'lateral reading', 'misinformation', 'disinformation', 'targeted advertising', 'facebook', 'twitter', 'youtube', 'news feed', 'algorithm', 'filter bubble', 'confirmation bias', 'radical rabbit hole', 'instagram', 'snapchat']",262164,6032,271,PT16M51S,true
Mass-Producing Ice Cream with Food Engineering: Crash Course Engineering #39,MH4GgKsf7-U,2019-03-07T22:00:59Z,"['education', 'engineering', 'stem', 'food engineering', 'thermodynamics', 'food production']",106574,2238,103,PT9M21S,true
Crash Course Business - Soft Skills: Preview,8UnfCkFVQ9E,2019-03-06T22:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'business', 'soft skills', 'business skills', 'crash course business', 'evelyn from the internets', 'evelyn']",376846,8473,335,PT2M40S,true
Click Restraint: Crash Course Navigating Digital Information #9,5tw44SkkXQg,2019-03-05T22:22:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'click restraint', 'search engine', 'algorithm', 'Google', 'web search', 'tips']",186233,4222,210,PT12M47S,true
Controlling the Environment: Crash Course History of Science #39,b51G5sB2_hM,2019-03-04T23:10:56Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'environment', 'environmentalism', 'conservation', 'ecology', 'pollution', 'environmental disaster', 'dust bowl', 'nature', 'biosphere']",139075,3509,157,PT13M28S,true
Broadway Book Musicals: Crash Course Theater #50,4kxzD4ASioI,2019-03-01T22:36:56Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'play', 'drama', 'mike rugnetta', 'stage', 'curtain', 'lights', 'Broadway', 'music', 'orchestra', 'great white way']",202087,4188,293,PT13M5S,true
Changing the Blueprints of Life - Genetic Engineering: Crash Course Engineering #38,FY_ZUEKWhBc,2019-02-28T21:02:12Z,"['engineering', 'stem', 'education', 'genetic engineering', 'crispr', 'cas9', 'dna']",300805,5307,197,PT11M47S,true
Data & Infographics: Crash Course Navigating Digital Information #8,OiND50qfCek,2019-02-26T21:58:56Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'infographics', 'data', 'charts', 'graphs', 'misinformation', 'climate change', 'statistics', 'stats', 'ap statistics', 'ap stats']",193360,4128,166,PT13M2S,true
Ecology: Crash Course History of Science #38,KrwtWKPAcRs,2019-02-25T23:14:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'ecology', 'earth science', 'geology', 'darwin', 'life sciences']",169494,4143,144,PT12M23S,true
Into Africa and Wole Soyinka: Crash Course Theater #49,kn-ER4bL7f8,2019-02-22T22:53:44Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'play', 'drama', 'Mike Rugnetta', 'Africa', 'Niger', 'Nigeria', 'Sierra Leone', 'Zimbabwe', 'Zambia', 'South Africa']",91313,2317,112,PT12M33S,false
Smart Tattoos & Tiny Robots: Crash Course Engineering #37,EyYdZYqTLFU,2019-02-21T22:21:59Z,"['education', 'engineering', 'stem', 'biodevices', 'healthcare', 'medical engineering', 'biocompatibility', 'drug delivery']",64445,1841,99,PT9M51S,true
Evaluating Photos & Videos: Crash Course Navigating Digital Information #7,p7uvqb8fcdA,2019-02-19T22:07:57Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'photos', 'videos', 'doctored photo', 'photoshop', 'misinformation', 'facebook', 'deepfake', 'fake']",208920,4167,226,PT13M19S,true
Air Travel and The Space Race: Crash Course History of Science #37,QhULJr-LKbg,2019-02-18T21:50:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'space race', 'air travel', 'the wright brothers', 'sputnik', 'apollo 11', 'moon landing', 'history of science', 'rocket science']",216800,4762,219,PT12M22S,true
Poor Unfortunate Theater: Crash Course Theater #48,9sSLz5t7a5M,2019-02-16T00:59:48Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mike Rugnetta', 'theater', 'theatre', 'poor', 'unfortunate', 'Jerzy Grotowski', 'Augusto Boal', 'Poland', 'Brazil', 'actor', 'stage', 'acting', 'play', 'drama']",115269,2602,82,PT13M7S,true
How to Engineer Health - Drug Discovery & Delivery: Crash Course Engineering #36,gIkMNn-A_Y4,2019-02-14T21:01:06Z,"['engineering', 'education', 'stem', 'pharmacology', 'drug delivery systems', 'health', 'medical engineering', 'biology']",83047,2131,91,PT10M12S,true
Evaluating Evidence: Crash Course Navigating Digital Information #6,hxhbOvR2TGk,2019-02-12T22:17:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'spurious correlation', 'causation', 'correlation', 'Internet', 'snopes', 'misinformation', 'information', 'conspiracy theories']",345284,5343,276,PT13M21S,true
The Computer and Turing: Crash Course History of Science #36,3xdmEwTIsd0,2019-02-11T22:08:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'alan turing', 'computing', 'computers', 'ww2', 'World war 2', 'WWII', 'history of science', 'history of computing', 'history of computers', 'enigma machine', 'bombe']",192541,5247,241,PT11M54S,true
The Birth of Off Broadway: Crash Course Theater #47,ovSW1G7wrCg,2019-02-08T21:45:35Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'mike rugnetta', 'drama', 'play', 'stage', 'actor', 'acting', 'broadway', 'off broadway', 'New York']",76255,1670,81,PT12M48S,true
Computer Engineering & the End of Moore's Law: Crash Course Engineering #35,04ht0kSJ0I4,2019-02-07T21:54:35Z,"['education', 'engineering', 'computer engineering', 'stem']",155365,3578,223,PT11M35S,true
Using Wikipedia: Crash Course Navigating Digital Information #5,ih4dY9i9JKE,2019-02-05T22:33:54Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'wikipedia', 'lateral reading', 'digital information', 'wiki', 'fact checking', 'resources', 'sources']",387016,7916,363,PT14M16S,true
Genetics and The Modern Synthesis: Crash Course History of Science #35,aax12eYKd4s,2019-02-04T22:16:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'darwin', 'charles darwin', 'lysenko', 'lysenkoism', 'biology', 'darwinism', 'modern synthesis', 'mendel', 'genetics', 'modern genetics']",150985,3844,286,PT12M34S,true
"Broadway, Seriously: Crash Course Theater #46",qgajQD7PJp0,2019-02-01T23:07:04Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'broadway', 'theatre', 'theater', 'New York', 'Arthur Miller', 'Tennessee Williams', 'Lorraine Hansberry', 'Raisin in the Sun', 'Glass Menagerie', 'A Streetcar Named Desire', 'The Crucible', 'Death of a Salesman', 'play', 'plays', 'drama', 'stage', 'production', 'broadway theater']",101836,1943,55,PT11M15S,true
To The Moon & Mars - Aerospace Engineering: Crash Course Engineering #34,UvtYn2j78gw,2019-01-31T21:04:27Z,"['education', 'stem', 'engineering', 'aerospace engineering', 'astronautical engineering', 'aeronautical engineering', 'lift', 'buoyancy', 'propulsion', 'NASA']",295240,8032,149,PT10M1S,true
Who Can You Trust? Crash Course Navigating Digital Information #4,o93pM-b97HI,2019-01-29T21:38:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'media', 'navigation', 'navigating', 'digital media', 'help', 'bias', 'information', 'expert', 'expertise', 'credibility', 'source', 'sources', 'accreditation', 'internet', 'culture']",552775,8472,513,PT14M46S,true
"Beckett, Ionesco, and the Theater of the Absurd: Crash Course Theater #45",eJ7w2I83ba4,2019-01-25T22:05:42Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'absurd', 'absurdity', 'Beckett', 'Ionesco', 'Ionescu', 'Genet', 'drama', 'play', 'playhouse', 'dramatic', 'actor', 'actress', 'Godot']",257542,6955,153,PT11M57S,true
How Engineering Robots Works: Crash Course Engineering #33,uNfUAJBuZ0s,2019-01-24T22:00:13Z,"['education', 'engineering', 'stem', 'women in stem', 'robots']",260127,4925,122,PT11M2S,true
Check Yourself with Lateral Reading: Crash Course Navigating Digital Information #3,GoQG6Tin-1E,2019-01-23T00:08:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mediawise', 'media', 'fact', 'fact check', 'checking', 'lateral', 'reading', 'wikpedia', 'encyclopedia', 'sources', 'bibliography', 'citations']",794636,10424,395,PT13M52S,true
Biomedicine: Crash Course History of Science #34,gQGWqA22s5s,2019-01-21T22:03:19Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'biomedicine', 'history of science', 'disease', 'biology', 'josef mengele', 'eugenics', 'drugs', 'pharmacuticals', 'morphine', 'merck', 'friedrich serturner', 'vaccines', 'paul ehrlich', 'salvarsan', 'antibiotics', 'penicilin', 'alexander fleming']",192298,5275,218,PT12M37S,true
Bertolt Brecht and Epic Theater: Crash Course Theater #44,c7fqMPDcKXM,2019-01-18T18:46:17Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'kurt', 'weill', 'theater', 'theatre', 'epic', 'Brecht', 'Betolt', 'Berlin', 'HUAC', 'Congress', 'German', 'Germany']",288740,6564,140,PT11M51S,true
Why It's So Hard To Make Better Batteries: Crash Course Engineering #32,A5GgBTFSUu4,2019-01-17T22:00:04Z,"['education', 'engineering', 'shini somara', 'stem', 'women in stem']",131960,3984,204,PT10M27S,true
The Facts about Fact Checking: Crash Course Navigating Digital Information #2,EZsaA0w_0z0,2019-01-15T21:36:57Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'navigating', 'digital', 'information', 'Mediawise', 'google', 'internet', 'digital culture', 'web', 'world wide web', 'connections', 'fact check', 'facts', 'journalism', 'journalist', 'sources']",586204,11195,551,PT13M55S,true
The Atomic Bomb: Crash Course History of Science #33,w4q1fG1vh5I,2019-01-14T23:44:31Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'albert einstein', 'the atomic bomb', 'atom bomb', 'cold war', 'ww2', 'world war 2', 'WWII', 'world war two', 'leo szilard', 'the manhattan project', 'atomic energy', 'nuclear energy', 'nuclear fission', 'john von neumann', 'enrico fermi', 'julius robert oppenheimer', 'oppenheimer', 'axis', 'allies', 'japan', 'hiroshima', 'nagasaki', 'fat man', 'little boy', 'enola gay']",747626,15039,927,PT12M5S,true
Antonin Artaud and the Theater of Cruelty: Crash Course Theater #43,DK_vZuLYHcw,2019-01-13T22:54:12Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theatre', 'theater', 'play', 'drama', 'dramaturgy', 'theatre of cruelty', 'antonin artaud', 'france', 'paris']",171885,4605,164,PT11M27S,true
The Future of Clean Energy: Crash Course Engineering #31,v6uRuNboy4A,2019-01-10T21:05:15Z,"['education', 'engineering', 'stem', 'women in stem', 'clean energy']",184482,3163,257,PT11M18S,true
When Predictions Succeed: Crash Course Statistics #44,uJFdLKkuYc4,2019-01-09T23:14:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'ap stats', 'ap statistics', 'weather', 'moneyball', 'paul depodesta', 'fantasy football', 'sabermetrics', ""oakland a's"", 'stitchfix', 'meteorology', 'weather bureau']",57357,1489,89,PT11M20S,true
Introduction to Crash Course Navigating Digital Information #1,pLlv2o6UfTU,2019-01-08T21:26:40Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'navigating', 'digital', 'information', 'Mediawise', 'google', 'internet', 'digital culture', 'web', 'world wide web', 'connections']",662117,14798,782,PT13M34S,true
Einstein's Revolution: Crash Course History of Science #32,NgVSHXOz3jI,2019-01-07T21:49:45Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history of science', 'einstein', 'albert einstein', 'physics', 'relativity', 'general relativity', 'special relativity', 'gravity', 'space time']",322011,7386,257,PT12M7S,true
Federal Theatre and Group Theater: Crash Course Theater #42,vGLZDFHnnwk,2019-01-05T01:18:53Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mike Rugnetta', 'theater', 'theatre', 'group theatre', 'Federal Theatre', 'play', 'drama', 'actor', 'acting', 'actress', 'dramatic', 'arts', 'literature', 'script']",72070,1518,58,PT12M5S,true
The Engineering Challenges of Renewable Energy: Crash Course Engineering #30,4k5gyYAAEEU,2019-01-03T21:00:50Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",203591,4625,261,PT11M32S,true
When Predictions Fail: Crash Course Statistics #43,5l60dMUhY5o,2019-01-02T23:57:27Z,"['John Green', 'Hank Green', 'education', 'crash course', 'crashcourse', 'statistics', 'stats', 'ap stats', 'ap statistics', '2008 financial crisis', '2016 presidential election', 'great recession', 'election bias', 'polling', 'nate silver', 'earthquakes', 'prediction', 'forecasting']",58751,1555,113,PT10M39S,true
The Harlem Renaissance: Crash Course Theater #41,fDzVtXbtEow,2018-12-21T22:22:09Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'harlem', 'renaissance', 'theatre', 'theater', 'plays', 'drama', 'actor', 'actress', 'acting', 'Langston Hughes', 'Zora Neale Hurston', '1920s', 'minstrel', 'black face', 'theater company', 'W.E.B. Dubois', 'African American', 'Geraldine Brooks', 'art', 'artists', 'broadway', 'segregation', 'segregated']",284394,3797,109,PT12M11S,true
Preventing Flint - Environmental Engineering: Crash Course Engineering #29,uHUO6PrsOzg,2018-12-20T22:59:01Z,"['engineering', 'environmental engineering', 'flint', 'stem', 'women in stem', 'education']",194469,4870,148,PT10M14S,true
War: Crash Course Statistics #42,rRhHY7Mh5T0,2018-12-19T22:40:39Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'stats', 'statistics', 'ap stats', 'ap statistics', 'enigma', 'world war 2', 'alan turing', 'cryptography', 'bayesian search theory', 'b.o. koopman', 'WWII', 'war', 'the bombe']",70952,1712,100,PT11M12S,true
Crash Course Navigating Digital Information Preview,L4aNmdL3Hr0,2018-12-18T21:02:25Z,"['crashcourse', 'crash course', 'john green', 'hank green', 'education', 'navigating', 'digital', 'information', 'media', 'news', 'facts', 'MediaWise', 'Poynter', 'Google', 'Stanford History Education Group', 'internet', 'web', 'world wide web', 'fake news', 'skills', 'literacy', 'vetting']",346034,7615,444,PT5M12S,true
Marie Curie and Spooky Rays: Crash Course History of Science #31,7qlRjqUMX4E,2018-12-17T22:12:09Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history of science', 'science', 'marie curie', 'radiation', 'spooky rays', 'x-rays', 'physics', 'atomic theory', 'atoms']",257876,6468,389,PT11M48S,true
Little Theater and American Avant Garde: Crash Course Theater #40,sYJosVHkwgo,2018-12-15T23:08:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'drama', 'play', 'actor', 'playwright', ""Eugene O'Neill"", 'New York', 'Provincetown', 'Broadway', 'Iceman Cometh', 'Charles Gilpin', 'James Herne', 'Thornton Wilder', 'Little Theater', 'Mike Rugnetta']",74538,1676,48,PT11M20S,false
Flirting With Disaster - The Importance of Safety: Crash Course Engineering #28,WavEcAsI2AY,2018-12-13T21:04:45Z,"['education', 'engineering', 'stem', 'women in stem', 'safety']",84692,1636,107,PT11M13S,true
Neural Networks: Crash Course Statistics #41,JBlm4wnjNMY,2018-12-12T21:28:41Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'ap stats', 'neural network', 'deep learning', 'feed forward', 'node', 'activation function', 'rectified linear unit', 'ReLU', 'long short-term memory network', 'convolutional nerural network', 'generative adversarial networks', 'GANs', 'artificial intelligence', 'machine learning']",85022,2357,82,PT12M16S,true
Futurism and Constructivism: Crash Course Theater #39,u_JmkmPYpec,2018-12-07T22:35:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'Italy', 'Russia', 'Futurist', 'Constructivist', 'automobilism', 'manifesto', 'Marinetti', 'Meyerhold', 'electric doll', 'play', 'drama', 'actor', 'acting', 'actress', 'director', 'direction']",128261,2878,131,PT13M52S,true
Engineering Ethics: Crash Course Engineering #27,5KZx81crb48,2018-12-06T21:00:17Z,"['education', 'stem', 'engineering', 'ethics', 'women in stem']",223982,3808,243,PT9M51S,true
A History of Crash Course,1Q5cPfbmSD8,2018-12-04T22:03:39Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'a history of crash course', 'documentary', 'nick jenkins', 'stan muller', 'nicole sweeney', 'shini somara', 'craig benzine', 'wheezy waiter', 'zulahia razak', 'meredith danko', 'brandon brungard', 'patreon', 'pbs digital studios', 'michael aranda']",244091,13235,1012,PT19M52S,false
The Mind/Brain: Crash Course History of Science #30,bmsTvIJamIs,2018-12-04T00:02:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history of science', 'the brain', 'brain science', 'psychology', 'the mind', 'mind science', 'freud', 'asylums', 'hospitals', 'shell shock', 'treatment']",202488,4741,202,PT12M47S,true
Expressionist Theater: Crash Course Theater #38,B99H6Ygnzgw,2018-11-30T23:28:14Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'expressionism', 'expressionist', 'mike rugnetta', 'impressionist', 'impressionism', 'monet', 'van gogh', 'hansclever', 'strindberg', 'Georg Kaiser', 'Adolphe Appia']",128425,2887,91,PT12M15S,true
"Skyscrapers, Statics, & Dynamics: Crash Course Engineering #26",xOkJFrXg8V0,2018-11-29T20:59:40Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",70982,1621,64,PT10M10S,true
Statistics in the Courts: Crash Course Statistics #40,HqH-6yw60m0,2018-11-28T22:09:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'ap stats', 'ap statistics', 'alfred dreyfus', 'bordereau', 'sally clark', 'roy meadow', 'jonathan dorfman', 'court system', 'probability', 'mistakes']",49751,1168,45,PT11M18S,true
"Cinema, Radio, and Television: Crash Course History of Science #29",go3AwYghhdI,2018-11-26T23:19:08Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'cinema', 'radio', 'television', 'edison', 'hertz', 'baird', 'mass communication', 'History of Science', '20th Century Science']",231024,4401,217,PT12M7S,true
"Dada, Surrealism, and Symbolism: Crash Course Theater #37",Fx0Z6y2HmlM,2018-11-23T23:17:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'surreal', 'surrealist', 'surrealism', 'dada', 'Maeterlinck', 'Lugne', 'Andre Breton', 'Alfred Jarry', 'Ubu Roi', 'Pere Ubu', 'France', 'theater', 'theatre', 'symbolism', ""Theatre de l'Ouvre""]",177383,4500,167,PT12M26S,false
Big Data Problems: Crash Course Statistics #39,Im3GkAYUivE,2018-11-21T22:07:49Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap stats', 'ap statistics', 'big data', 'algorithmic bias', 'transparency', 'privacy', 'security', 'k-anonymity', 'golden state killer', 'gdpr', 'coppa', 'neural networks', 'compas', 'bias']",90602,2102,54,PT12M51S,true
"Cheese, Catastrophes, & Process Control: Crash Course Engineering #25",BT_JUbpZ1lQ,2018-11-15T21:13:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",79382,1834,88,PT11M2S,true
Intro to Big Data: Crash Course Statistics #38,vku2Bw7Vkfs,2018-11-14T22:00:25Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'big data', 'statistics', 'stats', 'ap stats', 'ap statistics', 'city brain', 'netflix', 'computers']",178748,3784,118,PT11M23S,true
"Ford, Cars, and a New Revolution: Crash Course History of Science #28",UPvwpYeOJnI,2018-11-12T23:25:53Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'henry ford', 'ford motor company', 'model t', 'ford cars', 'industrial revolution', 'second industrial revolution', 'history of science', 'industry']",285882,5546,252,PT11M58S,true
"Synge, Wilde, Shaw, and the Irish Renaissance: Crash Course Theater #36",K3SzObknn8I,2018-11-09T21:18:22Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'stage', 'play', 'actor', 'actress', 'acting', 'Ireland', 'Irish', 'Synge', 'Yeats', 'Oscar Wilde', 'George Bernard Shaw', 'The Importance of Being Earnest', 'playwright', 'writing', 'author']",95043,2308,112,PT11M53S,true
Biomaterials: Crash Course Engineering #24,-jw8osY5QJM,2018-11-08T21:01:45Z,"['education', 'engineering', 'stem', 'biomaterials']",127368,2846,44,PT11M10S,true
Unsupervised Machine Learning: Crash Course Statistics #37,IUn8k5zSI6g,2018-11-07T22:01:24Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'unsupervised', 'machine learning', 'clustering', 'k-means', 'hierarchical clustering', 'silhouette score', 'dendrogram', 'agglomerative clustering', 'bottom-up clustering']",71893,1774,63,PT10M56S,true
Electricity: Crash Course History of Science #27,JoscDcbAjbY,2018-11-05T22:49:40Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history of science', 'electricity', 'current', 'electrical current', 'thomas edison', 'edison', 'luigi galvani', 'galvani', 'fankenstein', 'Hauksbee', 'Stephen Gray']",417257,7237,430,PT12M33S,true
The Horrors of the Grand Guignol: Crash Course Theater #35,jUM4RkZ1tuI,2018-11-02T19:02:06Z,"['theater', 'theatre', 'Mike Rugnetta', 'play', 'drama', 'Grand Guignol', 'Theatre Libre', 'Paris', 'France', 'horror', 'shock', 'Andre Antoine', 'Binet', 'french', 'naturalism', 'fait-divers', 'Oscar Metenier', 'Max Maurey', 'World War']",78125,2123,111,PT11M43S,true
The Mighty Power of Nanomaterials: Crash Course Engineering #23,IkYimZBzguw,2018-11-01T17:38:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",221993,4746,102,PT8M51S,true
Supervised Machine Learning: Crash Course Statistics #36,jmLid2x9eKg,2018-10-31T21:24:30Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap statistics', 'machine learning', 'supervised', 'lgistic regression', 'linear discriminant analysis', 'lda', 'k nearest neighbors', 'knn', 'prediction']",71856,1623,42,PT11M51S,true
Thermodynamics: Crash Course History of Science #26,VpiLucwH-AQ,2018-10-29T22:34:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'thermodynamics', 'physics', 'heat', 'heat exchange', 'history of science', 'science']",271729,5899,197,PT12M29S,true
"Silicon, Semiconductors, & Solar Cells: Crash Course Engineering #22",ivWXuOd5SrI,2018-10-25T21:01:54Z,"['education', 'stem', 'engineering', 'silicon', 'semiconductors', 'solar cells']",160253,4121,98,PT10M39S,true
Fitting Models Is like Tetris: Crash Course Statistics #35,QdmG6uUtB4o,2018-10-24T21:14:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap stats', 'ANOVA', 'ANCOVA', 'RMA', 'model', 'regression', 'analysis of variance', 'analysis of covariance', 'repeated measures anova', 'error', 'covariates']",53419,1126,45,PT11M9S,true
Genetics - Lost and Found: Crash Course History of Science #25,QmiwQ0Kosa8,2018-10-22T21:44:20Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history of science', 'genetics', 'origin of genetics', 'gregor mendel', 'mendelian genetics', 'genes']",310623,6136,239,PT12M2S,true
Chekhov and the Moscow Art Theater: Crash Course Theater #34,uMzuxuA1POU,2018-10-19T22:49:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Chekhov', 'Russia', 'Moscow', 'theater', 'theatre', 'drama', 'play', 'playwright', 'actor', 'actress', 'Seagull', 'Cherry Orchard', 'Catherine the Great', 'Russians']",150740,3405,95,PT12M26S,true
"Electrical Power, Conductors, & Your Dream Home: Crash Course Engineering #21",uTWHMchUlws,2018-10-18T21:32:23Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",100551,2285,106,PT10M47S,true
ANOVA Part 2: Dealing with Intersectional Groups: Crash Course Statistics #34,wo1xlefg5KI,2018-10-17T20:57:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'stats', 'statistics', 'ap stats', 'ANOVA', 'analysis of variance', 'model', 'general linear model', 'factorial anova', 'eta squared', 'interaction plot']",78691,1409,54,PT12M42S,true
Micro-Biology: Crash Course History of Science #24,2JdBH2tys6M,2018-10-15T23:17:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'germ theory', 'micro biology', 'john snow', 'viruses', 'microbes', 'microscopes', 'history of science']",584344,11033,241,PT12M12S,true
"Symbolism, Realism, and a Nordic Playwright Grudge Match: Crash Course Theater #33",xiiaed3puhY,2018-10-12T21:34:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'drama', 'play', 'plays', 'acting', 'stage', 'actor', 'Ibsen', 'Strindberg', ""Doll's House"", 'Nora', 'Norway', 'Sweden', 'Europe']",144954,2999,110,PT13M9S,true
ANOVA: Crash Course Statistics #33,oOuu8IBd-yo,2018-10-10T21:14:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap stats', 'ANOVA', 'analysis of variance', 'general linear model', 'model', 'sum of squares', 'sum of squares total', 'variance', 'glm']",495668,7493,164,PT13M17S,true
Eugenics and Francis Galton: Crash Course History of Science #23,JeCKftkNKJ0,2018-10-08T22:37:54Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",489003,10252,845,PT12M30S,true
Realism Gets Even More Real: Crash Course Theater #32,sDIvfEJ59XY,2018-10-05T21:19:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'drama', 'play', 'Germany', 'France', 'Realism', 'Andre Antoine', 'Theatre Realisme']",98670,1939,81,PT12M25S,true
The Polymer Explosion: Crash Course Engineering #20,XjDDHnByfuo,2018-10-04T19:00:18Z,"['education', 'engineering', 'stem', 'materials', 'polymers']",127491,2741,90,PT9M24S,true
Regression: Crash Course Statistics #32,WWqE7YHR4Jc,2018-10-03T20:48:35Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Regression', 'General Linear Model', 'Regression Model', 'statistics', 'stats', 'ap statistics', 'y-hat', 'y-bar', 'regression line', 'error', 'f-statistic', 'sum of squares']",638983,12573,186,PT12M40S,true
The Philosopher's Corpse: Crash Course Recess #2,d5CIm7hJXbU,2018-10-02T19:43:42Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",89083,3288,165,PT3M19S,true
Darwin and Natural Selection: Crash Course History of Science #22,dfsUz2O2jww,2018-10-01T23:25:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",992713,15862,671,PT13M10S,true
"Zola, France, Realism, and Naturalism: Crash Course Theater #31",KMVnscTctqI,2018-09-28T19:59:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Eugene Scribe', 'Emile Zola', 'France', 'French', 'Mike Rugnetta', 'Paris', 'theater', 'theatre', 'drama', 'plays', 'Dumas', 'Victor Hugo', 'Realism', 'Naturalism']",170270,3249,101,PT12M37S,true
Metals & Ceramics: Crash Course Engineering #19,NOK1nMiiTWU,2018-09-27T19:01:40Z,"['education', 'stem', 'materials', 'engineering', 'metals', 'ceramics']",216819,4168,155,PT10M3S,true
The Replication Crisis: Crash Course Statistics #31,vBzEGSm23y8,2018-09-26T20:59:09Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'replicability', 'reproducability', 'repliaction', 'crisis', 'statistical power', 'false discovery rate', 'significant', 'p-value', 'power posing']",91086,2092,76,PT14M36S,true
The Industrial Revolution: Crash Course History of Science #21,FCpqN7GmLYk,2018-09-25T19:52:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history of science', 'science', 'industrial revolution', 'steam engine', 'engineering', 'steam coal', 'environment']",501501,7246,230,PT12M29S,true
Race Melodrama and Minstrel Shows: Crash Course Theater #30,M3K9uKIMob0,2018-09-21T21:42:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'drama', 'theater', 'theatre', 'play', 'plays', 'playwright', 'show', 'show business', 'stage', 'staged', 'minstrel', 'blackface', 'minstrelsy', 'Jim Crow', 'black face']",124019,2685,145,PT13M39S,true
"Reaching Breaking Point: Materials, Stresses, & Toughness: Crash Course Engineering #18",GpiBSFMFe-w,2018-09-20T20:03:15Z,"['Crash Course', 'crashcourse', 'education', 'stem', 'women in stem', 'engineering', 'materials', 'materials science']",121328,2473,95,PT11M24S,true
North America Gets a Theater...Riot: Crash Course Theater #29,DA16n8ilUp8,2018-09-14T22:03:08Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'drama', 'play', 'America', 'North America', 'Native American', 'First Peoples', 'New York', 'Philadelphia', 'Broadway', 'playwright']",87085,1745,88,PT12M40S,false
Mass Separation: Crash Course Engineering #17,YjuZs8PFIEU,2018-09-13T20:00:57Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",88764,1795,83,PT11M16S,true
Earth Science: Crash Course History of Science #20,V2381lUhqc0,2018-09-10T21:02:10Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'geology', 'history of science', 'how old is the earth', 'fossils', 'earth science']",526409,8007,333,PT13M44S,true
The Rise of Melodrama: Crash Course Theater #28,wxzz31ww4M4,2018-09-07T21:23:38Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'drama', 'play', 'actor', 'actress', 'melodrama', 'melodramatic', 'London', 'Paris', 'France', 'England', 'UK', 'stage', 'stagecraft', 'sets', 'Mike Rugnetta', 'the gaslight']",184760,2908,95,PT12M7S,true
"Drugs, Dyes, & Mass Transfer: Crash Course Engineering #16",-YTC3A6dEGM,2018-09-06T18:10:41Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'stem', 'women in stem', 'dr shini somara', 'mass transfer', 'engineering', 'physics']",83837,1837,61,PT8M24S,true
P-Hacking: Crash Course Statistics #30,Gx0fAjNHb1M,2018-09-05T21:03:57Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'ap stats', 'ap statistics', 'p-hacking', 'data fishing', 'data dredging', 'nhst', 'null hypothesis significance testing', 'family wise error rate', 'cornell food lab', 'p-value', 'p-hack']",130049,2855,99,PT11M2S,true
How Not to Set Your Pizza on Fire: Crash Course Engineering #15,B0CwRyBlt1s,2018-08-30T19:17:55Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'heat exchangers', 'stem', 'engineering', 'women in stem', 'dr. shini somara', 'heat transfer']",100190,2193,138,PT10M39S,true
Chi-Square Tests: Crash Course Statistics #29,7_cs1YlZoug,2018-08-29T21:09:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'chi-square', 'tests', 'categorical data', 'goodness of fit test', 'test of independence', 'test of homogeneity', 'statistics', 'ap stats', 'ap statistics']",541293,8762,160,PT11M4S,true
Biology Before Darwin: Crash Course History of Science #19,K4CKmYSMT_0,2018-08-27T22:48:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",404026,7786,270,PT12M51S,true
"Why So Angry, German Theater? Crash Course Theater #27",zMO258I-7uc,2018-08-24T22:02:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'Faust', 'Goethe', 'Wagner', 'Schiller', 'plays', 'drama', 'play', 'actor', 'acting', 'stage', 'production', 'German', 'Germany', 'Mephistopheles', 'Mike Rugnetta', 'Sturm', 'Drang', 'animation']",91973,2281,158,PT11M50S,true
Heat Transfer: Crash Course Engineering #14,YK7G6l_K6sA,2018-08-23T20:02:23Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'stem', 'engineering', 'dr. shini somara', 'women in stem', 'heat transfer', 'physics', 'conduction', 'radiation', 'convection']",632727,7623,152,PT8M36S,true
Degrees of Freedom and Effect Sizes: Crash Course Statistics #28,Cm0vFoGVMB8,2018-08-22T20:47:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'ap stats', 'ap statistics', 'degrees of freedom', 'effect sizes', 't test', 'practically significant', 'statistically significant', 'p-value']",168776,3336,75,PT13M30S,true
The New Chemistry: Crash Course History of Science #18,_M694ED8GtI,2018-08-20T22:33:43Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history of science', 'science history', 'chemistry', 'Lavoisier', 'flogiston', 'aether']",242308,5006,232,PT13M15S,true
England's Sentimental Theater: Crash Course Theater #26,DenEXMVt0gU,2018-08-17T22:11:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'drama', 'theater', 'theatre', 'play', 'playhouse', 'audience', 'comedy', 'comedies', 'comedic', 'sentimental', 'bourgeois tragedy', 'covent garden', 'drury lane', 'London Merchant', 'Richard Steele', 'David Garrick', 'actor', 'acting']",78701,1703,84,PT12M11S,true
Fluid Flow & Equipment: Crash Course Engineering #13,bRrfsv9hiX4,2018-08-16T19:04:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'engineering', 'stem', 'women in stem', 'dr shini somara', 'science', 'fluid flow', 'daniel bernoulli', ""bernoulli's principle"", ""bernoulli's equation""]",119754,2363,104,PT9M26S,true
T-Tests: A Matched Pair Made in Heaven: Crash Course Statistics #27,AGh66ZPpOSQ,2018-08-15T21:38:41Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'stats', 'statistics', 'ap stats', 'ap statistics', 'test statistic', 'matched pair t-test', 't-test']",231869,3801,83,PT11M17S,true
Newton and Leibniz: Crash Course History of Science #17,9UKGPOwR-iw,2018-08-14T21:21:44Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'isaac newton', 'leibniz', 'physics', 'light', 'astronomy', 'calculus', 'plague']",431626,8891,460,PT13M50S,true
"China, Zaju, and Beijing Opera: Crash Course Theater #25",yzAdZDK4XKA,2018-08-10T21:33:48Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'China', 'Beijing', 'Yuan', 'Han', 'Dynasty', 'Sui', 'Song', 'Romance of the Three Kingdoms', 'emperor', 'Beijing Opera', 'Chinese', 'Mongols']",141385,2923,120,PT11M44S,true
"Stress, Strain & Quicksand: Crash Course Engineering #12",ouTJkNLepF0,2018-08-09T21:17:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'stem', 'women in stem', 'dr shini somara', 'fluid mechanics', 'fluid dynamics', 'stress', 'strain', 'engineering', 'technology', 'science', 'viscosity', 'newton']",207029,4557,133,PT9M10S,true
Test Statistics: Crash Course Statistics #26,QZ7kgmhdIwA,2018-08-08T21:43:37Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap stats', 'ap statistics', 'test statistic', 't-test', 'z-test', 'critical value', 'p-value', 'f test', 'chi-square']",229248,3499,93,PT12M50S,true
The Columbian Exchange: Crash Course History of Science #16,UC5km6-o2oM,2018-08-06T21:56:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history of science', 'the columbian exchange', 'slave trade', 'information exchange', 'christopher columbus', 'colonialism']",431415,5951,278,PT12M58S,true
All Night Demon Dance Party - Kathakali: Crash Course Theater #24,5lp-HBv-3bA,2018-08-03T23:26:48Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'drama', 'stage', 'staging', 'act', 'acting', 'actor', 'actress', 'India', 'Kathakali', 'Sanskrit', 'dance']",113207,2533,151,PT10M59S,false
"Heat Engines, Refrigerators, & Cycles: Crash Course Engineering #11",iZOXW5aaCZg,2018-08-02T19:02:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'engineering', 'stem', 'women in stem', 'dr. shini somara', 'cycles', 'heat engines', 'heat pumps', 'phase diagrams', 'renewable energy', 'zeer pot']",230914,4701,130,PT10M44S,true
Bayes in Science and Everyday Life: Crash Course Statistics #25,51bLRF02b4w,2018-08-01T21:02:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'stats', 'statistics', 'ap statistics', 'bayes', 'bayes theorem', 'bayesian inference', 'bayesian', 'continuous data', 'A/B testing', 'null hypothesis significance testing', 'nhst']",107261,2371,63,PT11M14S,true
"Japan, Kabuki, and Bunraku: Crash Course Theater #23",oc3dWwbctw4,2018-07-27T22:01:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mike Rugnetta', 'theater', 'theatre', 'Japan', 'Japanese', 'Kabuki', 'Bunraku', 'No', 'Noh', 'Tokyo', 'Edo', 'Shogun', 'Shogunate', 'Samurai']",232336,4697,173,PT12M39S,true
You Know I'm All About that Bayes: Crash Course Statistics #24,9TDjifpGj-k,2018-07-25T20:57:56Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap stats', 'ap statistics', 'bayes theorem', 'bayes', 'bayesian', 'posterior', 'prior', 'update', 'belief', 'bayes factor']",317010,7868,176,PT12M5S,true
The New Anatomy: Crash Course History of Science #15,3FX07HzYyqI,2018-07-23T22:30:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'anatomy', 'new anatomy', 'microscope', 'microbiology', 'history of science']",253189,5515,218,PT12M16S,true
"Pre-Columbian Theater, Spanish Empire, and Sor Juana: Crash Course Theater #22",5gxHbYI0uy4,2018-07-21T18:30:37Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'drama', 'plays', 'actor', 'acting', 'Americas', 'meso-America', 'columbus', 'pre-columbian', 'Sor Juana', 'Spain', 'Spanish Empire', 'Aztec', 'Inca', 'Mexico']",100323,2427,114,PT12M4S,false
Why We Can't Invent a Perfect Engine: Crash Course Engineering #10,2B81W6nNds0,2018-07-19T22:27:28Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'women in stem', 'stem', 'science', 'dr. shini somara', 'thermodynamics', 'entropy', 'heat engines', 'engines']",324091,7797,369,PT12M55S,true
Playing with Power: P-Values Pt 3: Crash Course Statistics #23,WWagtGT1zH4,2018-07-18T20:52:08Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'ap stats', 'statistics', 'stats', 'p-value', 'nhst', 'null hypothesis significance testing', 'power', 'type 1', 'type 2', 'error', 'null', 'hypothesis', 'false positive', 'false negative']",109282,2055,73,PT12M15S,true
The Scientific Methods: Crash Course History of Science #14,UdQreBq6MOY,2018-07-16T21:17:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'descartes', 'bacon', 'gallileo', 'scientific method', 'science', 'history of science']",727107,10599,354,PT13M4S,true
Moliere - Man of Satire and Many Burials: Crash Course Theater #21,mdvfXzCoqvA,2018-07-13T20:42:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Moliere', 'France', 'French', 'theater', 'theatre', 'King', 'Louis XIII', 'Louis XIV', 'Paris', 'Hotel Bourgnone', 'Richielieu', 'renaissance', 'Mike Rugnetta', 'playwright', 'Tartuffe']",178069,3256,97,PT11M46S,true
The First & Zeroth Laws of Thermodynamics: Crash Course Engineering #9,fSEFfWf2au0,2018-07-12T20:06:20Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'women in stem', 'stem', 'dr. shini somara', 'science', 'engineering', 'thermodynamics', 'thermo']",349181,7189,225,PT10M5S,true
P-Value Problems: Crash Course Statistics #22,PPD8lER8ju4,2018-07-11T19:16:27Z,"['crash course', 'crashcourse', 'statistics', 'stats', 'ap stats', 'p-value', 'p values', 'null', 'hypothesis', 'significance', 'testing', 'ronald fisher', 'reject', 'significant']",143637,2490,58,PT12M14S,true
The New Astronomy: Crash Course History of Science #13,-FYvy3_egHw,2018-07-09T22:19:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",405513,6590,278,PT12M35S,true
"Rules, Rule-Breaking, and French Neoclassicism: Crash Course Theater #20",fXRpTLvPdT0,2018-07-06T21:53:58Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'France', 'French', 'theater', 'theatre', 'Cardinal Richielieu', 'Academie Francaise', 'play', 'drama', 'Moliere', 'Corneille', 'Louis XIII', 'Louis XIV', 'regent', 'Paris', 'Opera']",137468,2698,102,PT13M15S,true
Reversibility & Irreversibility: Crash Course Engineering #8,RKOPoJzqH94,2018-07-05T21:31:09Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'women in stem', 'stem', 'dr shini somara', 'engineering', 'science']",228075,4939,141,PT11M5S,true
The Scientific Revolution: Crash Course History of Science #12,vzo8vnxSARg,2018-07-02T21:00:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'the scientific revolution', 'copernicus', 'science', 'revolution', 'astronomy']",794793,11181,392,PT12M46S,true
The Spanish Golden Age: Crash Course Theater #19,pDFiY81TLIM,2018-06-29T19:45:56Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'Spain', 'Spanish', 'Renaissance', 'Lope', 'Calderon', 'Calderon de la Barca', 'Cervantes', 'drama', 'plays', 'Corrales']",140220,2779,156,PT11M16S,true
The Law of Conservation: Crash Course Engineering #7,VxCORJ8dN3Y,2018-06-28T23:09:33Z,"['vlogbrothers', 'crashcourse', 'education', 'stem', 'women in stem', 'dr. shini somara', 'law of conservation', 'conservation of energy', 'energy', 'engineering', 'science', 'steady-state', 'conversion', 'yield', 'accumulation', 'generation', 'consumption']",291209,5193,133,PT10M6S,true
How P-Values Help Us Test Hypotheses: Crash Course Statistics #21,bf3egy7TQ2Q,2018-06-27T21:41:31Z,"['Crash Course', 'crashcourse', 'education', 'statistics', 'ap statistics', 'stats', 'ap stats', 'p-values', 'null hypothesis significance testing', 'nhst', 'inferential statistics']",321273,5075,134,PT11M53S,true
Cathedrals and Universities: Crash Course History of Science #11,0wDlLwLIFeI,2018-06-25T20:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history of science', 'cathedrals', 'universities', 'history of education', 'religion']",369026,7421,386,PT13M21S,true
Biomedical & Industrial Engineering: Crash Course Engineering #6,O6lENrRANxY,2018-06-21T20:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'stem', 'engineering', 'science', 'women in stem', 'dr. shini somara', 'biomedical engineering', 'industrial engineering', 'bioengineering']",433479,9517,297,PT10M27S,true
Where Did Theater Go? Crash Course Theater #18,1xrcHQB5EEU,2018-06-15T20:06:19Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'England', '17th Century', 'Charles I', 'Charles II', 'English Civil War', 'Oliver Cromwell', 'Prynne', 'Restoration', 'Shakespeare', 'PArliament']",120798,2338,90,PT13M26S,true
The History of Chemical Engineering: Crash Course Engineering #5,aRKyJRAxjpM,2018-06-14T22:14:45Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'engineering', 'chemical engineering', 'stem', 'women in stem', 'dr. shini somara']",367729,7688,255,PT9M,true
Confidence Intervals: Crash Course Statistics #20,yDEvXB6ApWc,2018-06-13T20:26:19Z,"['crash course', 'crashcourse', 'statistics', 'stats', 'ap stats', 'ap statistics', 'confidence interval', 'ci', 'z-score', 'z score', 't-distribution', 'margin of error', 'polling error', 'pollster', 'elections']",402659,5286,134,PT13M2S,true
Alchemy: History of Science #10,gxiLuz9kHi0,2018-06-11T23:35:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'alchemy', 'alchemists', 'history of science', 'chemistry', 'lead into gold', ""the philosopher's stone"", 'alkahest', 'science']",933533,21016,1017,PT12M50S,true
English Theater After Shakespeare: Crash Course Theater #17,2_ktCNGYbrU,2018-06-08T21:28:42Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Shakespeare', 'England', 'theater', 'theatre', 'drama', 'play', 'plays', 'London', 'Ben Jonson']",113595,2392,60,PT12M59S,true
The History of Electrical Engineering: Crash Course Engineering #4,3nB1Ntku06w,2018-06-07T19:54:28Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",448070,8989,330,PT9M25S,true
The Normal Distribution: Crash Course Statistics #19,rBjft49MAO8,2018-06-06T21:09:12Z,"['Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap statistics', 'central limit theorem', 'clt', 'normal distribution', 'normal curve', 'bell curve', 'population distribution', 'sampling distribution', 'inferential statistics']",331050,5121,226,PT11M27S,true
Ancient & Medieval Medicine: Crash Course History of Science #9,iGiZXQVGpbY,2018-06-04T21:26:22Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",644346,12278,411,PT12M6S,true
"Comedies, Romances, and Shakespeare's Heroines: Crash Course Theater #16",ZjAqfh9aY9Y,2018-06-01T17:49:48Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mike Rugnetta', 'theater', 'theatre', 'drama', 'plays', 'acting', 'actors', 'stage', 'Shakespeare', 'William', ""All's Well that Ends Well"", 'Measure for Measure', 'Merchant of Venice', 'Cymbeline', ""Midsummer Night's Dream"", 'Comdedy of Errors', 'comedy', 'comedies', 'romance', 'romantic']",220224,3627,101,PT11M22S,false
Mechanical Engineering: Crash Course Engineering #3,A1V-QQ5wFU4,2018-05-31T21:28:57Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'stem', 'women in stem', 'shini somara', 'mechanical engineering', 'engineering']",808828,15867,504,PT9M39S,true
Z-Scores and Percentiles: Crash Course Statistics #18,uAxyI_XfqXk,2018-05-30T21:15:48Z,"['crash course', 'crashcourse', 'statistics', 'stats', 'ap stats', 'ap statistics', 'z-score', 'z score', 'percentiles', 'standardization', 'normal distribution', 'z distribution', 'goat']",495477,8002,174,PT10M55S,true
Shakespeare's Tragedies and an Acting Lesson: Crash Course Theater #15,9m5I-HO3w8w,2018-05-25T20:54:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mike Rugnetta', 'theatre', 'theater', 'drama', 'dramaturgy', 'Shakespeare', 'William', 'England', 'London', 'Renaissance', 'Hamlet', 'King Lear', 'Macbeth', 'Titus Andronicus']",318993,4411,148,PT12M4S,true
Civil Engineering: Crash Course Engineering #2,-xbtnz4wdaA,2018-05-24T19:28:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'engineering', 'stem', 'women in stem', 'civil engineering']",838443,15566,527,PT8M46S,true
Randomness: Crash Course Statistics #17,jL9en6NvQfk,2018-05-23T20:32:54Z,"['Crash Course', 'crashcourse', 'statistics', 'stats', 'ap stats', 'ap statistics', 'random', 'randomness', 'moment', 'expectation', 'expected value', 'mean', 'variance', 'skewness', 'kurtosis', 'distribution', 'simulation']",148006,2859,110,PT12M7S,true
Medieval China: Crash Course History of Science #8,F6Su3rBxea8,2018-05-21T22:30:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'china', 'chinese history', 'chinese science', 'medieval china', 'the grand canal', 'history of science']",748140,13004,941,PT12M35S,true
Straight Outta Stratford-Upon-Avon - Shakespeare's Early Days: Crash Course Theater #14,FS2ndY5WJXA,2018-05-18T19:48:22Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'England', 'English', 'theatre', 'theater', 'drama', 'play', 'actor', 'actress', 'acting', 'William Shakespeare', 'Elizabeth I', 'Elizabethan', 'Globe', 'London', 'The Theatre']",479386,5611,154,PT11M27S,true
What is Engineering?: Crash Course Engineering #1,btGYcizV0iI,2018-05-17T23:16:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'engineering', 'stem', 'women in stem', 'science', 'technology', 'shini somara']",1491619,32015,1107,PT9M37S,true
Geometric Distributions and The Birthday Paradox: Crash Course Statistics #16,5VMTeBoEcQg,2018-05-16T21:00:00Z,"['Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap statistics', 'binomial', 'geomtric', 'distribution', 'probability', 'the birthday paradox', 'lottery', 'the birthday problem']",147790,2909,108,PT10M19S,true
Future Literacies: Crash Course Media Literacy #12,Q_aXzpeam0s,2018-05-15T18:44:23Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'media literacy']",108660,3496,188,PT7M38S,true
The Medieval Islamicate World: Crash Course History of Science #7,bkVsus8Ehxs,2018-05-14T22:00:49Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'islamic', 'islamic studies', 'islamicate', 'history of science', 'science', 'astrolabe', 'house of wisdom']",1088717,27125,2670,PT13M4S,true
The English Renaissance and NOT Shakespeare: Crash Course Theater #13,snJpYLV7bYA,2018-05-11T22:23:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'drama', 'theater', 'play', 'plays', 'actor', 'acting', 'theatre', 'stage', 'staging', 'William Shakespeare', 'Tudor', 'England', 'Britain', 'United Kingdom', 'UK', 'James Burbage', 'the Globe', 'the Swan', 'The Theatre', 'Henry VII', 'Henry VIII', 'Elizabeth I', ""Lord Chamberlain's Men""]",288916,4850,141,PT12M52S,true
Crash Course Engineering Preview,ToC8rFFp88Y,2018-05-10T20:05:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'engineering']",678393,12000,670,PT2M10S,true
The Binomial Distribution: Crash Course Statistics #15,WR0nMTr6uOo,2018-05-09T21:58:57Z,"['Crash Course', 'crashcourse', 'statistics', 'ap stats', 'ap statistics', 'binomial distribution', 'bernoulli distribution', 'distribution', 'probability', 'binomial coefficient', 'combinatorics', 'bernoulli']",329462,5633,199,PT14M15S,true
Media Skills: Crash Course Media Literacy #11,Be-A-sCIMpg,2018-05-08T20:37:54Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'media literacy', 'media skills']",208140,3880,136,PT11M3S,true
Roman Engineering: Crash Course History of Science #6,GcReek3z_38,2018-05-07T21:47:25Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",843201,15293,755,PT12M29S,true
"Pee Jokes, the Italian Renaissance, Commedia Dell'Arte: Crash Course Theater #12",U96m8inKt24,2018-05-04T22:51:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mike Rugnetta', 'theater', 'drama', 'comedy', 'medieval', 'middle ages', 'neoclassical', ""commedia dell'arte"", 'golden age', 'Italy', 'Reniassance', 'plays', 'humanism', 'performance', 'acting', 'actors', 'theatre', 'Florence', 'Rome', 'scenery', 'stagecraft', 'comic']",299056,5124,127,PT11M18S,true
Probability Part 2: Updating Your Beliefs with Bayes: Crash Course Statistics #14,oZCskBpHWyk,2018-05-02T21:04:19Z,"['Crash Course', 'crashcourse', 'statistics', 'stats', 'ap statistics', 'bayes theorem', 'bayesian statistics', 'law of large numbers', 'simulations', 'spam filters', 'frequentist statistics']",233812,3924,114,PT12M6S,true
The Dark(er) Side of Media: Crash Course Media Literacy #10,rR7j11Wpjiw,2018-05-01T21:41:45Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'media literacy', 'propaganda', 'misinformation', 'disinformation']",251111,4900,278,PT10M35S,true
The Americas and Time Keeping: Crash Course History of Science #5,dCBDUDwaeCA,2018-05-01T00:28:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'history of science', 'maya', 'mayan', 'mayan civilization', 'inca', 'olmec', 'when are we', 'science recording']",530025,9040,495,PT12M49S,true
Just Say Noh. But Also Say Kyogen: Crash Course Theater #11,J1IyUPMXwS0,2018-04-27T22:57:16Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Japan', 'Noh', 'Kyogen', 'No', 'Shinto', 'Shogun', 'mask', 'masks', 'play', 'samurai', 'Japanese']",220605,4075,149,PT12M55S,true
2001 - A Space Odyssey: Crash Course Film Criticism #15,KEEnap_h8cs,2018-04-26T22:04:35Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', '2001 A Space Odyssey', 'film', 'film criticism', 'stanley kubrick', 'arthur c clarke', 'michael aranda', 'film studies']",695270,21845,1015,PT13M39S,true
Probability Part 1: Rules and Patterns: Crash Course Statistics #13,OyddY7DlV58,2018-04-25T20:46:50Z,"['crash course', 'crashcourse', 'statistics', 'stats', 'ap stats', 'ap statistics', 'probability', 'addition rule', 'multiplication rule', 'conditional', 'theoretical', 'empirical', 'mutually exclusive', 'independent', 'education']",467238,6962,197,PT12M1S,true
India: Crash Course History of Science #4,bDQkpNbsly4,2018-04-25T16:00:04Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'india', 'maurya', 'maurya empire', 'empire', 'history of science', 'veda', 'vedic']",1640635,39441,3732,PT13M15S,true
Media Policy & You: Crash Course Media Literacy #9,TVaZnxYKKdM,2018-04-24T22:40:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'media literacy', 'media policy', 'dmca']",121520,2874,105,PT11M34S,true
Get Outside and Have a (Mystery) Play: Crash Course Theater #10,5VI3qcSuUlk,2018-04-20T21:17:04Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'play', 'drama', 'theater', 'mike rugnetta', 'medieval', 'theatre', 'passion play', 'cycle play', 'pageant wagon', 'morallity play']",194000,3007,89,PT11M45S,true
Beasts of No Nation: Crash Course Film Criticism #14,1xURt0maugI,2018-04-19T22:30:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film studies', 'film criticism', 'beasts of no nation', 'cary fukunaga', 'realism', 'formalism', 'film theory', 'michael aranda', 'crash course film', 'idris elba']",264296,7693,299,PT12M29S,true
"Henrietta Lacks, the Tuskegee Experiment, and Ethical Data Collection: Crash Course Statistics #12",CzNANZnoiRs,2018-04-18T21:47:54Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap stats', 'ap statistics', 'ethics', 'irb', 'henrietta lacks', 'tuskegee syphilis experiment', 'alexis st martin', 'william beaumont', 'nuremberg code', 'data mining', 'targeted ads']",353761,5136,136,PT11M25S,true
Media Ownership: Crash Course Media Literacy #8,DvSTlxJsKzE,2018-04-17T21:03:30Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'media literacy', 'media ownership', 'mergers', 'the media']",261932,4956,229,PT12M,true
Plato and Aristotle: Crash Course History of Science #3,rh0fxJkvL44,2018-04-16T23:03:19Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'socrates', 'aristotle', 'plato', 'history of science', 'history of learning']",1647495,28663,636,PT12M29S,true
"Hrotsvitha, Hildegard, and the Nun who Resurrected Theater: Crash Course Theater #9",XdvIsJF9d9s,2018-04-13T21:59:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Hrotsvitha', 'drama', 'theater', 'playwright', 'play', 'church', 'holy', 'nun', 'Gandersheim', 'Hildegard of Bingen', 'liturgy', 'liturgical']",120106,2298,81,PT12M12S,true
Moonlight: Crash Course Film Criticism #13,Nlz9CCZSJ5I,2018-04-12T20:55:40Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'moonlight', 'barry jenkins', 'tarell alvin mccraney', 'masculinity', 'oscar winner', 'academy award winner', 'movie', 'film criticism', 'film', 'formalism', 'realism']",305762,11575,349,PT11M41S,true
Science Journalism: Crash Course Statistics #11,ZwqOoD17_LU,2018-04-11T21:00:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap stats', 'ap statistics', 'science', 'journalism', 'reporting', 'click bait', 'sensationalism', 'miracle', 'food', 'drug', 'weight loss', 'statistical test', 'bad science', 'peer review', 'control trial']",155603,3924,157,PT10M42S,true
Online Advertising: Crash Course Media Literacy #7,cmRcoJZRXEY,2018-04-10T21:42:04Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",289390,5506,183,PT10M32S,true
The Presocratics: Crash Course History of Science #2,epCOGAa7tRQ,2018-04-09T21:49:38Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'thales', 'pythagoras', 'democritus', 'presocratics', 'the presocratics', 'history of science', 'science', 'scientific thought', 'scientific method']",903075,17607,570,PT12M32S,true
The Death and Resurrection of Theater as...Liturgical Drama: Crash Course Theater #8,kX0jHv05FYM,2018-04-06T20:10:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theater', 'theatre', 'play', 'drama', 'liturgy', 'mass', 'priest', 'passion play', 'church', 'Rome', 'Roman', 'actor', 'acting']",195281,3038,135,PT12M33S,true
The Eagle Huntress: Crash Course Film Criticism #12,if36bqHypqk,2018-04-05T20:40:53Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",61555,1980,79,PT10M4S,true
Influence & Persuasion: Crash Course Media Literacy #6,VXhLmkrN0-I,2018-04-03T19:56:10Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'media literacy', 'influence', 'persuasion', 'advertising', 'propaganda', 'public relations']",330433,5638,192,PT9M51S,true
Three Colors - Blue: Crash Course Film Criticism #11,GVNy3x_PwFk,2018-03-29T20:34:51Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'krzysztof kieslowski', 'blue', 'juliet binoche', 'drama', 'film criticism', 'crash course film', 'michael aranda', 'music', 'three colors blue', 'three colors trilogy']",187597,5438,155,PT11M2S,true
Sampling Methods and Bias with Surveys: Crash Course Statistics #10,Rf-fIpB4D50,2018-03-28T21:05:16Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'sampling methods', 'samples', 'bias', 'statistics', 'stats', 'ap stats', 'ap statistics', 'survey', 'poll', 'questionnaire', 'census', 'simple random sample', 'non-response bias', 'voluntary response bias', 'stratified random sampling', 'snowball sampling', 'sampling error']",325492,4818,178,PT11M46S,true
Media & Money: Crash Course Media Literacy #5,QpYrSLiIoKo,2018-03-27T20:01:02Z,"['education', 'media literacy']",200181,4106,196,PT10M16S,true
Intro to History of Science: Crash Course History of Science #1,YvtCLceNf30,2018-03-26T22:54:35Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",1051238,23764,1001,PT12M20S,true
"Nostrils, Harmony with the Universe, and Ancient Sanskrit Theater: Crash Course Theater #7",b3mj4QQH8TM,2018-03-23T22:08:27Z,"['John Green', 'Hank Green', 'Crash Course', 'crashcourse', 'education', 'mike rugnetta', 'theater', 'theater history', 'india', 'sanskrit', 'hindu', 'theatre', 'drama', 'theatrical', 'learn', 'study', 'test', 'exam', 'homework help', 'AP', 'bharata muni', 'Natyashastra', 'actor', 'acting', 'thespian']",212655,4237,319,PT12M38S,true
The Limey: Crash Course Film Criticism #10,Uxeqt6dIziQ,2018-03-22T21:58:38Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",81284,2190,112,PT11M13S,true
Controlled Experiments: Crash Course Statistics #9,kkBDa-ICvyY,2018-03-21T20:48:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap stats', 'ap statistics', 'simulation', 'controlled experiments', 'placebo', 'control', 'blind', 'single blind', 'double blind', 'experiment', 'study', 'bias', 'allocation', 'selection', 'experimental design', 'treatment', 'group', 'A/B testing', 'scott kelly', 'sugar tax', 'elon musk', 'david chalmers', 'robin hanson', 'hyperactivity', 'children', 'fps shooters', 'violence', 'trials']",258882,4153,85,PT12M27S,true
Media & the Mind: Crash Course Media Literacy #4,TAdkzxB4WFo,2018-03-20T21:04:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'media literacy']",274532,5340,193,PT9M14S,true
Crash Course History of Science Preview,-hjGgFgnYIA,2018-03-19T22:27:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",808790,12585,597,PT2M3S,true
"Roman Theater with Plautus, Terence, and Seneca: Crash Course Theater #6",jQpvph777Pg,2018-03-16T21:15:43Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Plautus', 'Seneca', 'Menander', 'Terence', 'Mike Rugnetta', 'Rome', 'Roman', 'play', 'theatre', 'theater', 'drama', 'plays', 'dramaturgy', 'theatrical', 'thespian', 'acting', 'actors', 'Greece', 'Greek', 'Claudius', 'Nero', 'Caligula', 'Emperor', 'gladiator']",237415,3601,97,PT11M58S,true
Pan's Labyrinth: Crash Course Film Criticism #9,NqDLB3JWfds,2018-03-15T22:39:53Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film criticism', ""pan's labyrinth"", 'guillermo del toro', 'movies', 'film theory', 'frilm crit', 'michael aranda']",648439,19802,637,PT11M21S,true
Correlation Doesn't Equal Causation: Crash Course Statistics #8,GtV-VYdNt_g,2018-03-14T21:31:12Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap stats', 'ap statistics', 'correlation', 'causation', 'scatter plot', 'coefficient', 'regression', 'r^2', 'r squared', 'scatterplot', 'Karl Pearson', 'positive', 'negative', 'example', 'math', 'mathematics', 'nicolas cage', 'correlation doesn’t imply causation', 'spurious correlations', 'datasaurus dozen', 'fast and furious']",436556,7907,234,PT12M18S,true
"History of Media Literacy, Part 2: Crash Course Media Literacy #3",9iUjvNtgWAs,2018-03-13T21:06:39Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'media literacy', 'moral panic', 'cultural defensiveness', 'protectionism', 'political defensiveness', 'moral defensiveness', 'Marshall McLuhan']",254819,4460,153,PT9M55S,true
"Dances to Flute Music and Obscene Verse. It's Roman Theater, Everybody: Crash Course Theater #5",P05G89hgrPI,2018-03-09T23:15:40Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'theatre', 'theater', 'Athens', 'Aristophanes', 'Greece', 'Greek', 'Lysistrata', 'Chorus', 'middle comedy', 'drama', 'comedy', 'new comedy', 'menander', 'alexander the great', 'papyrus', 'absurd', 'phallus', 'gods', 'goddesses', 'Sparta', 'Livy', 'mask', 'dances to flute', 'lyric poetry', 'atellan farce', 'phlyakes', 'fabula satura', 'histriones', 'gladiators', 'pallium', 'palliates', 'naumachia', 'plautus', 'terence']",238258,3556,99,PT12M26S,true
Apocalypse Now: Crash Course Film Criticism #8,bVMGyXnnoRM,2018-03-08T22:02:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course film', 'film criticism', 'film crit', 'film theory', 'michael aranda', 'apocalypse now', 'francis ford coppola', 'vietnam war', 'war movies', 'martin sheen', 'psychology', 'fruedian']",558989,14678,630,PT11M55S,true
The Shape of Data: Distributions: Crash Course Statistics #7,bPFNxD3Yg6U,2018-03-08T01:29:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap stats', 'ap statistics', 'distributions', 'histogram', 'samples', 'population', 'student loans', 'normal distribution', 'normal curve', 'bell curve', 'bimodal', 'multimodal', 'old faithful', 'marathon', 'roulette', 'd20', 'dice']",532024,8100,193,PT11M23S,true
"History of Media Literacy, Part 1: Crash Course Media Literacy #2",oXf0F4GYzWQ,2018-03-07T00:00:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'media', 'literacy', 'plato', 'printing press', 'yellow journalism', 'hearst', 'pulitzer', 'media literacy']",365353,6143,181,PT9M51S,true
The Inventor Who Vanished: Crash Course Recess #1,RokCkouFFtg,2018-03-05T22:54:57Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course', 'louis le prince', 'film', 'film history', 'the first movie camera', 'edison', 'thomas edison', 'lumiere', 'the lumiere brothers', 'movies', 'crash course film']",245266,8663,428,PT3M51S,true
"Greek Comedy, Satyrs, and Aristophanes: Crash Course Theater #4",xLKUXI0enbg,2018-03-02T23:25:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mike Rugnetta', 'theater', 'theatre', 'Aristophanes', 'Greek', 'Greece', 'drama', 'dramaturgy', 'acting', 'actor', 'play', 'The Birds', 'Clouds', 'Frogs', 'Athens', 'Sparta', 'Lysistrata', 'Satyr', 'tragedy', 'purgation', 'catharsis', 'myth', 'mythology']",285329,5214,179,PT11M34S,true
Lost in Translation: Crash Course Film Criticism #7,2wRcDM_5rjs,2018-03-01T22:02:51Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course film', 'crash course film criticism', 'film', 'film criticism', 'film theory', 'lost in translation', 'Michael Aranda', 'bill murray', 'scarlet johanson', 'sophia coppola', 'romantic comedy']",313069,9945,432,PT10M29S,true
"Plots, Outliers, and Justin Timberlake: Data Visualization Part 2: Crash Course Statistics #6",HMkllhBI91Y,2018-02-28T22:02:15Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'math', 'mathematics', 'statistics', 'stats', 'ap stats', 'ap statistics', 'outlier', 'outliers', 'boxplot', 'dotplot', 'stem and leaf plot', 'dataset', 'data visualization', 'graph', 'chart', 'plot', 'justin timberlake', 'neymar', 'chop me up', 'olive oil', 'netflix', 'fence', 'median', 'IQR', 'teacup pig']",283186,4765,124,PT11M36S,true
Introduction to Media Literacy: Crash Course Media Literacy #1,AD7N-1Mj-DU,2018-02-27T22:17:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'jay smooth', 'media literacy', 'namle', 'media']",1027763,19949,571,PT10M38S,true
Tragedy Lessons from Aristotle: Crash Course Theater #3,nGlQkaoIfBI,2018-02-23T22:06:30Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'aristotle', 'theater', 'theatre', 'Greek', 'Greece', 'ancient', 'plot', 'character', 'diction', 'thought', 'spectacle', 'song', 'projection design', 'Mike Rugnetta', 'stage', 'staging', 'story', 'drama', 'hamartia', 'catharsis', 'oedipus', 'perepetia', 'recognition', 'suffering', 'psychological', 'trauma', 'orestia', 'orestes', 'agamemnon', 'clytemnestra', 'libation bearers', 'eumenides', 'odyssey', 'iliad', 'Homer']",526217,8431,203,PT12M30S,true
Do the Right Thing: Crash Course Film Criticism #6,bZBmOd83Fds,2018-02-22T21:57:17Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'michael aranda', 'film', 'film criticism', 'do the right thing', 'spike lee', 'racism', 'film theory', 'film production', 'crash course film']",272334,7747,341,PT11M27S,true
Charts Are Like Pasta - Data Visualization Part 1: Crash Course Statistics #5,hEWY6kkBdpo,2018-02-21T23:05:08Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'charts', 'graphs', 'bar chart', 'histogram', 'pie chart', 'pictogram', 'data', 'visualization', 'frequency table', 'binning', 'relative frequency table', 'statistics', 'stats', 'ap stats', 'ap statistics', 'qualitative', 'quantitative', 'categorical data', 'quantitative data', 'news', 'politics']",408816,6621,209,PT10M22S,true
Crash Course Media Literacy Preview,sPwJ0obJya0,2018-02-20T22:05:24Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'media literacy', 'jay smooth']",410995,7313,431,PT1M52S,true
"Thespis, Athens, and The Origins of Greek Drama: Crash Course Theater #2",VeTeK9kvxyo,2018-02-16T22:52:19Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'ritual madness', 'theater', 'drama', 'theatre', 'PBS', 'mike rugnetta', 'greece', 'greek', 'origin', 'dionysus', 'athens', 'ritual', 'religion', 'religious', 'bacchae', 'bacchus', 'bacchanal', 'bacchanalia', 'Euripedes', 'Sophocles', 'Aeschylus', 'dithyrambs', 'thespis', 'chorus', 'aristotle', 'acting', 'actor', 'mask', 'theatron']",767542,9897,260,PT10M24S,true
In the Mood For Love: Crash Course Film Criticism #5,98QmnyyIXsY,2018-02-15T21:03:17Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'in the mood for love', 'wong kar wai', 'maggie cheung', 'tony leung', 'film', 'crash course film', 'film criticism', 'film education', 'film theory', 'freudian theory', 'movies', 'movie reviews']",376935,12109,202,PT9M31S,true
Measures of Spread: Crash Course Statistics #4,R4yfNi_8Kqw,2018-02-14T20:30:08Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'stats', 'statistics', 'measures of spread', 'stock', 'gambling', 'median', 'mean', 'data', 'conclusion', 'range', 'age', 'AP', 'math', 'mathematics', 'Adrienne Hill', 'IQR', 'interquartile range', 'values', 'variance', 'scatter plot', 'inferential', 'plot']",581882,11182,257,PT11M47S,true
"Liberals, Conservatives, and Pride and Prejudice, Part 2: Crash Course Literature 412",dhgEpr87Yac,2018-02-13T22:44:16Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Jane Austen', 'google', 'snapchat', 'Pemberley', 'Darcy', 'Elizabeth', 'Bennett', 'Jane', 'Mary', 'Lydia', 'Pride and Prejudice', 'England', 'Mr Bingley', 'UK', 'United Kingdom', 'quadrille', 'Wyckham', 'Collins', 'pride', 'prejudice', 'lit', 'literature', 'English', 'letters', 'Wales', 'ball', 'dance', 'dancing', 'bonnet', 'inheritance', 'income', 'liberal conservative', 'soldier', 'army', 'money', 'cash', 'wealth', 'morals', 'morality']",457228,12734,458,PT11M12S,true
The Structure & Cost of US Health Care: Crash Course Sociology #44,KriEIJ0ubh0,2018-02-12T22:03:17Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'health care', 'medical sociology']",285779,4590,465,PT9M50S,true
What Is Theater? Crash Course Theater #1,sNWrOuwzax8,2018-02-09T22:54:47Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'drama', 'theater', 'theatre', 'dramaturgy', 'history', 'theatrical', 'dramatic', 'tragedy', 'comedy', 'historical', 'dionysus', 'thoth', 'analysis', 'play', 'performance', 'act', 'acting', 'actor', 'scene', 'Shakespeare', 'greek', 'greece', 'Egypt', 'proscenium']",914834,15249,487,PT14M7S,true
Where Are My Children: Crash Course Film Criticism #4,gOp7tYFk-38,2018-02-08T21:55:54Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film history', 'film criticism', 'film studies', 'silent film', 'silent films', 'lois weber', 'phillip smally', 'michael aranda', 'movies', 'crash course film', 'understanding movies', 'understanding film', 'film theory', 'where are my children', 'abortion', 'birth control']",121886,2873,160,PT9M44S,true
"Mean, Median, and Mode: Measures of Central Tendency: Crash Course Statistics #3",kn83BA7cRNM,2018-02-07T23:12:09Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap stats', 'ap statistics', 'mean', 'median', 'mode', 'average', 'outliers', 'macrame', 'bimodal', 'multimodal', 'in-n-out', 'pineapples', 'pizza', 'income inequality', 'expectation', 'elon musk', 'normal distribution', 'harry potter', 'puppies', 'ratings', 'amazon']",947296,14898,346,PT11M23S,true
"Pride and Prejudice, Part 1: Crash Course Literature 411",5xTh44G6RYs,2018-02-07T00:26:09Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Jane Austen', 'Lit', 'literature', 'English', 'England', 'Pride', 'Prejudice', 'Sanditon', 'Emma', 'Sense and Sensibility', 'Bennet', 'Lizzie', 'Uniited Kingdom', 'regency', 'american revolution', 'french revolution', 'daughters', 'inheritance', 'will', 'liberty', 'rights']",891129,23677,513,PT11M44S,true
Population Health: Crash Course Sociology #43,D9SWRByzDSo,2018-02-05T22:32:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'health', 'medicine', 'medical sociology', 'population health', 'genetics', 'pollution', 'stress', 'racism']",184061,3050,156,PT9M56S,true
Crash Course Theater and Drama Preview!,LEN8FZEKaNU,2018-02-02T20:37:08Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mike Rugnetta', 'theater', 'theatre', 'drama', 'dramaturgy', 'plays', 'literature', 'performance', 'india', 'Rome', 'Greece', 'Ancient', 'Classical']",419963,7330,599,PT3M49S,true
Mathematical Thinking: Crash Course Statistics #2,tN9Xl1AcSv8,2018-01-31T22:41:47Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'ap stats', 'ap statistics', 'mathematical thinking', 'understanding numbers', 'innumeracy', 'abraham wild', 'kola super deep borehole', 'big numbers', 'small numbers', 'bulgarian lottery', 'chance', 'probability', 'lottery', 'snake bites', 'ebola', 'cancer', 'sand holes', 'jordan ellenberg', 'tim urban']",756989,14820,587,PT11M1S,true
"Gender, Guilt, and Fate - Macbeth, Part 2: Crash Course Literature 410",4zdkun4xzOs,2018-01-30T23:03:30Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Macbeth', 'Shakespeare', 'English', 'literature', 'theater', 'play', 'drama', 'Macduff', 'Scotland', 'Scottish', 'hero', 'anti-hero', 'Lady Macbeth', 'blood', 'daggers', 'murder', 'Duncan', 'Malcolm', 'gender roles', 'out damned spot', 'guilt', 'conscience', 'insomnia', 'death', 'insomiac', 'royalty', 'succession', 'throne', 'crown', 'sociopath', 'Iago', 'Othello', 'Banquo', 'Dunsinane', 'Birnam Wood', 'something wicked', 'Holinshed', 'history', 'Elizabethan', 'Jacobean', 'Globe Theater', 'victim']",514180,11503,420,PT12M7S,true
Health & Medicine: Crash Course Sociology #42,8NGlENS1qgo,2018-01-29T22:04:19Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'health', 'medicine', 'health care', 'disease', 'sick role', 'structural functionalism', 'symbolic interactionism']",285829,4488,157,PT11M15S,true
Mythical Language and Idiom: Crash Course World Mythology #41,qmpDK-8ib2Y,2018-01-28T19:39:42Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'hercules', 'herculean', 'scylla', 'charybdis', 'odyssey', 'iliad', 'odysseus', 'paris', 'helen', 'troy', 'trojan war', 'greek', 'ilium', 'idiom', 'ares', 'trojan horse', 'sysiphean', 'achilles', 'thetis', 'achilles heel', 'vulnerability', 'kal el', 'midas touch', 'midas', 'gold', 'success', 'narcissism', 'narcissus', 'echo', 'nymph', 'nemesis', 'phobos', 'phobia', 'adonis']",359128,11931,1247,PT12M49S,true
Selma: Crash Course Film Criticism #3,tk4dIgIG5Qs,2018-01-25T23:17:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'selma', 'martin luther king jr', 'martin luther king', 'equal rights', 'the voting act', 'ava duvernay', 'film', 'movies', 'michael aranda', 'film criticism', 'film reviews', 'crash course film', 'civil rights']",171438,4417,218,PT12M56S,true
What Is Statistics: Crash Course Statistics #1,sxQaBpKfDRk,2018-01-24T19:17:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Stats', 'statistics', 'ap stats', 'ap statistics', 'crash course statistics', 'inferential statistics', 'descriptive statistics', 'Ronald fisher', 'proxy', 'sample size', 'probability', 'chain saws']",1771919,30568,829,PT13M,true
"Free Will, Witches, Murder, and Macbeth, Part 1: Crash Course Literature 409",VPYOs0EGgJk,2018-01-24T02:22:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'play', 'drama', 'theater', 'literature', 'history', 'politics', 'England', 'Jacobean', 'Shakespeare', 'William', 'Macbeth', 'Macduff', 'Banquo', 'Cawdor', 'Scotland', 'witches', 'royalty', 'king', 'thane', 'Burnham Wood', 'Lady Macbeth', 'Malcolm', 'succession']",882044,18141,613,PT12M56S,true
Schools & Social Inequality: Crash Course Sociology #41,hYMk3Bk08NA,2018-01-22T21:58:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'schools', 'social inequality', 'conflict theory', 'us education', 'school funding', 'cultural capital', 'school to prison pipeline']",466770,8757,0,PT11M27S,true
"Freud, Jung, Luke Skywalker, and the Psychology of Myth: Crash Course World Mythology #40",PgsWcqATeLQ,2018-01-20T00:52:14Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Freud', 'Jung', 'Sigmund', 'myth', 'mythology', 'mythography', 'oedipus', 'vienna', 'literatures', 'Greek', 'sphinx', 'Jocasta', 'psychology', 'psychiatry', 'mother', 'father', 'Archetype', 'Anima', 'Animus', 'shadow', 'dream', 'analysis', 'star wars', 'luke skywalker', 'han solo', 'obi wan kenobi', 'collective unconscious', 'ether', 'self', 'ego', 'id', 'superego']",448599,10935,648,PT12M55S,true
Aliens: Crash Course Film Criticism #2,VoZMOmjXENU,2018-01-18T22:38:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film criticsm', 'aliens', 'alien', 'james cameron', 'michael aranda', 'pbs digital studios', 'pbs', 'xenomorph']",265890,7991,627,PT11M37S,true
Crash Course Statistics Preview,zouPoc49xbk,2018-01-17T23:36:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'statistics', 'stats', 'math', 'mathematics', 'lottery', 'gambling', 'siri', 'alexa', 'pop-tarts', 'moneyball', 'batting averages', 'regression', 'naked statistics', 'mean', 'median', 'mode', 'range', 'causation vs correlation', 'adriene hill', 'AP Statistics', 'ap stats']",1071633,18760,878,PT3M,true
To the Lighthouse: Crash Course Literature 408,mtHilmUa69M,2018-01-16T23:54:07Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Lit', 'literature', 'ephemeral', 'novel', 'book', 'Virginia Woolf', 'lighthouse', 'sussex', 'beef stew', 'plot', 'literary', 'modernist', 'modernism', 'istitutions', 'Virginia Stephen', 'England', 'Sussex', 'London', 'Bloomsbury', 'Monk House', 'Jane Austen', 'Free Indirect Discourse', 'narrative', 'narration', 'World War I', 'Europe', 'Ramsay']",380496,9370,258,PT12M22S,true
Education In Society: Crash Course Sociology #40,S294zRodS_4,2018-01-15T21:48:10Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'schools', 'tracking']",484736,10063,275,PT11M32S,true
Witches and Hags: Crash Course World Mythology #39,0OCPQG4bMFs,2018-01-12T21:48:49Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mike Rugnetta', 'Myth', 'mythology', 'mythography', 'hag', 'witch', 'callagh', 'supernatural', 'witches', 'weird sisters', 'thoth', 'baba yaga', 'forest', 'fairy', 'godmother', 'women', 'woman', 'magic', 'powers', 'mare', 'mightmare', 'mara', 'caillagh', 'winter', 'scottish', 'scotland', 'snow', 'Kirk Lonen', 'Calybrid', 'mill', 'wand', 'magic wand', 'hazel']",599387,14048,836,PT9M41S,true
Citizen Kane: Crash Course Film Criticism #1,qk0-m_LARCY,2018-01-11T22:14:42Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'michael aranda', 'film criticism', 'film', 'movies', 'movie reviews', 'film school', 'film education', 'citizen kane', 'orson welles', 'war of the worlds', 'the mercury theater']",642636,15363,608,PT10M40S,true
The Yellow Wallpaper: Crash Course Literature 407,rtepIKeNHPU,2018-01-10T17:29:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'yellow wallpaper', 'charlotte perkins gilman', 'mental health', 'literature', 'Lit', 'English', 'book', 'novel', 'short story']",876453,22685,563,PT13M35S,true
Religion: Crash Course Sociology #39,pIgb-3e8CWA,2018-01-08T21:54:19Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'religion', 'sacred', 'profane', 'structural functionalism', 'conflict theory', 'social cohesiveness', 'social stratification']",614756,10305,703,PT11M6S,true
Crash Course Film Criticism Preview,wF1bYBrmLCk,2018-01-04T23:51:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",208617,6739,687,PT2M28S,true
Serpents and Dragons: Crash Course World Mythology #38,SWXNSkE3YEk,2017-12-23T00:25:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'mike rugnetta', 'dragon', 'dragons', 'serpent', 'China', 'Chinese', 'Saint George', 'Silenia', 'Wales', 'Welsh', 'draco', 'snake', 'snakes', 'study', 'test', 'exam', 'garden of eden', 'adam', 'eve', 'babylon', 'tree of knowledge', 'tiamat', 'sumer', 'sumerian', 'ishtar', 'egypt', 'odwat', 'nebudchanezzer', 'jerusalem', 'daniel', ""lion's den"", 'bible', 'biblical', 'Israel', 'Rostam', 'Rakhsh', 'Iran', 'Persian', 'Persia', 'red dragon', 'mabinogion', 'white dragon', 'mead', 'Libya']",713352,16141,991,PT11M24S,true
"The Singularity, Skynet, and the Future of Computing: Crash Course Computer Science #40",5TNAz1HYg18,2017-12-21T17:01:28Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computing', 'computers', 'crash course computer science', 'compsci', 'skynet', 'singularity', 'ubiquitous computing', 'terminator', 'artificial intelligence', 'autonomous cars', 'self-driving cars', 'superintelligence', 'John von Neumann', 'Paul Allen', 'technological unemployment', 'Ray Kurzweil', 'wearable computers', 'Jaron Lanier', 'digital ascension', 'robots', 'drones', '3d printing', 'bioninformatics', 'quantum computing', 'cryptocurrency', 'Carl Sagan']",320361,10542,746,PT12M30S,true
The Parable of the Sower: Crash Course Literature 406,6iVGuMyKFgA,2017-12-20T17:28:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Parable of the Sower', 'Lit', 'literature', 'English', 'Robledo', 'Octavia Butler', 'Scifi', 'Science Fiction', 'library', 'read', 'reading', 'novel', 'AP English', 'dystopia', 'dystopian']",338608,8300,459,PT11M59S,true
Stages of Family Life: Crash Course Sociology #38,eWTz3KBCxfg,2017-12-18T22:00:44Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'social science', 'sociology', 'family', 'sociology of the family', 'marriage', 'demographics', 'childbearing']",401260,11558,160,PT10M53S,true
Mythical Horses: Crash Course World Mythology #37,klXMVUR-Y7Q,2017-12-17T14:55:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mike Rugnetta', 'myth', 'mythology', 'mythography', 'horse', 'horses', 'apollo', 'neptune', 'greek', 'roman', 'egypt', 'horus', 'osiris', 'equine', 'battle', 'warhorse', 'svadlfari', 'loki', 'odin', 'freyja', 'asgard', 'norse', 'sleipnir', 'alexander the great', 'bucephalus', 'mohammed', 'islam', 'al baraq', 'centaur', 'faun', 'centauromachy', 'hippodomaea', 'centauro', 'cronus', 'plow', 'labor', 'Chiron', 'Achilles', 'Pegasus', 'Perseus', 'Medusa', 'Bellerephon', 'Zeus', 'Unicorn', 'tapestries', 'andromeda']",387952,8569,601,PT11M17S,true
Television Production: Crash Course Film Production with Lily Gladstone #15,02mqlmcZzVs,2017-12-14T22:36:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'lily gladstone', 'television production', 'getting into television', 'what do producers do', 'working in television', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",198543,4806,182,PT10M22S,true
Educational Technology: Crash Course Computer Science #39,zTi3_l5h5PQ,2017-12-13T23:12:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computing', 'computers', 'crash course computer science', 'compsci', 'computation', 'technology', 'MOOC', 'virtual reality', 'augmented reality', 'tutoring', 'artificial intelligence', 'algorithms', 'domain model', 'bayesian knowledge tracing', 'classroom', 'data mining', 'virtual agents', 'direct brain learning', 'online video', 'online education', 'saint paul']",198719,4748,168,PT11M52S,true
Candide: Crash Course Literature 405,XJc9iprkVzg,2017-12-13T18:04:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'voltaire', 'literature', 'lit', 'English', 'novel', 'book', 'Candide', 'optimism', 'France', 'French', 'video', 'Paris', '17th century', 'publish', 'publishing', 'Regent', 'Louis', 'Bastille', 'Empiricism', 'Religion', 'tolerance', 'guillotine', 'Deism', 'anonymous', 'Pangloss', 'Cunegonde', 'el Dorado', 'Lisbon', 'Portugal', 'Earthquake', 'murder', 'episodic', 'picaresque', 'bildungsroman']",516021,11693,418,PT12M13S,true
Theories About Family & Marriage: Crash Course Sociology #37,yaeiCEro0iU,2017-12-11T21:23:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'family', 'marriage', 'nuclear family', 'extended family', 'single parent family']",641495,12913,0,PT10M59S,true
To Film School or Not To Film School: Crash Course Film Production with Lily Gladstone #14,rIrLuqTRqr0,2017-12-07T23:14:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film school', 'film production', 'film', 'movies', 'making movies', 'nyu', 'afi', 'american film institute', 'UCLA', 'school', 'film education', 'should I go to film school', 'what is film school', 'what will I learn in film school', 'lily gladstone', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",264915,8672,300,PT9M32S,true
Psychology of Computing: Crash Course Computer Science #38,DEHsvQ3Ylwg,2017-12-06T22:07:58Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computing', 'computers', 'crash course computer science', 'compsci', 'psychology', 'usability', 'chunking', 'affordances', 'ui', 'knurling', 'user interface', 'affective computing', 'emotional computing', 'Rosalind Picard', 'computer-mediated communications', 'augmented gaze', 'uncanny valley']",220509,5575,198,PT12M39S,true
"The Handmaid's Tale, Part 2: Crash Course Literature 404",zj05QxebnC4,2017-12-05T21:25:51Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'margaret Atwood', ""Handmaid's Tale"", 'Hulu', 'novel', 'book', 'literature', 'narrative', 'Offred', 'Ofglen', 'commander', 'feminist', 'feminism', 'Cixou', 'ecriture feminine', 'analysis', 'structure']",626584,14841,504,PT12M13S,true
Age & Aging: Crash Course Sociology #36,kJ18whKduFo,2017-12-04T22:13:37Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social sciences', 'age stratification', 'demographics', 'us census', 'aging', 'senescence']",314966,4600,252,PT10M19S,true
"Monsters. They're Us, Man: Crash Course World Mythology #36",r0T3gpfH_-w,2017-12-01T19:02:42Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'myth', 'mythology', 'mythical', 'story', 'stories', 'tales', 'monster', 'monsters', 'Mike Rugnetta', 'creature', 'unicorn', 'behavior', 'cannibal', 'animal', 'werewolf', 'vampire', 'sphinx', 'greece', 'Egypt', 'Giza', 'Egyptian', 'temple', 'pyramid', 'Oedipus', 'social boundary', 'shapeshifter', 'changeling', 'god', 'Mystique', 'Wolverine', 'transgression', 'evil', 'wickedness', 'fear', 'scare', 'scary', 'punish', 'joseph campbell', 'Beowulf']",849791,18511,756,PT10M30S,true
Marketing: Crash Course Film Production with Lily Gladstone #13,04C3B1Ztwf0,2017-11-30T22:14:46Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'crash course film', 'film production', 'lily gladstone', 'film education', 'marketing', 'film marketing', 'film history', 'trailers', 'previews', 'one sheet', 'poster', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",166118,4005,127,PT9M55S,true
Robots: Crash Course Computer Science #37,3XkL0qQ21Oo,2017-11-29T23:36:12Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computing', 'computers', 'crash course computer science', 'compsci', 'computation', 'robots', 'robot', 'automaton', 'computer numerical control', 'cnc', 'industrial robot', 'unite', 'control loop', 'negative feedback loop', 'pid controller', 'proportional integrative derivative controller', 'autonomous cars', 'android', 'Isaac Asimov', 'terminator', 'robocop', 'ex machinima', 'data', 'ultron', 'astroboy', 'c-3po']",267307,5900,229,PT12M26S,true
"The Handmaid's Tale, Part 1: Crash Course Literature 403",PubyDwbNqYA,2017-11-28T22:47:15Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'literature', 'margaret atwood', 'dystopia', ""handmaid's tale"", 'terror', 'novel', 'book', 'lit', '1984', 'orwell', 'guardian', 'female', 'misogyny', 'sex', 'reproduction', 'wife', 'mistress', 'econowife', 'offred', 'fiction', 'speculative', 'science fiction', 'ottawa', 'canada', 'quebec', 'literary', 'criticism', 'twitter', 'birth rate', 'politics', 'government', 'congress', 'rulers', 'religion', 'religious']",1241782,28886,1142,PT12M41S,true
Racial/Ethnic Prejudice & Discrimination: Crash Course Sociology #35,gSddUPkVD24,2017-11-27T22:00:48Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",608081,12009,0,PT11M40S,true
Natural Language Processing: Crash Course Computer Science #36,fOvTtapxa9c,2017-11-22T22:01:48Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computing', 'computers', 'crash course computer science', 'compsci', 'computation', 'natural language processing', 'nlp', 'speech synthesis', 'speech', 'parse tree', 'parts-of-speech', 'knowledge graph', 'siri', 'google home', 'alexa', 'bixby', 'cortana', 'speech recognition', 'phonemes', 'language model', 'voice user interface']",480134,11373,263,PT11M50S,true
"George Orwell's 1984, Part 2: Crash Course Literature 402",JBYqV2sK918,2017-11-21T21:10:46Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'language', 'experience', 'Sapir-Worf', 'Chomsky', 'George Orwell', 'Stephen Pinker', 'humanity', 'instinct', 'novel', 'book', 'reading', 'lit', 'literature', 'library', 'Oceania', '1984', 'Animal Farm', 'Winston Smith', 'Julia', 'Airstrip One', 'England', 'English', 'war', 'Big Brother', 'Crimestop', 'thought', 'crime', 'words', 'good books', 'study', 'learn', 'AP', 'homework help', 'totalitarian', 'communism', 'capitalism', 'free thought', 'free speech', 'thoughtcrime']",993505,24303,962,PT12M42S,true
Race & Ethnicity: Crash Course Sociology #34,7myLgdZhzjo,2017-11-20T21:58:17Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'race', 'ethnicity', 'society', 'symbolic interactionism', 'conflict theory', 'structural functionalism']",1025730,16267,0,PT10M59S,true
Cities of Myth: Crash Course World Mythology #35,9EbZBJZruAc,2017-11-18T23:16:53Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Jericho', 'Jerusalem', 'Rome', 'Romulus', 'Remus', 'Joshua', 'Israel', 'Italy', 'Aeneas', 'Aeneid', 'Isaiah', 'myth', 'mythology', 'mythography', 'Mike Rugnetta', 'story', 'stories', 'city', 'cities', 'urban', 'metropolitan', 'cosmopolitan', 'exam', 'study', 'homework help', 'study guide']",555486,10325,735,PT12M25S,true
The Editor: Crash Course Film Production with Lily Gladstone #12,esa0NeQI8oc,2017-11-16T22:16:39Z,"['John Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course film', 'editor', 'editing', 'film editing', 'avid', 'avid media composer', 'moviola', 'editing history', 'walter murch', 'thelma schoonmaker', 'film production', 'post production', 'movie making', 'movies', 'editing movies', 'lily gladstone', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",188405,5012,125,PT11M7S,true
Computer Vision: Crash Course Computer Science #35,-4E2-0sxVUM,2017-11-15T23:11:46Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computing', 'computers', 'crash course computer science', 'compsci', 'computation', 'computer vision', 'fei-fei li', 'kernel', 'filter', 'viola-jones', 'face detection', 'convolutional neural networks', 'convolution', 'image processing', 'facial recognition', 'deep learning', 'biometrics', 'autonomous cars', 'snapchat filters', 'barcodes', 'prewitt operators']",379403,9590,160,PT11M10S,true
Theories of Gender: Crash Course Sociology #33,CquRz_cceH8,2017-11-13T21:58:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'gender', 'wage gap', 'structural functionalism', 'symbolic interactionism', 'conflict theory', 'feminism', 'feminist theory']",901939,18408,0,PT10M37S,true
Mythical Trees: Crash Course World Mythology #34,iNw7RIOY7SA,2017-11-12T21:17:49Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'tree', 'myth', 'mythology', 'mythic', 'trees', 'Yggdrasil', 'Odin', 'Thor', 'Ashvattha', 'Buddha', 'Hinduism', 'buddhism', 'Bodhi', 'Loki', 'World Tree', 'Genesis', 'Bible', 'Adam', 'Eve', 'Jehovah', 'serpent', 'temptation', 'fruit', 'tree of knowledge', 'garded of eden']",391129,8242,334,PT11M27S,true
Special Effects: Crash Course Film Production with Lily Gladstone #11,UFkVWnk26rA,2017-11-09T21:44:37Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'lily gladstone', 'special effects', 'sfx', 'gfx', 'film production', 'movies', 'how movies are made', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",158872,3953,149,PT10M1S,true
"1984 by George Orwell, Part 1: Crash Course Literature 401",H9ipRaLa4Jw,2017-11-07T22:15:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', '1984', 'George Orwell', 'novel', 'dystopia', 'dystopian', 'literature', 'lit', 'book', 'writing', 'reading', 'Oceania', 'Eurasia', 'EastAsia', 'Winston Smith', 'Julia', ""O'Brien"", 'Big Brother', 'Newspeak', 'English', 'England', 'Vistory', 'Gin', 'oppression', 'repression', 'government', 'totalitarian', 'totalitarianism', 'communism', 'communist', 'Spanish', 'civil war']",2439450,53358,2369,PT14M28S,true
Gender Stratification: Crash Course Sociology #32,Yb1_4FPtzrI,2017-11-06T22:31:09Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'gender', 'raewyn connell', 'masculinity', 'femininity', 'socialization', 'stratification']",535998,11402,0,PT10M49S,true
Mythical Mountains: Crash Course World Mythology #33,SZN-JbiEtvg,2017-11-05T20:08:58Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mike Rugnetta', 'Mythology', 'myth', 'mythography', 'mountain', 'volcano', 'magic', 'mythical', 'Thoth', 'excelsior', 'climbing', 'mine', 'mining', 'Mount Olympus', '10000 treasure', 'ten thousand', 'peril', 'hero', 'heroism', 'heroic', 'range', 'mineral', 'treasure', 'China', 'Japan', 'Mount Fuji', 'Ko-Li', 'Earrings', 'rice', 'corn', 'king', 'grinder', 'cave', 'treasure cave', 'starve', 'tokyo', 'shinto', 'buddha', 'buddhism', 'Kami', 'animism', 'Amida', 'Yatsutake', 'peaks', 'peak']",382717,8315,401,PT11M42S,true
Grip and Electric: Crash Course Film Production with Lily Gladstone #10,jBoOpXpJhro,2017-11-02T21:03:51Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'movies', 'grip and electric', 'grip', 'grips', 'g and e', 'electric', 'lights', 'lighting', 'lily gladstone', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",140333,3949,92,PT8M39S,true
Machine Learning & Artificial Intelligence: Crash Course Computer Science #34,z-EtmaFJieY,2017-11-01T21:50:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computers', 'computing', 'computer science', 'compsci', 'machine learning', 'artificial intelligence', 'ai', 'deep learning', 'neural networks', 'ibm', 'watson', 'google', 'alpha go', 'siri', 'alexa', 'google assistant', 'self-driving cars', 'autonomous cars']",861268,18957,429,PT11M51S,true
Crash Course Literature Season Four Preview!,3c8YoB-cyY4,2017-10-31T19:39:16Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', '1984', 'George Orwell', 'Literature', 'Lit', 'AP', 'English', 'books', 'novels', 'Handmaids Tale', 'Margaret Atwood', 'Pride and Prejudice', 'Jane Austen', 'Candide', 'Voltaire', 'Parable of the Sower', 'Octavia Butler', 'Yellow Wallpaper', 'Charlotte Perkins Gilman', 'To the Lighthouse', 'Virginia Woolf']",155565,3975,432,PT2M17S,true
Sex & Sexuality: Crash Course Sociology #31,Kqt-_ILgv5c,2017-10-30T20:03:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",983212,15069,0,PT11M34S,true
Mythical Caves and Gardens: Crash Course World Mythology #32,XEjvhTHNx3s,2017-10-29T21:19:36Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'mythology', 'myth', 'mythography', 'gardens', 'caves', 'history', 'mike rugnetta', 'eden', 'zuni', 'hebrew', 'paradise']",370586,8112,412,PT10M41S,true
Designing the World of Film: Crash Course Film Production with Lily Gladstone #9,Q3BcS8Uwl9U,2017-10-26T21:32:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'production design', 'film', 'film production', 'wardrobe', 'hair and makeup', 'makeup', 'set design', 'props', 'crash course film', 'lily gladstone', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",184671,4411,100,PT8M46S,true
Cryptography: Crash Course Computer Science #33,jhXCTbFnK8o,2017-10-25T22:11:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computing', 'computers', 'crash course computer science', 'compsci', 'cryptography', 'codebreaking', 'enigma', 'allan turing', 'encryption', 'decryption', 'cipher', 'des', 'res', 'key exchange', 'https', 'diffie-hellman', 'private key', 'rsa', 'public key']",790478,17138,337,PT12M33S,true
Politics: Crash Course Sociology #30,TCs_hyI15R8,2017-10-23T19:01:54Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'politics', 'authority', 'power', 'theories of power']",316039,5407,284,PT10M13S,true
"Ma'ui, Oceania's Hero: Crash Course World Mythology #31",eBB3RKazIj8,2017-10-22T22:40:30Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', ""Ma'ui"", 'Oceania', 'Moana', 'New Zealand', 'Maui', 'Hawaii', 'Polynesia', 'Micronesia', 'herakles', 'hercules', 'animal', 'eel', 'canoe', 'australia', 'new guinea', 'Fiji', 'hero', 'heroism', 'myth', 'mythology', 'mythography', 'hina of the fire', 'skillful']",900981,17371,944,PT13M24S,true
The Cinematographer: Crash Course Film Production with Lily Gladstone #8,vR_l1vTfaNk,2017-10-19T20:56:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'cinematography', 'cinematographer', 'movies', 'filmmaking', 'film', 'film history', 'film production', 'lily gladstone', 'crash course film', 'production', 'making movies', 'camera', 'golden globe winners', 'golden glovbes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",258739,6975,171,PT8M47S,true
Hackers & Cyber Attacks: Crash Course Computer Science #32,_GzE99AmAQU,2017-10-18T21:13:47Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computers', 'computing', 'compsci', 'hackers', 'hacking', 'white hat', 'black hat', 'cyber attack', 'cybercrime', 'social engineering', 'phishing', 'trojan horse', 'malware', 'ransomware', 'exploit', 'bug', 'buffer overflow', 'botnet', 'worms', 'ddos', 'distributed denial of service', 'cyberwarfare']",582398,11189,384,PT11M53S,true
Changes to our Patreon,JeOimlgs5tQ,2017-10-16T22:31:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",184538,9643,619,PT2M43S,true
Economic Systems & the Labor Market: Crash Course Sociology #29,wslCc0Di978,2017-10-16T16:20:31Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'labor markets', 'economic systems', 'economic models', 'economic sectors']",257046,3995,282,PT10M19S,true
Herakles. Or Hercules. A Problematic Hero: Crash Course World Mythology #30,R0qkSTvRQa8,2017-10-14T15:59:10Z,"['Hercules', 'Herakles', 'Zeus', 'Hera', 'Crashcourse', 'Myth', 'crash course', 'mythology', 'world', 'Greek', 'Roman', 'Mount Olympus', 'gods', 'Olympians', 'pantheon', 'hero', 'heroics', 'Nemean Lion', 'Hydra', 'Lernean', 'Stymphalian Birds']",687395,12603,531,PT12M52S,true
The Director: Crash Course Film Production with Lily Gladstone #7,7lIpcJVbbSA,2017-10-12T21:31:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'directing', 'production', 'david mamet', 'how to direct actors', 'acting', 'line reading', 'lily gladstone', 'director', 'judith weston', 'result oriented directing', 'sydney lumet', 'mike leigh', 'directing actors', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",274641,8010,154,PT8M44S,true
Cybersecurity: Crash Course Computer Science #31,bPVaOlJ6ln0,2017-10-11T21:37:43Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computing', 'computers', 'crash course computer science', 'compsci', 'computation', 'cybersecurity', 'choosing good passwords', 'passwords. hacking', 'def con', 'denial of service attack', 'ddos', 'threat model', 'attack vector', 'bieber', 'brute force attack', 'bonnet', 'biometrics', 'finger print scanner', 'iris scanner', 'access control', 'read permission', 'write permission', 'malware', 'security kernel', 'virtual machines']",923009,16514,463,PT12M30S,true
Exercise: Crash Course Study Skills #10,SQONLdb1gow,2017-10-10T21:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'study skills', 'thomas frank', 'learning', 'college', 'exercise']",263129,6739,247,PT10M26S,true
Theories of Global Stratification: Crash Course Sociology #28,b350ljkYWrU,2017-10-09T22:18:35Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'stratification', 'global poverty', 'modernization theory', 'dependancy theory', 'colonialism', 'neocolonialism']",288565,4681,295,PT11M48S,true
The Mwindo Epic: Crash Course World Mythology #29,Kcfww2-y2K8,2017-10-07T17:26:07Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'myth', 'mythology', 'mwindo', 'epic', 'Africa', 'Congo', 'story', 'hero', 'heroism', 'heaven', 'Mike Rugnetta', 'mythography', 'banana', 'beer', 'paste', 'djembe', 'drum']",429386,8491,383,PT12M42S,true
Producers: Crash Course Film Production with Lily Gladstone #6,zU_1ClPIOAg,2017-10-05T21:21:31Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film production', 'producing', 'producers', 'crash course film', 'executive producer', 'associate producer', 'co producer', 'assistant producer', 'line producer', 'what is a producer', 'what do producers do', 'lily gladstone', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",247162,6476,156,PT8M42S,true
The World Wide Web: Crash Course Computer Science #30,guvsH5OFizE,2017-10-04T21:43:31Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computing', 'computers', 'world wide web', 'web', 'internet', 'computer science', 'compsci', 'hyperlinks', 'webpage', 'html', 'vannevar bush', 'web browser', 'hypertext', 'http', '404 error', 'css', 'javascript', 'tim berbers-lee', 'url', 'cern', 'mosaic', 'internet explorer', 'mozilla', 'netscape', 'amazon', 'eBay', 'google', 'yahoo', 'web crawler', 'net neutrality']",536270,10583,343,PT11M37S,true
Papers & Essays: Crash Course Study Skills #9,KlgR1q3UQZE,2017-10-03T21:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",733827,20826,382,PT9M,true
Global Stratification & Poverty: Crash Course Sociology #27,6rts_PWIVTU,2017-10-02T20:11:43Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",294387,4796,358,PT10M20S,true
"Galahad, Perceval, and the Holy Grail: Crash Course World Mythology #28",Ik3Y4Oq6TwU,2017-09-29T17:10:17Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Arthur', 'Galahad', 'Perceval', 'Percival', 'Lancelot', 'Camelot', 'Avalon', 'Holy Grail', 'Jesus', 'hero', 'heroism', 'knight', 'knights', 'roundtable', 'round table', 'England', 'Britain', 'Cornwall', 'quest', 'heaven', 'God', 'god', 'chalice', 'Bors', 'hero’s journey', 'Mike Rugnetta', 'myth', 'mythology', 'mythography']",687678,13364,732,PT13M32S,true
Sound Production: Crash Course Film Production with Lily Gladstone #5,sgiZb8jJgF8,2017-09-28T21:05:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sound', 'film', 'movies', 'film production', 'sound production', 'movie sound', 'sound recording', 'omni', 'cardioid', 'lobar', 'boom mic', 'shotgun mic', 'mic patterns', 'lily gladstone', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",238094,5630,159,PT10M6S,true
Test Anxiety: Crash Course Study Skills #8,t-9cqaRJMP4,2017-09-26T21:00:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'studying', 'learning', 'tests', 'exam', 'test prep', 'exam prep', 'school', 'thomas frank', 'collegeinfogeek']",540798,11150,280,PT8M50S,true
Social Mobility: Crash Course Sociology #26,GjuV-XdYHhA,2017-09-25T20:01:10Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'social science', 'sociology', 'social mobility', 'stratification', 'income', 'class', 'income distribution', 'society', 'absolute mobility', 'relative mobility']",341170,5524,336,PT9M2S,true
Rama and the Ramayana: Crash Course World Mythology #27,qsuqbPda5uo,2017-09-22T18:00:03Z,"['John Green Hank Green vlogbrothers Crash Course crashcourse education Rama', 'Ramayana', 'Sita', 'Vishramita', 'India', 'Hindu', 'Hindi', 'Shiva', 'bow', 'Hinduism', 'Sanskrit', 'myth', 'mythology', 'Mike Rugnetta', 'forest', 'legend', 'epic', 'adventure', 'Virada', 'hermitage']",1447464,22020,3120,PT13M25S,true
Dissecting The Camera: Crash Course Film Production with Lily Gladstone #4,ivCBfJ1v_Qw,2017-09-21T19:59:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film production', 'camera', 'movie cameras', 'video cameras', 'making movies', 'video production', 'ISO', 'aperture', 'f stop', 'shutter speed', 'iris', 'lily gladstone', 'cinematographer', 'camera department', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",220624,5610,145,PT9M6S,true
The Internet: Crash Course Computer Science #29,AEaKrq3SpW8,2017-09-20T21:47:22Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computing', 'computers', 'computer science', 'compsci', 'LAN', 'WAN', 'Internet', 'packet', 'TCP', 'IP', 'TCP/IP', 'UDP', 'IP address', 'ISP', 'Internet Service Provider', 'checksum', 'domains', 'domain name', 'DNS', 'domain name system', 'subdomains', 'open system interconnection model', 'OSI model', 'world wide web', 'transmission control protocol', 'internet protocol', 'user datagram protocol', 'port number']",744980,14726,403,PT11M58S,true
Studying for Exams: Crash Course Study Skills #7,mLhwdITTrfE,2017-09-19T21:00:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'studying', 'study', 'test prep', 'exam prep', 'learning', 'thomas frank', 'collegeinfogeek', 'cramming']",797680,18743,516,PT8M59S,true
The Impacts of Social Class: Crash Course Sociology #25,0a21mndoORE,2017-09-18T19:58:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'social class', 'inequality', 'social stratification', 'values', 'beliefs', 'socialization']",496116,7321,474,PT9M24S,true
Computer Networks: Crash Course Computer Science #28,3QhU9jd03a0,2017-09-13T20:55:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computing', 'computers', 'crash course computer science', 'compsci', 'networks', 'networking', 'telecommunications', 'world wide web', 'internet', 'LAN', 'ethernet', 'MAC address', 'WiFi', 'CSMA', 'bandwidth', 'switch', 'collision domain', 'message switching', 'router', 'packet switching', 'IP address', 'arpanet', 'TCP/IP', 'intent of things', 'iot']",1328726,24498,408,PT12M20S,true
Procrastination: Crash Course Study Skills #6,x2y_SLOvOvw,2017-09-12T21:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'studying', 'learning', 'study tips', 'procrastination', 'motivation', 'gamification']",874833,19209,704,PT10M27S,true
Social Class & Poverty in the US: Crash Course Sociology #24,c8PEv5SV4sU,2017-09-11T20:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'nicole sweeney', 'social class', 'class', 'poverty', 'stratification']",467047,6394,425,PT9M24S,true
The Epic of Gilgamesh: Crash Course World Mythology #26,sWppk7-Mti4,2017-09-08T21:09:48Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'myth', 'mythology', 'Gilgamesh', 'Mike Rugnetta', 'Enkidu', 'Mesopotamia', 'Sumer', 'cunieform', 'Sumeria', 'Sumerian', 'tablet', 'ancient', 'Fertile Crescent', 'Humbaba', 'Ishtar']",2789523,48366,2257,PT13M46S,true
The Filmmaker's Army: Crash Course Film Production with Lily Gladstone #3,TpAHZJc5In0,2017-09-07T21:33:47Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film crew', 'production team', 'film production', 'making movies', 'hair and makeup', 'special effects', 'script supervisor', 'scripty', 'production assistant', 'location', 'location scout', 'production department', 'lily gladstone', 'sound department', 'camera department', 'lighting department', 'g and e', 'grip and electric', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",294429,8118,290,PT9M57S,true
3D Graphics: Crash Course Computer Science #27,TEAtmCYYKZA,2017-09-06T22:19:23Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computing', 'computers', 'crash course computer science', 'compsci', 'computation', 'graphics', '3d graphics', 'wireframe', 'rendering', 'projection', 'polygons', 'mesh', 'polygon count', 'scanline rendering', 'antialiasing', 'painter’s algorithm', 'z-buffer', 'z-fighting', 'glitches', 'back-face culling', 'shading', 'lighting', 'texture', 'teapot', 'texture mapping', 'gpu', 'graphics card']",475524,14401,448,PT12M41S,true
Focus & Concentration: Crash Course Study Skills #5,L_2JaFnkZ4o,2017-09-05T21:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'thomas frank', 'studying', 'study skills', 'learning', 'focus', 'concentration', 'test prep', 'distractions']",655015,15375,464,PT10M13S,true
The Hero's Journey and the Monomyth: Crash Course World Mythology #25,XevCvCLdKCU,2017-09-02T17:47:35Z,"['Crash Course', 'myth', 'mythology', 'mythography', 'Mike Rugnetta', 'Hank Green', 'John Green', 'Joseph Campbell', ""Hero's Journey"", 'Monomyth', 'hero', 'heroes', 'thoth', 'han solo', 'achilles', 'superhero', 'role model', 'protagonist', 'masculine', 'heroine', 'aboriginal', 'pleiades', 'theory', 'theories', 'journey', 'adventure', 'safety', 'danger', 'gender', 'hercules', 'society', 'social order', 'wisdom', 'Freud', 'Jung', 'Mother', 'Father', 'atonement', 'psyche', 'patterns', 'magic', 'magical aid', 'Bhudda', 'destiny', 'supernatural', 'threshold', 'Men in Black', 'Star Wars', 'Lord of the Rings']",792057,13994,607,PT13M20S,false
Pitching and Pre-Production: Crash Course Film Production with Lily Gladstone #2,JE53JL60ihc,2017-08-31T22:10:51Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film production', 'preproduction', 'pitching', 'how to pitch a movie', 'making movies', 'lily gladstone', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",389000,10131,213,PT8M16S,true
Graphical User Interfaces: Crash Course Computer Science #26,XIGSJshYb90,2017-08-30T21:09:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computers', 'computer science', 'graphical user interface', 'macintosh', 'apple', 'xerox', 'alto', 'douglas englebart', 'mother of all demos', 'xerox parc', 'wimp', 'interface', 'gui', 'wysiwyg', 'ibm pc', 'apple lisa', 'windows', 'microsoft', 'windows 95', 'microsoft bob']",440577,9007,306,PT12M59S,true
Planning & Organization: Crash Course Study Skills #4,0AKAuRby7n8,2017-08-29T21:01:39Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",997390,16913,328,PT9M26S,true
Crash Course Sociology Outtakes #1,4jHwOavsT7A,2017-08-28T21:55:46Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'bloopers', 'outtakes']",32254,837,60,PT5M54S,false
Ragnarok: Crash Course World Mythology #24,yBG10jlo9X0,2017-08-26T12:01:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Norse', 'Myth', 'mythology', 'thor', 'loki', 'odin', 'neil gaiman', 'Baldr', 'Fenrir', 'Ragnarok', 'Christian', 'Fire', 'Earthquake', 'Apocalypse', 'End of the World', 'Hindu', 'India', 'war', 'heavy metal', 'dwarves']",2126745,35889,2354,PT12M20S,true
Screenplays: Crash Course Film Production with Lily Gladstone #1,TARsoxST0tQ,2017-08-24T20:24:57Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film production', 'production', 'screenplay', 'lily gladstone', 'movies', 'movie', 'making movies', 'writing', 'writing movies', 'three act structure', 'structure', ""hero's journey"", 'joseph campbell', 'story', 'conflict', 'external conflict', 'internal conflict', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",713457,21834,585,PT9M19S,true
The Personal Computer Revolution: Crash Course Computer Science #25,M5BZou6C01w,2017-08-23T21:08:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'personal computers', 'pc', 'computing', 'computers', 'altair', 'ibm', 'apple', 'tandy', 'basic', 'steve jobs', 'steve wozniak', 'bill gates', 'commodore', 'DOS', 'open architecture', 'close architecture', 'ibm compatible', 'macintosh', 'paul allen', 'microcomputer', 'kenback-1', 'mcm/70']",309272,6143,227,PT10M15S,true
Memory: Crash Course Study Skills #3,SZbdK9e9bxs,2017-08-22T21:06:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'studying', 'study skills', 'thomas frank', 'learning', 'collegeinfogeek', 'test prep', 'exam prep', 'school', 'psychology']",815285,19475,458,PT10M52S,true
Social Stratification in the US: Crash Course Sociology #23,DeiHz5tzlws,2017-08-21T20:00:14Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'social sciences', 'sociology', 'stratification', 'class', 'inequality', 'wealth', 'income', 'census']",303421,4310,333,PT9M34S,true
The Apocalyspe: Crash Course World Mythology #23,FyZFoa7Vu1o,2017-08-18T21:49:41Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Myth', 'mythology', 'mythography', 'mike rugnetta', 'Isaiah', 'Zechariah', 'Torah', 'Bible', 'Judaism', 'Jerusalem', 'Israel', 'Mount Olive', 'Beast', 'beasts', 'Apocalypse', 'final battle', 'good', 'evil', 'angels', 'horsemen', 'destruction', 'lord', 'god', 'gods', 'deity', 'tumult', 'heaven', 'hell', 'faith', 'ahura mazda', 'saoshyant', 'zoroaster']",870991,14262,1270,PT12M3S,true
Crash Course Film Production with Lily Gladstone Preview,wZrpxf2ebDM,2017-08-17T20:31:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'lily gladstone', 'crash course film', 'film', 'film production', 'actor', 'making movies', 'behind the scenes', 'movies', 'how to make movies', 'making of', 'golden globe winners', 'golden globes', 'golden globes 2024', 'lily gladstone interview', 'how to write a screenplay']",241567,6039,312,PT1M50S,true
The Cold War and Consumerism: Crash Course Computer Science #24,m8i38Yq1wX4,2017-08-16T21:54:30Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computer science', 'crash course computer science', 'compsci', 'cold war', 'consumerism', 'eniac', 'univac', 'member', 'vannevar bush', 'national science foundation', 'nsf', 'japan', 'transistor radio', 'sputnik', 'space race', 'nasa', 'apollo', 'apollo guidance computer', 'integrated circuits', 'minuteman', 'polaris', 'supercomputers', 'cdc', 'cray', 'ibm', 'sharp', 'casio', 'sony', 'busicom', 'pong', 'altair', 'atari']",280797,6051,235,PT11M19S,true
Reading Assignments: Crash Course Study Skills #2,WAIUkjsZ5xQ,2017-08-15T21:04:33Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'learning', 'school', 'studying', 'reading', 'speed reading', 'thomas frank']",912335,20869,516,PT9M54S,true
Why is there Social Stratification?: Crash Course Sociology #22,RtxtI5IGrfw,2017-08-14T20:02:10Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'stratification', 'karl marx', 'max weber', 'conspicuous consumption', 'ideology', 'functionalism', 'conflict theory', 'symbolic interactionism', 'social class', 'socioeconomic status']",381502,6101,0,PT10M24S,true
"Coyote and Raven, American Tricksters: Crash Course World Mythology #22",eAKHGe6x8n8,2017-08-12T19:14:15Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mike Rugnetta', 'Myth', 'mythology', 'tricksters', 'native american', 'tribes', 'coyote', 'raven', 'animals', 'scavengers', 'trickster', 'devious', 'feces', 'pink eye', 'chilkat', 'Pacific Northwest', 'personification', 'creation', 'mythograph', 'mthological', 'gods', 'monsters', 'thoth', 'test', 'exam', 'study', 'learn', 'teacher', 'student', 'rosehips']",647539,11754,478,PT12M33S,true
Outtakes: Crash Course Film History,f-nuAvmWaq4,2017-08-10T20:26:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",45367,1231,92,PT5M41S,true
Screens & 2D Graphics: Crash Course Computer Science #23,7Jr0SFMQ4Rs,2017-08-09T22:15:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computing', 'computers', 'crash course computer science', 'compsci', 'computation', 'graphics', 'monitor', 'screens', 'sketchpad', 'ivan sutherland', 'cad', 'spacewar!', 'crt', 'cathode ray tubes', 'raster scanning', 'pixels', 'vector scanning', 'liquid crystal displays', 'lcd', 'rom', 'character generator', 'ascii art', 'ibm cp437', 'vectrex', 'light pen', 'gui']",343822,7764,232,PT11M32S,true
Taking Notes: Crash Course Study Skills #1,E7CwqNHn_Ns,2017-08-08T21:26:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Thomas Frank', 'collegeinfogeek', 'studying', 'school', 'learning', 'note taking', 'notes', 'study skills']",3048515,75355,1946,PT8M51S,true
Social Stratification: Crash Course Sociology #21,SlkIKCMt-Fs,2017-08-07T20:00:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'stratification', 'class', 'caste', 'social hierarchy', 'social mobility']",974845,12818,451,PT10M42S,true
Hermes and Loki and Tricksters Part 2: Crash Course World Mythology #21,udj1FReC2TI,2017-08-06T23:40:57Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Hermes', 'Apollo', 'cattle', 'lyre', 'tortoise', 'Zues', 'Greece', 'Greek', 'Norse', 'Loki', 'Myth', 'Mythology', 'siff', 'Thor', 'gullinbursti', 'Leeming', 'Mike Rugnetta', 'Odin', 'Brakk', 'dwarves', 'Anansi']",771101,14712,603,PT12M,true
Experimental and Documentary Films: Crash Course Film History #16,cCY-4NxXCU8,2017-08-03T20:41:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'films', 'movies', 'crash course film', 'film history', 'documentary', 'experimental', 'doc', 'docs', 'dada', 'non-narrative film', 'cinema pur', 'cinema verite', 'expressionist']",229727,5927,395,PT10M21S,true
Keyboards & Command Line Interfaces: Crash Course Computer Science #22,4RPtJ9UyHS0,2017-08-02T21:12:45Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computers', 'computer science', 'computing', 'keyboards', 'command line', 'command line interface', 'terminal', 'zork', 'muds', 'screens', 'teletype', 'typewriter', 'qwerty', 'adventure', 'programming']",391426,8246,311,PT11M24S,true
Crash Course Study Skills Preview,IhuwS5ZLwKY,2017-08-01T21:04:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",989960,18643,1036,PT1M40S,true
Crime: Crash Course Sociology #20,zBodqwAlW3A,2017-07-31T20:00:40Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'social sciences', 'crime', 'criminology', 'uniform crime report', 'FBI', 'criminal justice', 'mass incarceration', 'arrest rate']",597745,8940,390,PT11M31S,true
Outtakes #2: Crash Course World Mythology,AVFrgncE7CI,2017-07-28T22:06:46Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mike Rugnetta', 'mythology', 'myth']",55229,1529,70,PT3M33S,false
World Cinema - Part 2: Crash Course Film History #15,qfu0lbsIGSs,2017-07-27T20:28:20Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",162802,3780,269,PT9M54S,true
Compression: Crash Course Computer Science #21,OtDxDvCpPL4,2017-07-26T21:25:04Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'compression', 'jpeg', 'jpg', 'lossless', 'lossy', 'mp3', 'mpeg-4', 'flac', 'wav', 'compressed', 'huffman tree', 'perceptual coding', 'psychophysics', 'video compression', 'temporal redundancy', 'inter-frame similarity', 'bitmap', 'attachments', 'txt', 'music', 'pixels', 'noodle the schnoodle']",504694,13179,320,PT12M48S,true
Theory & Deviance: Crash Course Sociology #19,06IS_X7hWWI,2017-07-24T20:00:20Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social sciences', 'deviance', 'crime', 'structural functionalism', 'functionalism', 'symbolic interactionism', 'conflict theory', 'containment theory']",653308,8773,270,PT9M46S,true
Tricksters: An Introduction: Crash Course World Mythology #20,RW1ChiWyiZQ,2017-07-21T20:57:45Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'mythology', 'myth', 'mythography', 'Anansi', 'African', 'West Africa', 'dwarf', 'rain', 'Hercules', 'Atlas', 'Zeus', 'Labors of Hercules', 'Trickster', 'Trick', 'Loki', 'story', 'tale', 'religion', 'religious', 'disharmony']",639425,12522,650,PT10M10S,true
World Cinema - Part 1: Crash Course Film History #14,mpQrcxfNl-o,2017-07-20T22:42:41Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film history', 'world cinema', 'asian film', 'asian movies', 'crash course film', 'japanese film', 'chinese film', 'indian film', 'bollywood']",240178,5183,348,PT10M16S,true
Outtakes #2: Crash Course Computer Science,hry3g8i1d0E,2017-07-19T21:09:38Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'comp sci', 'computer science', 'bloopers', 'outtakes', 'carrie anne philbin', 'computers', 'compsci']",36362,884,84,PT3M39S,true
Deviance: Crash Course Sociology #18,BGq9zW9w3Fw,2017-07-17T19:22:47Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social sciences', 'deviance', 'crime', 'punishment', 'social control', 'cointainment theory', 'criminality', 'criminology']",829058,10186,360,PT9M6S,true
The Dying God: Crash Course World Mythology #19,iW7H1KfSJ8s,2017-07-14T20:38:44Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'mike rugnetta', 'mythology', 'myth', 'god', 'archetype', 'dying god', 'immortal', 'greek and roman', 'hellenistic', 'Egypt', 'deity', 'pantheon', 'savior', 'reborn', 'rebirth', 'regeneration', 'Jesus', 'Christ', 'story', 'tale', 'Adonis', 'Venus', 'Aphrodite', 'Adonai', 'Adonais', 'Myrrh', 'Myrrha', 'Ovid', 'metamorphoses', 'Cupid', 'Corn Mother', 'corn', 'Odin', 'Baldr', 'Loki', 'Hel', 'Norse']",748327,14664,663,PT10M44S,true
Home Video: Crash Course Film History #13,VfJ-6nQAmtk,2017-07-13T21:27:16Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course film', 'film history', 'home video', 'streaming history', 'streaming services', 'b-movies', 'betamax', 'vhs', 'vcr', 'laserdisc', 'blockbuster', 'hollywood video', 'blockbuster video']",228857,5394,354,PT10M19S,true
Files & File Systems: Crash Course Computer Science #20,KN8YgJnShPM,2017-07-12T22:07:58Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computer', 'computer science', 'compsci', 'file formats', 'file systems', 'txt', 'wave', 'wav', 'bitmap', 'bmp', 'root directory', 'file path', 'defrag', 'defragmentation', 'magnetic tape', 'fragmentation']",711318,15744,416,PT12M3S,true
Why Early Globalization Matters: Crash Course Big History #206,1esRyRV8H2M,2017-07-12T16:42:45Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'global', 'globalization', 'connection', 'collective learning', 'world', 'Europe', 'Americas', 'Australia', 'Oceania', 'Print', 'printing', 'potato', 'potatoes', 'plague', 'bubonic', 'disease', 'siberia', 'migration', 'gutenberg', 'china', 'india', 'isolation', 'agriculture', 'columbus']",231366,4785,397,PT12M17S,true
Formal Organizations: Crash Course Sociology #17,YDuBh7VbGgU,2017-07-10T20:00:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social sciences', 'organizations', 'bureaucracy', 'organizational environment', 'rationalization', 'management']",312330,4448,148,PT10M8S,true
American Floods: Crash Course World Mythology #18,GrTXHeSHGSE,2017-07-09T17:32:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'myth', 'mythology', 'Incan', 'Inca', 'Aztec', 'Maya', 'Mayan', 'South America', 'Central America', 'Americas', 'story', 'tale', 'Mike Rugnetta', 'study', 'test', 'exam', 'religion', 'pre-columbian', 'Great one', 'Viracocha']",434392,8088,359,PT9M,true
Independent Cinema: Crash Course Film History #12,opQC45irmN8,2017-07-06T21:44:42Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film history', 'cinema', 'independent cinema', 'studios', 'film studios', 'french new wave', 'italian neo realism', 'realism', 'brethless', 'the 400 blows', 'star wars', 'raiders of the lost ark', 'jaws', 'spielberg', 'lucas']",294607,6405,264,PT10M30S,true
Memory & Storage: Crash Course Computer Science #19,TQCr9RV7twk,2017-07-05T22:38:41Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computers', 'computer science', 'memory', 'non-volatile memory', 'solid state memory', 'hdd', 'ssd', 'punch cards', 'sage', 'delay-line memory', 'magnetic drum', 'magnetic tape', 'floppy disk', 'cds', 'dvds', 'edvac', 'core memory']",844394,15867,405,PT12M17S,true
Social Groups: Crash Course Sociology #16,_wFZ5Dbj8DA,2017-07-03T20:02:37Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'social sciences', 'sociology', 'socialization', 'social groups', 'leadership', 'groupthink']",703998,9121,204,PT9M52S,true
Yu the Engineer and Flood Stories from China: Crash Course World Mythology #17,A90jB9WlvYY,2017-07-01T15:26:10Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'myth', 'mythology', 'world mythology', 'yu the great', 'yu', 'yu the engineer', 'China', 'Chinese', 'Sino', 'flood', 'deluge', 'Yangtze', 'River', 'Yellow', 'Wuziqi', 'innundate', 'floods', 'Thoth', 'Noah', 'Utnapishtim', 'East', 'pronunciation', 'Xi', 'Huang He', 'dragon', 'Yin Long', 'turtle', 'Hebo', 'He Bo', 'Xiangliu', 'Huai', 'Tushan-shi']",567984,9565,594,PT9M25S,true
The Golden Age of Hollywood: Crash Course Film History #11,6KfBNrHU_SY,2017-06-30T14:39:10Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film history', 'color film', 'color cinematography', 'aspect ratio', 'history of aspect ratio', 'movies', 'color movies', 'golden age of hollywood', 'hollywood', 'sound', 'sync sound']",421548,8136,234,PT9M56S,true
Operating Systems: Crash Course Computer Science #18,26QPDBe-NB8,2017-06-28T21:13:17Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computer science', 'computers', 'compsci', 'comp ski', 'operating systems', 'unix', 'linux', 'windows', 'microsoft', 'ms-dos', 'android', 'iOS', 'macOS', 'multics', 'atlas supervisor', 'bsod', 'peripherals', 'i/o', 'drivers', 'multitasking', 'virtual memory', 'protected memory', 'time-sharing', 'terminal', 'kernel panic', 'bell labs', 'personal computers']",1466567,26182,640,PT13M36S,true
Why Human Ancestry Matters: Crash Course Big History 205,atDL_KDHJ-c,2017-06-27T22:34:48Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'big history', 'ancestry', 'geneaology', 'human', 'humanity', 'homo sapiens', 'species', 'early humans', 'genes', 'genetic', 'diversity', 'mitochondrial', 'ancestor', 'Africa', 'Asia', 'Europe', 'Americas', 'Australia', 'hunter-gatherer', 'forage', 'forager', 'thought bubble', 'mount Toba', 'gene pool', 'relatives', 'population']",237659,6855,841,PT10M27S,true
Social Interaction & Performance: Crash Course Sociology #15,UUukBV82P9A,2017-06-26T20:00:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social sciences', 'erving goffman', 'status', 'roles', 'socialization', 'society', 'performance', 'front stage', 'back stage', 'props', 'dramaturgical analysis']",653927,9806,335,PT11M38S,true
Integrated Circuits & Moore's Law: Crash Course Computer Science #17,6-tKOHICqrI,2017-06-21T21:49:49Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', ""moore's law"", 'integrated circuits', 'computers', 'computer science', 'compsci', 'comp sci', 'transistors', 'printed circuit boards', 'pcbs', 'ics', 'photolithography', 'photoresist', 'photomask', 'silicon', 'wafer', 'intel', 'microprocessor', 'vlsi', 'quantum tunneling']",619053,14047,345,PT13M50S,true
Why Human Evolution Matters: Crash Course Big History 204,AHz74SD0Nc0,2017-06-21T14:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'radom variation', 'adaptation', 'DNA', 'evolution', 'human evolution', 'evolutionary biology', 'homo sapiens', 'homo erectus', 'wisdom', 'collective learning', 'rolex', 'watch', 'tinkering', 'mutation', 'population', 'agriculture', 'industrial revolution', 'hunter gatherers', 'natural selection', 'skull', 'fossil', 'stone tools', 'communication', 'language', 'traits', 'dominant']",220953,4782,377,PT11M30S,true
Socialization: Crash Course Sociology #14,K-RvJQxqVQc,2017-06-20T16:23:56Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'social sciences', 'sociology', 'socialization', 'society', 'groups', 'family', 'schools']",1102810,12503,281,PT9M36S,true
Noah's Ark and Floods in the Ancient Near East: Crash Course World Mythology #16,VA3j5_vKQfc,2017-06-16T23:47:17Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'myth', 'mythology', 'flood', 'noah', 'ark', 'jehovah', 'yaweh', 'utnapishtim', 'god', 'gods', 'deluge', 'Ellil', 'enlil', 'mesopotamia', 'sumer', 'epic', 'gilgamesh', 'ea', 'sage', 'bible', 'near east', 'ancient', 'immortal', 'middle east', 'mediterranean', 'divinities', 'animals', 'babylonian', 'punishment', 'old testament', 'genesis', 'earth', 'Jesus', '40 days', 'sacrifice', 'rainbow', 'yima', 'persia', 'iran', 'ahura mazda', 'jupiter', 'pantheon', 'deucalion', 'pyrrha', 'boat']",688271,12339,1050,PT10M23S,true
Breaking the Silence: Crash Course Film History #10,lY_AilCb6gk,2017-06-15T22:21:08Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course film', 'film history', 'movies', 'silent movies', 'sound', 'movie sound', 'sound on film', 'tri ergon', 'talkies', 'warner bros', 'warner brothers', 'buster keaton', 'the jazz singer', 'phonofilms', 'vitaphone']",288778,6098,227,PT9M36S,true
Software Engineering: Crash Course Computer Science #16,O753uuutqH8,2017-06-14T23:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'software engineering', 'object oriented programming', 'computes', 'computer science', 'compsci', 'programming', 'software', 'alpha', 'beta', 'quality assurance', 'source control', 'repository', 'readme', 'integrated development environment', 'eclipse', 'microsoft visual studio', 'notepad', 'C++', 'C#', 'python', 'Java', 'Margaret Hamilton', 'objects', 'application programming interface', 'microsoft office']",1025342,20424,787,PT10M35S,true
Social Development: Crash Course Sociology #13,WbBm_YLwowc,2017-06-12T19:00:43Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'social sciences', 'sociology', 'social development', 'socialization', 'nature v nurture', 'nature vs nurture', 'development', 'society']",632564,8622,271,PT10M14S,true
Archetypes and Male Divinities: Crash Course World Mythology #15,ue2PPZnaaNc,2017-06-09T20:10:02Z,"['John Green', 'Hank Green', 'Crash Course', 'crashcourse', 'myth', 'mythology', 'mythography', 'god', 'gods', 'divinities', 'deities', 'divine', 'Thoth', 'father', 'son', 'judge', 'savior', 'salvation', 'sacrifice', 'sun', 'knowledge', 'guidance', 'sage', 'Jesus', 'Shaman', 'spirit', 'spirits', 'spiritual', 'real', 'supernatural', 'culture', 'cultural', 'hermes', 'hades', 'underworld', 'Anubis', 'mystical', 'trickster', 'loki', 'thor', 'odin', 'tyr', 'norse', 'baldur', 'lord of destruction', 'Osiris', 'Egypt', 'Greece', 'Roman', 'Rome', 'Greek', 'pluto', 'Mars', 'Ares', 'king', 'mahabratha', 'arjuna', 'Krishna', 'india', 'dharma', 'kshatrya']",612235,12224,692,PT11M46S,true
The Silent Era: Crash Course Film History #9,ROOV9tucra0,2017-06-08T21:31:15Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course film', 'film', 'film history', 'silent movies', 'silent films', 'movies', 'chaplin', 'charlie chaplin', 'studios', 'movie studios', 'fatty arbuckle', 'roscoe arbuckle', 'virginia rappe', 'the hays code', 'censorship']",342294,6822,200,PT9M16S,true
Alan Turing: Crash Course Computer Science #15,7TycxwFmdB0,2017-06-07T21:20:14Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computer science', 'computations', 'computers', 'alan turing', 'turing', 'turing test', 'turing machine', 'artificial intelligence', 'the bombe', 'nazi', 'enigma', 'world war II', 'halting problem', 'Bletchley park', 'captcha', 'turing award']",776639,16638,555,PT13M4S,true
Why the Evolutionary Epic Matters: Crash Course Big History #203,IiP2y20e8Xc,2017-06-06T19:32:49Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'microbes', 'mammals', 'biodiversity', 'evolution', 'mass extinction', 'ordovician', 'cretaceous', 'devonian', 'jurrasic', 'bacteria', 'photosynthesis', 'oxygen', 'oxygen holocaust', 'complexity', 'universe', 'fishing', 'hunting', 'oceans', 'predator', 'overhunting', 'overfishing', 'extinction', 'age of exploration', 'history', 'big history', 'Emily Graslie']",190395,4737,431,PT12M22S,true
How We Got Here: Crash Course Sociology #12,BsRSL3duSko,2017-06-05T20:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'social science', 'sociology', 'society', 'societal change', 'max weber', 'emile durkheim', 'karl marx', 'gerhard lenski', 'technological change']",491388,7791,313,PT11M1S,true
Fire and Buffalo Goddesses: Crash Course World Mythology #14,X8_uTpbrHQE,2017-06-02T22:20:45Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Myth', 'mythology', 'story', 'stories', 'goddess', 'goddesses', 'god', 'gods', 'deity', 'deus', 'pantheon', 'mythography', 'Mike Rugnetta', 'Hawaii', 'Pe-le', 'Pele', 'Hawaiian', 'Island', 'Kilauea', 'volcano', 'lava', 'volcanism', 'flow', 'grove', 'thought bubble', 'Native Americans', 'Sioux', 'Lakota', 'Dakota', 'Buffalo people', 'Indians', 'natives', 'White Buffalo', 'peace pipe']",592055,11996,581,PT12M27S,true
Soviet Montage: Crash Course Film History #8,-RtBAa4YCgo,2017-06-01T23:18:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film history', 'montage theory', 'soviet montage', 'russian film', 'russian film history', 'sergei eisenstein', 'the kuleshov effect', 'kuleshov', 'dziga vertov', 'battleship potempkin', 'youth of maxim', 'man with a movie camera', 'crash course', 'crash course film']",500235,11836,459,PT12M29S,true
Data Structures: Crash Course Computer Science #14,DuDz6B4cqVc,2017-05-31T22:00:50Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computer science', 'computers', 'compsci', 'data structures', 'arrays', 'vectors', 'index', 'variables', 'strings', 'characters', 'matrix', 'struct', 'pointer', 'node', 'fifo', 'queue', 'stacks', 'trees', 'lifo', 'root', 'children node', 'parent node', 'red-black trees', 'heaps']",969754,19471,545,PT10M7S,true
Why Star Stuff Matters: Crash Course Big History 202,Vyq3YYFlzpQ,2017-05-31T18:37:56Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Big History', 'Big history project', 'chemistry', 'stellar', 'star', 'stars', 'star formation', 'cosmology', 'humanity', 'big bang', 'sun', 'chemical', 'elements', 'little big history', 'carbon', 'bonds', 'bond', 'nucleus', 'proton', 'neutron', 'radiation', 'oxygen', 'carbon dioxide', 'hadean', 'Earth', 'atmosphere', 'crust', 'stable', 'molecular', 'oil', 'natural gas']",174789,3441,232,PT11M3S,true
Great Goddesses: Crash Course World Mythology #13,cpM-pfh-WWo,2017-05-28T20:49:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Myth', 'mythology', 'Greece', 'Japan', 'Ireland', 'Norse', 'goddess', 'gods', 'god', 'deity', 'deities', 'life', 'death', 'nimah', 'oto-hime', 'ancient', 'Mike Rugnetta', 'Venus', 'willendorf', 'fates', 'norn']",736984,14810,800,PT11M11S,true
German Expressionism: Crash Course Film History #7,K6XDyth0qxc,2017-05-26T00:00:35Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film history', 'german film', 'german expressionism', 'fritz lang', 'earnst lubich', 'fw murnau', 'nosferatu', 'metropolis', 'thecabinetofdrcaligari', 'robert wiene']",493406,11932,468,PT10M26S,true
Intro to Algorithms: Crash Course Computer Science #13,rL8X2mlNHPM,2017-05-24T21:58:07Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'game of thrones', 'google maps', 'computer science', 'algorithms', 'algorithm', 'sorting', 'array', 'sort', 'programming', 'software', 'computation', 'selection sort', 'big O', 'graph search', 'edsger dijkstra', 'Muḥammad ibn Mūsā al-Khwārizmī']",1719216,32566,782,PT11M44S,true
Why Cosmic Evolution Matters: Crash Course Big History #201,L-T2SSsMREM,2017-05-24T15:18:19Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'universe', 'history', 'big history', 'gravity', 'physics', 'big bang', 'cosmic', 'evolution', 'cosmos', 'life', 'everything', 'human history', 'chemistry', 'planet', 'planetoids', 'dark matter', 'human', 'humanity', 'cosmic inflation', 'energy', 'light year', 'matter', 'wrinkles', 'eternal inflation', 'big bounce', 'big rip', 'multiverse', 'fundamental laws', 'cosmic bubble']",292021,6740,430,PT11M,true
"Cultures, Subcultures, and Countercultures: Crash Course Sociology #11",RV50AV7-Iwc,2017-05-22T20:00:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'social sciences', 'sociology', 'culture', 'anthropology', 'ethno-centrism', 'multi-culturalism', 'functionalism', 'strucal functionalism', 'conflict theory']",1341350,18885,634,PT9M40S,true
Theories of Myth: Crash Course World Mythology #12,blFaiB5kj6I,2017-05-22T00:36:57Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'myth', 'mythology', 'mike rugnetta', 'plato', 'story', 'stories', 'god', 'gods', 'religion', 'academy', 'mythography']",571470,11322,619,PT12M15S,true
The Birth of the Feature Film: Crash Course Film History #6,HaBmjhmKWTs,2017-05-18T20:59:24Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film history', 'craig benzine', 'feature films', 'birth of a nation', 'the birth of a nation', 'dw griffith', 'd.w. griffith', 'oscar micheaux', 'intollerance', 'broken blossoms']",332757,6502,339,PT10M10S,true
Programming Basics: Statements & Functions: Crash Course Computer Science #12,l26oaHV7D40,2017-05-17T20:59:23Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'programming', 'programming languages', 'conditional', 'statements', 'functions', 'control flow statements', 'if statement', 'else statement', 'while loop', 'for loop', 'modularizing', 'libraries', 'variables', 'grace hopper', 'harvard mark 1']",902948,15668,554,PT11M57S,true
"Symbols, Values & Norms: Crash Course Sociology #10",kGrVhM_Gi8k,2017-05-15T21:19:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social sciences', 'culture', 'symbols', 'values', 'beliefs', 'norms', 'sapir-whorf', 'flkways', 'mores', 'taboos', 'nicole sweeney']",1013054,12611,401,PT9M33S,true
African Pantheons and the Orishas: Crash Course World Mythology #11,J2se_zimj40,2017-05-12T23:34:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Benin', 'Togo', 'Yoruba', 'Nigeria', 'Orunmila', 'Ogun', 'god', 'gods', 'Orisha', 'Orishas', 'Ghana', 'Chameleon', 'powers', 'Myth', 'mythology', 'study', 'exam', 'world mythology', 'Africa', 'African', 'Vodou', 'Voodoo', 'Haiti', 'South America', 'Slavery', 'slave trade', 'west Africa', 'Mike Rugnetta']",1335152,31386,1797,PT11M10S,true
The Language of Film: Crash Course Film History #5,V7ZHd1xU2w8,2017-05-11T21:45:37Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'filmmaking', 'film history', 'movies', 'editing', 'film editing', 'edwin s porter', 'life of an american fireman', 'the great train robbery']",366872,7605,264,PT9M29S,true
The First Programming Languages: Crash Course Computer Science #11,RU1u-js7db8,2017-05-10T21:30:46Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computer science', 'compsci', 'programming', 'computer programming', 'coding', 'software', 'machine code', 'assembly code', 'pseudo-code', 'assembly', 'punch card', 'grace hopper', 'harvard mark i', 'A-0', 'compiler', 'fortran', 'cobol', 'python', 'pascal', 'c++', 'ruby', 'java', 'swift']",1060649,21043,664,PT11M52S,true
Max Weber & Modernity: Crash Course Sociology #9,69VF7mT4nRU,2017-05-08T20:53:14Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social sciences', 'modernity', 'bureaucracy', 'social stratification', 'max weber', 'erving goffman', 'talcott parsons', 'jurgen habermas']",944731,16244,584,PT10M17S,true
Crash Course World Mythology Outtakes 1,VydYtsPjo1E,2017-05-06T21:15:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Mike Rugnetta', 'Myth', 'mythology']",98337,2486,156,PT4M7S,false
Georges Melies - Master of Illusion: Crash Course Film History #4,L8is28gAOTc,2017-05-04T23:03:42Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'georges melies', 'melies', 'alice guy-blache', 'movies', 'film', 'film history', 'early film', 'silent film', 'thomas edison', 'lumiere brothers', 'animatographe', 'cameras', 'editing', 'film editing', 'movie magic', 'movie editing']",739189,11370,326,PT10M22S,true
Early Programming: Crash Course Computer Science #10,nwDq4adJwzM,2017-05-03T21:00:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Programming', 'plugboards', 'punch cards', 'punched paper tape', 'Neumann architecture', 'panel programming', 'switches', 'jacquard', 'loom', 'computers', 'computing', 'computer science', 'programming languages', 'history']",747544,13910,323,PT9M26S,true
Harriet Martineau & Gender Conflict Theory: Crash Course Sociology #8,Wg9FWxpZeJ8,2017-05-01T21:46:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social science', 'conflict theory', 'gender conflict theory', 'harriet martineau']",554335,13737,1686,PT9M2S,true
The Norse Pantheon: Crash Course World Mythology #10,CyU54gV_PWM,2017-04-30T22:18:55Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Loki', 'Thor', 'Odin', 'Tyr', 'Fenrir', 'ragnarok', 'Frigg', 'Freya', 'Freyr', 'Heimdall', 'Aesir', 'Vanir', 'Valhalla', 'Bragi', 'Midgard', 'Asgard', 'Jotunheim', 'god', 'goddess', 'myth', 'mythology', 'story']",1519472,26384,1786,PT12M45S,true
The Lumiere Brothers: Crash Course Film History #3,aFkSjdaqbyE,2017-04-27T22:47:40Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'lumiere brothers', 'august lumiere', 'louis lumiere', 'film projection', 'cinematographe', 'latham loop', 'woodville latham', 'craig benzine', 'wheezy waiter', 'film history', 'film theory']",442561,8551,228,PT9M31S,true
Advanced CPU Designs: Crash Course Computer Science #9,rtAlC5J1U40,2017-04-27T00:39:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'cpu', 'dual core', 'quad core', 'multi-core', 'flops', 'processor', 'dirty bit', 'superscalar', 'instruction pipelining', 'bus', 'branch prediction', 'supercomputer', 'cluster', 'cache hit', 'cache miss', 'intel', 'amd', 'crisis', 'sunway taihulight']",890749,20651,740,PT12M23S,true
Dubois & Race Conflict: Crash Course Sociology #7,-wny0OAz3g8,2017-04-24T20:53:36Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'race', 'race theory', 'race conflict', 'sociology', 'sociological principals', 'nicole sweeney', 'gender', 'gender theory', 'crash course sociology', 'web du bois', 'w.e.b. du bois', 'conflict theory']",713017,14127,1208,PT10M40S,true
The Greeks and Romans - Pantheons Part 3: Crash Course World Mythology #9,XNCQ9w59I7M,2017-04-22T19:54:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Myth', 'Mythology', 'Mike Rugnetta', 'Greek', 'Roman', 'Pantheon', 'god', 'gods', 'Zeus', 'Hera', 'Metis', 'Artemis', 'Hades', 'Demeter']",1153266,20225,1253,PT12M46S,true
The First Movie Camera: Crash Course Film History #2,pKSmcmueTbA,2017-04-20T21:24:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education']",545246,9443,338,PT9M26S,true
Crash Course Computer Science Outtakes,zMXuP0B1GZI,2017-04-19T20:59:56Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computer science', 'compsci', 'computers', 'carrie anne philbin']",59384,1748,130,PT5M9S,false
Karl Marx & Conflict Theory: Crash Course Sociology #6,gR3igiwaeyc,2017-04-17T21:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social sciences', 'conflict theory', 'karl marx', 'historical materialism', 'dialectical materialism']",2447446,47476,2642,PT11M19S,true
Indian Pantheons: Crash Course World Mythology #8,V_NJAJGCKD8,2017-04-14T23:41:47Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'mike rugnetta', 'pantheons', 'sanskrit', 'hinduism', 'brahman', 'vishnu', 'shiva', 'avatars', 'maharaja', 'devi', 'durga', 'emoji', 'mythology', 'myth', 'india']",1633058,30622,3890,PT12M31S,true
Movies are Magic: Crash Course Film History #1,vsnB4iBb78o,2017-04-14T01:09:38Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film history', 'film theory', 'eadweard muybridge', 'movies', 'craig benzine']",1021514,21974,962,PT9M44S,true
Instructions & Programs: Crash Course Computer Science #8,zltgXvg6r3k,2017-04-12T22:28:24Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'carrie anne philbin', 'computer science', 'comp sci', 'computer engineering', 'computer architecture', 'ap comp sci', 'opcode', 'cpu', 'memory', 'alu', 'ram', 'programming', 'hardware', 'software', 'core i7', 'intel 4004']",912721,17236,515,PT10M36S,true
#ILovePBS,4R7R-vmCHKQ,2017-04-11T17:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'pbs', 'public broadcasting', 'budget', 'funding', 'trump', 'nea', 'neh', 'pbs digital studios', 'federal budget', 'corporation of public broadcasting', 'cpb', 'the art assignment', 'its okay to be smart', 'physics girl']",102464,9227,821,PT3M35S,true
Émile Durkheim on Suicide & Society: Crash Course Sociology #5,IZfGGF-YYzY,2017-04-10T20:56:46Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social sciences', 'durkheim', 'Émile Durkheim', 'research', 'methodology']",1175274,20641,870,PT9M37S,true
Pantheons of the Ancient Mediterranean: Crash Course World Mythology #7,EcQ-6Zd1638,2017-04-07T21:17:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'mythology', 'myth', 'mike rugnetta', 'patheon', 'ancient sumer', 'ancient egypt', 'Osiris', 'Seth']",1259748,22422,1093,PT13M8S,true
Crash Course Film History Preview,avAALYc7jw8,2017-04-06T22:30:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'film', 'film history', 'craig benzine', 'wheezy waiter', 'movies']",685686,12577,1022,PT1M30S,true
The Central Processing Unit (CPU): Crash Course Computer Science #7,FZGugFqdr60,2017-04-05T21:56:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'cpu', 'central processing unit', 'clock', 'instructions', 'microarchitecture', 'instruction register', 'opcode', 'register', 'RAM', 'ALU', 'clock clock cycle', 'overclocking', 'underclocking', 'dynamic frequency scaling', 'intel 4004', 'processor']",1538682,28560,974,PT11M38S,true
Sociology Research Methods: Crash Course Sociology #4,QwhK-iEyXYA,2017-04-03T20:34:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social sciences', 'research', 'methodology', 'research methods', 'HUD']",1189679,15199,556,PT10M11S,true
Humans and Nature and Creation: Crash Course World Mythology #6,T6f1-nEjDdM,2017-04-01T00:20:33Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'myth', 'mythology', 'mike rugnetta', 'adam', 'eve', 'yahweh', 'jehovah', 'God', 'gods', 'native americans', 'iroquois']",946886,16515,1231,PT11M3S,true
Outtakes #4: Crash Course Physics,o-pucUekSq4,2017-03-30T21:07:28Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'outtakes', 'bloopers', 'mistakes', 'physics', 'shini somara']",47531,1173,156,PT5M42S,false
Registers and RAM: Crash Course Computer Science #6,fpnE6UAfbtU,2017-03-29T22:00:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'Ram', 'memory', 'registers', 'addresses', 'dram', 'sram', 'flash memory', 'nvram', 'random access memory', 'latches', 'bits', 'abstraction', 'logic', 'computer engineering', 'computers', 'electronics', 'gates', 'and-or latch', 'gated latch', 'write enable', 'read enable']",2025452,44731,1229,PT12M17S,true
Sociology & the Scientific Method: Crash Course Sociology #3,ZIwyNIdgJBE,2017-03-27T20:47:23Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social sciences', 'research method', 'interpretive sociology', 'critical sociology', 'research', 'methodology', 'evidence', 'qualitative', 'quantitative']",1024602,14387,943,PT9M56S,true
Social Orders and Creation Stories: Crash Course World Mythology #5,PBbTkzakiM8,2017-03-25T16:44:38Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'myth', 'mythology', 'mythography', 'mythological', 'Genesis', 'bible', 'Mike Rugnetta', 'Adam and Eve', 'Adam', 'Eve', 'creation', 'rib', 'create', 'creator', 'Israel', 'Eden', 'Japan', 'Izanami', 'Izanagi', 'Shinto', 'Heaven', 'Pandora', 'Hermes', 'Olympus', 'fire', 'Zeus', 'Prometheus', 'hope', 'pandora’s box', 'god', 'gods', 'godly', 'punishment', 'man', 'woman', 'pain', 'childbirth']",994543,19330,1936,PT10M33S,true
Astrophysics and Cosmology: Crash Course Physics #46,VYxYuaDvdM0,2017-03-24T15:51:33Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'physics', 'cosmology', 'astronomy', 'astrophysics', 'light', 'light year', 'parsec', 'shini somara', 'crash course physics']",609147,15646,582,PT9M21S,true
How Computers Calculate - the ALU: Crash Course Computer Science #5,1I5ZMmrOfnA,2017-03-22T21:16:48Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'alu', 'arithmetic and logic unit', 'computers', 'computing', 'computer science', 'overflow', 'pacman', 'adder', 'ripple carry adder', 'computation', 'intel 74181', 'abstraction', 'binary', 'how computers calculate']",1893018,36277,1100,PT11M10S,true
Major Sociological Paradigms: Crash Course Sociology #2,DbTt_ySTjaY,2017-03-20T20:49:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'social sciences', 'sociology', 'theoretical paradigms', 'max weber', 'emile durkheim', 'karl marx', 'w. e. b. dubois', 'functionalism', 'structural functionalism', 'conflict theory', 'symbolic interactionism']",1948542,27005,1439,PT9M39S,true
Nuclear Physics: Crash Course Physics #45,lUhJL7o6_cA,2017-03-20T14:58:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'einstein', 'albert einstein', 'radiation', 'alpha waves', 'beta waves', 'gamma waves', 'nuclear physics', 'shini somara', 'physics', 'crash course physics']",894042,15932,577,PT10M24S,true
Earth Mothers and Rebellious Sons - Creation Part 3: Crash Course World Mythology #4,TlFVFRkEfwo,2017-03-17T21:37:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'myth', 'mythology', 'story', 'Gaia', 'Saturn', 'Uranos', 'Kronos', 'Cronos', 'Zeus', 'Hera', 'castration', 'ouranos', 'father', 'son', 'overthrow', 'primodrial water', 'creator', 'creation', 'enuma elish', 'odin', 'norse', 'Lahmu', 'Lahamu', 'midgard', 'asgard']",1143840,19308,1079,PT12M7S,true
Representing Numbers and Letters with Binary: Crash Course Computer Science #4,1GSjbWt0c9M,2017-03-15T21:23:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'binary', 'unicode', 'ascii', 'boolean', 'computers', 'computing', '8-bit', '32-bit', '64-bit', 'byte', 'megabyte', 'gigabyte', 'kilobyte', 'emoji', 'memory', 'interoperability', 'mojibake', 'true', 'false', 'computer science', 'adding binary', 'encoding schemes']",1837401,35093,1192,PT10M46S,true
What Is Sociology?: Crash Course Sociology #1,YnCJU6PaCio,2017-03-13T21:36:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social sciences', 'aguste comte', 'public policy']",3876580,69212,3531,PT9M42S,true
"Cosmic Sexy Time, Eggs, Seeds, and Water: Crash Course World Mythology #3",7fHDIiqLz9w,2017-03-11T15:24:49Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'myth', 'mythology', 'thoth', 'sex', 'sexual reproduction', 'cosmic', 'creation', 'universe', 'world', 'reproduction', 'latin', 'rome', 'greece', 'egypt', 'creator', 'seed', 'egg', 'cosmic egg', 'god', 'gods', 'mythography', 'Shu', 'Tefnut', 'Pangu', 'Phanku', 'China', 'Tao', 'Chronos', 'Bumba', 'Bantu', 'vomit']",1317315,23499,1384,PT12M22S,true
Quantum Mechanics - Part 2: Crash Course Physics #44,qO_W70VegbQ,2017-03-09T22:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'quantum', 'quantum mechanics', 'physics', 'math', 'probability']",483436,9205,454,PT9M8S,true
Boolean Logic & Logic Gates: Crash Course Computer Science #3,gI-qXk7XojA,2017-03-08T23:27:55Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'binary', 'logic', 'logic gates', 'and', 'not', 'or', 'circuits', 'computers', 'computer science', 'computation', 'computing', 'comp sci', 'boolean algebra', 'operations', 'true', 'false', 'logic table']",2760927,55527,1259,PT10M7S,true
Creation from the Void: Crash Course World Mythology #2,4eVFgfQ2694,2017-03-04T00:31:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'myth', 'mythology', 'mythography', 'story', 'stories', 'creation', 'void', 'god', 'gods', 'Ra', 'Jehovah', 'Yaweh', 'Sa', 'Kono', 'bible', 'Genesis', 'create', 'chaos', 'primordial', 'primal', 'ex nihilo', 'let there be light', 'light', 'darkness', 'wife', 'universe', 'world', 'Earth', 'puppies']",1960581,39656,3082,PT12M22S,true
Quantum Mechanics - Part 1: Crash Course Physics #43,7kb1VT0J3DE,2017-03-03T15:59:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'quantum mechanics', 'quantum', 'physics', 'light', 'what is light', 'partical physics', 'wave physics', 'shini somara']",2005097,33697,1284,PT8M45S,true
Electronic Computing: Crash Course Computer Science #2,LN0ucKNX0hc,2017-03-01T23:28:20Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computers', 'computation', 'computer science', 'electronic computers', 'eniac', 'colossus', 'history', 'hollerith machine', 'carrie anne philbin', 'tommy flowers', 'harvard mark 1', 'relay', 'triode', 'vacuum tube', 'transistor', 'grace hopper', 'Bletchley park', 'alan turing', 'bombe', 'enigma codes', 'sage', 'bell labs', 'silicon valley', 'intel', 'fairchild semiconductors']",2093997,37106,903,PT10M44S,true
Crash Course Sociology Preview,ylXVn-wh9eQ,2017-02-27T22:41:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'sociology', 'social sciences']",1288288,17190,1355,PT1M19S,true
What Is Myth? Crash Course World Mythology #1,HeX6CX5LEj0,2017-02-25T00:56:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'myth', 'mythology', 'mike', 'rugnetta', 'thoth', 'egypt', 'greece', 'persephone', 'demeter', 'homer', 'virgil']",2505175,56249,3792,PT13M2S,true
Special Relativity: Crash Course Physics #42,AInCqm5nCzw,2017-02-23T22:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'special relatively', 'relativity', 'physics', 'physics of relatively']",1182193,24167,1333,PT8M59S,true
Early Computing: Crash Course Computer Science #1,O5nskjZ_GoI,2017-02-22T22:00:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computers', 'computation', 'computer science', 'electronic age', 'history', 'Mesopotamia', 'Astrolabe', 'abacus', 'Hollerith machine', 'step reckoner', 'tabulating machine', 'Charles Babbage', 'ada Lovelace', 'Katherine Johnson', 'international business machines', 'ibm', 'range tables', 'difference engine', 'analytical engine', 'census', 'Herman Hollerith', 'punch cards']",3760445,72011,1773,PT11M53S,true
Outtakes #5: Crash Course Philosophy,H7bjqRYSIPo,2017-02-20T20:50:41Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'bloopers', 'outtakes', 'funny', 'goofs']",82718,2439,184,PT6M,false
Crash Course World Mythology Preview,iRCVcuA6yZQ,2017-02-17T21:38:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'myth', 'mythology', 'zeus', 'hera', 'odin', 'phan ku', 'creation', 'story', 'stories', 'foundational', 'foundation', 'apocalypse', 'ragnarok', 'end of the world', 'cosmic egg']",1794408,32163,2517,PT2M,true
Optical Instruments: Crash Course Physics #41,SddBPTcmqOk,2017-02-16T22:56:50Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'physics', 'crash course physics', 'optics', 'real image', 'lenses', 'lens', 'light', 'light waves', 'optical instruments', 'shini somara']",325837,4551,227,PT10M36S,true
Crash Course Computer Science Preview,tpIctyqH29Q,2017-02-15T20:00:36Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'computer science', 'computers', 'computing', 'programming', 'computation', 'computer engineering', 'electrical engineering', 'software', 'hardware', 'pbs digital studios', 'pbs', 'raspberry pi', 'arduino', 'bsod', 'internet', 'youtube', 'smart cars', 'artificial intelligence', 'geek gurl diaries', 'Carrie Anne Philbin']",3532589,57613,1996,PT2M45S,true
What Is a Good Life?: Crash Course Philosophy #46,Ra1Dmz-5HjU,2017-02-13T22:30:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'edu', 'philosophy', 'humanities', 'ethics', 'morality', 'life', 'value of life']",1275461,38674,2165,PT9M18S,true
Assisted Death & the Value of Life: Crash Course Philosophy #45,3IsloHmKvWA,2017-02-06T22:10:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'edu', 'philosophy', 'death', 'life', 'ethics', 'morality']",995920,26487,1952,PT9M54S,true
Spectra Interference: Crash Course Physics #40,-ob7foUzXaY,2017-02-02T22:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'physics', 'spectra', 'light', 'crash course physics', 'polarization', 'waves', 'particles', 'particle physics', 'shini somara']",243542,3438,166,PT8M25S,true
Poverty & Our Response to It: Crash Course Philosophy #44,D5sknLy7Smo,2017-01-30T22:34:12Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'morality', 'ethics', 'ethics of care', 'poverty', 'unicef']",778865,19972,1971,PT8M54S,true
Light Is Waves: Crash Course Physics #39,IRBfpBPELmE,2017-01-26T23:43:20Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'physics', 'science', 'ap science', 'ap physics', 'light', 'light waves', 'particles', 'physics of light', 'shini somara']",1074628,12299,600,PT9M45S,true
Family Obligations: Crash Course Philosophy #43,p7cOwQQDI7o,2017-01-23T22:49:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'crash course philosophy', 'philo', 'family', 'philosophy', 'psychology', 'parents', 'ethics']",847537,20498,1822,PT9M23S,true
Geometric Optics: Crash Course Physics #38,Oh4m8Ees-3Q,2017-01-19T22:00:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'physics', 'optics', 'geometry', 'geometric optics', 'crash course physics', 'shini somara', 'science']",797205,12129,424,PT9M40S,true
Non-Human Animals: Crash Course Philosophy #42,y3-BX-jN_Ac,2017-01-16T22:38:15Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'edu', 'humanities', 'philosophy', 'ethics', 'morality', 'vegetarian', 'vegan', 'peter singer', 'carl cohen']",1029219,30229,6659,PT9M47S,true
Maxwell's Equations: Crash Course Physics #37,K40lNL3KsJ4,2017-01-13T23:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'physics', 'electricity', 'magnetism', 'electric fields', 'magnetic fields', 'shini somara', 'crash course physics', ""maxwell's equations"", 'james maxwell']",751828,13078,654,PT10M49S,true
Discrimination: Crash Course Philosophy #41,RsldtV4jWA0,2017-01-10T21:35:46Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'edu', 'discrimination', 'ethics', 'morality']",865195,20622,0,PT9M7S,true
AC Circuits: Crash Course Physics #36,Jveer7vhjGo,2017-01-07T01:50:40Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'physics', 'crash course physics', 'circuits', 'ac circuits', 'alternating currents', 'direct currents', 'dc circuits', 'phase', 'shini somara']",529016,7774,530,PT10M7S,true
Outtakes #4: Crash Course Philosophy,RfcqcrkbvsU,2017-01-02T21:22:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'bloopers', 'outtakes', 'funny']",73999,2058,159,PT6M10S,true
Outtakes #3: Crash Course Games,wWRcBHL_Wc4,2016-12-23T21:07:48Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'outtakes', 'bloopers', 'andre meadows', 'games', 'video games', 'crash course games']",53218,903,74,PT4M59S,true
How Power Gets to Your Home: Crash Course Physics #35,9kgzA0Vd8S8,2016-12-22T22:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'physics', 'crash course physics', 'pbs', 'pbsds', 'pbs digital', 'pbs digital stuiods', 'shini somara', 'electricity', 'magnetism', 'induction', 'ac', 'dc', 'circuits']",282365,4072,302,PT8M33S,true
What Is Justice?: Crash Course Philosophy #40,H0CTHVCkm90,2016-12-20T00:11:46Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'edu', 'philosophy', 'justice', 'ethics', 'punishment', 'equality', 'wealth', 'poverty']",1795684,30154,1654,PT10M15S,true
The Future of Gaming: Crash Course Games #29,bMQprYPlK54,2016-12-17T01:31:15Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'andre meadows', 'games', 'gaming', 'future of games', 'neo', 'xbox one s', 'playstation 4 pro', 'virtual reality', 'vr', 'pandemic legacy', 'legacy games', 'fold it', 'future', 'larping', 'rpgs', 'pokemon', 'sports', 'jane mcgonigal', 'project scorpio']",153991,5458,479,PT9M33S,true
Induction - An Introduction: Crash Course Physics #34,pQp6bmJPU_0,2016-12-16T21:35:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'science', 'physics', 'crash course physics', 'shini somara', 'induction', 'magnetism', 'electromagnet', 'magnet', 'electricity', 'right hand rule', 'electric fields']",934392,12895,556,PT9M49S,true
Moral Luck: Crash Course Philosophy #39,DpDSPVv8lUE,2016-12-12T23:36:21Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'morality', 'ethics', 'metaethics', 'moral luck', 'moral responsibility', 'responsibility', 'praise', 'blame']",983424,20185,1214,PT9M46S,true
Ampère's Law: Crash Course Physics #33,5fqwJyt4Lus,2016-12-08T22:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'crash course physics', 'physics', ""ampere's law"", 'magnetics', 'magnets', 'currents', 'electric currents', 'electro magnets', 'shini somara']",562362,9021,281,PT8M45S,true
The Pok√©mon Phenomenon: Crash Course Games #28,x4lPCUGxx5o,2016-12-07T21:19:25Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'andre meadows', 'pokemon', 'Pokémon', 'video games', 'games', 'gaming', 'pikachu', 'red', 'blue', 'green', 'yello', 'ken sugimori', 'game freak', 'history', 'nintendo', 'ultraman', 'shigeru miyamoto', 'trading cards', 'ash ketchum', 'the pokemon company', 'play!', 'tournaments', 'pokemon go']",228725,6138,506,PT10M51S,true
Aristotle & Virtue Theory: Crash Course Philosophy #38,PrvtOWEXDIQ,2016-12-05T21:48:31Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'aristotle', 'ethics', 'metaethics', 'ethical theories', 'eudaimonia']",3486067,61172,1424,PT9M22S,true
Magnetism: Crash Course Physics #32,s94suB5uLWw,2016-12-01T22:00:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'crash course physics', 'magnets', 'magnetics', 'electro magnet', 'electro magnetics', 'magnetic fields', 'shini somara']",1760917,23941,883,PT9M47S,true
Contractarianism: Crash Course Philosophy #37,2Co6pNvd9mc,2016-11-28T23:17:13Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'philosophy', 'crash course philosophy', 'hobbes', 'contractarianism', 'argument']",1670156,27905,1575,PT9M31S,true
Utilitarianism: Crash Course Philosophy #36,-a739VjqdSI,2016-11-21T23:02:30Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse']",4624908,82802,3288,PT10M1S,true
Gambling: Crash Course Games #27,DOhJX7SqJS8,2016-11-19T20:00:55Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'gambling', 'gaming', 'casino', 'blackjack', 'poker', 'roulette', 'lottery', 'wager', 'games of chance', 'cards', 'horse race', 'poker chips', 'games', 'andre meadows', 'dice', 'pinball machine', 'gambling addiction', 'gambler’s fallacy', 'gambler’s conceit', 'kenny rogers']",134252,3220,264,PT11M45S,true
Capacitors and Kirchhoff: Crash Course Physics #31,vuCJP_5KOlI,2016-11-18T18:08:47Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'crash course physics', 'kirchhoff', 'capacitors', 'dc circuits', 'ciruits', 'electricity', 'shini somara']",380361,4934,219,PT10M38S,true
Kant & Categorical Imperatives: Crash Course Philosophy #35,8bIys6JoEDw,2016-11-14T23:34:23Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'edu', 'ethics', 'metaethics', 'kant', 'categorical imperative']",3874282,60543,1681,PT10M27S,true
LARP: Crash Course Games #26,SUYb29YV47w,2016-11-12T00:18:18Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'larp', 'LARP', 'larping', 'gaming', 'live action role playing game', 'gm', 'game master', 'npc', 'non-player character', 'player', 'demonstrative', 'salon', 'live steel', 'dagorhir', 'lord of the rings', 'dnd', 'rpg', 'mind’s eye theatre', 'vampire: the masquerade', 'nordic', 'europa', 'kneutepunkt']",145266,4019,419,PT9M14S,true
Outtakes #3: Crash Course Physics,ulkM5f1fxRM,2016-11-10T21:58:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'outtakes', 'crash course physics', 'shini somara', 'bloopers', 'fails']",44615,896,81,PT6M21S,true
Natural Law Theory: Crash Course Philosophy #34,r_UfYY7aWKo,2016-11-07T23:24:09Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'ethics', 'metaethics', 'morality', 'natural law theory', 'divine command theory', 'thomas aquinas', 'basic goods', 'david hume']",2082825,31396,1233,PT9M39S,true
Circuit Analysis: Crash Course Physics #30,-w-VTw0tQlE,2016-11-05T00:13:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'shini somara', 'crash course physics', 'circuit analysis', 'parallel circuit', 'series circuit', 'electricity']",938872,14022,606,PT10M56S,true
Divine Command Theory: Crash Course Philosophy #33,wRHBwxC8b8I,2016-10-31T21:07:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'edu', 'philosophy', 'ethics', 'grounding problem', 'divine command theory', 'euthyphro problem', 'plato']",1292613,23297,2797,PT9M2S,true
A Note on CC Human Geography,yvFStAP7Uko,2016-10-31T19:34:14Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse']",462066,33958,4558,PT2M4S,true
The History of Game Shows: Crash Course Games #25,7EcjYQj23QE,2016-10-29T01:08:04Z,"['Game shows', 'quiz shows', 'reality shows', 'the price is right', 'jeopardy', 'the dating game', 'survivor', 'who wants to be a millionaire', 'big brother', 'cash can', 'are you smarter than a 5th grader', 'vox pop', 'Hollywood squares', 'twenty-one', 'Charles van doren', 'contestant', 'audience', 'Andre meadows', 'games', 'gaming']",127862,2997,207,PT13M23S,true
DC Resistors & Batteries: Crash Course Physics #29,g-wjP1otQWI,2016-10-27T23:59:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'stem', 'science', 'physics', 'energy', 'electricity', 'batteries', 'voltage', 'resistors', 'power']",420989,5333,266,PT10M48S,true
Metaethics: Crash Course Philosophy #32,FOoffXFpAlU,2016-10-25T23:03:41Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'ethics', 'metaethics', 'edu']",2090294,35987,1956,PT9M34S,true
Input Devices: Crash Course Games #24,rR_mmsfIzzs,2016-10-22T14:00:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'andre meadows', 'controllers', 'input devices', 'wii', 'xbox', 'nintendo', 'nes', 'sees', 'n64', 'playstation', 'move', 'kinect', 'guitar hero', 'd-pad', 'analog', 'paddle', 'joystick', 'dualshock', 'mobile gaming', 'quadstick', 'haptics', 'haptic feedback']",126766,2996,250,PT10M30S,true
Electric Current: Crash Course Physics #28,HXOok3mfMLM,2016-10-20T21:30:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'crash course physics', 'electricity', 'current', 'electric current', 'shini somara', 'voltaic cells', 'voltage', 'resistance', 'science', 'ap science', 'ap physics', 'physics of electricity']",1090872,12320,569,PT8M23S,true
Aesthetics: Crash Course Philosophy #31,gDL4Zf2yEa4,2016-10-17T20:54:53Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'aesthetics', 'art', 'helena', 'Marco Evaristti']",1123266,23744,1079,PT10M38S,true
"Voltage, Electric Energy, and Capacitors: Crash Course Physics #27",ZrMltpK6iAw,2016-10-14T20:33:56Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse']",773000,9106,533,PT10M14S,true
Outtakes #3: Crash Course Philosophy,dD1-Qcl8fSk,2016-10-11T01:12:38Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'outtakes', 'bloopers']",63206,1815,115,PT5M,true
Handhelds: Crash Course Games #23,ZEwbHWspFWY,2016-10-08T16:52:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'andre meadows', 'handhelds', 'handheld consoles', 'game boy', 'nintendo ds', 'game gear', 'playstation portable', 'psp', 'vita', 'ps vita', 'atari lynx', 'mattel’s auto race', 'mattel football', 'game boy color', 'game boy advance', 'nintendo 3ds', 'sega nomad', 'game.com', 'gp32', 'tap wave zodiac', 'tiger electronics', 'gizmondo', 'pandora', 'mobile gaming', 'tetris', 'nintendo nx']",156673,3796,346,PT11M8S,true
Electric Fields: Crash Course Physics #26,mdulzEfQXDE,2016-10-07T23:12:47Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'crash course physics', 'physics', 'science', 'electricity', 'electric fields']",1485136,18484,602,PT9M57S,true
Aesthetic Appreciation: Crash Course Philosophy #30,NZ5duzln2wI,2016-10-03T20:39:12Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'philosophy', 'humanities', 'aesthetics']",1006759,20501,1016,PT9M26S,true
Open World Games: Crash Course Games #22,0f6K1bzXCcs,2016-10-01T15:14:43Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'minecraft', 'skyrim', 'open world game', 'open world', 'sandbox game', 'game', 'video games', 'witches 3', 'watch dogs', 'grand theft auto', 'ferry', 'garry’s mod', 'goat simulator', 'fallout', 'ultima', 'mario 64', 'zelda', 'shenmue', 'world of warcraft', 'eve online', 'no man’s sky', 'emergent stores']",178730,4474,398,PT12M,true
Electric Charge: Crash Course Physics #25,TFlVWf8JX4A,2016-09-29T22:03:07Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse']",2260140,31648,867,PT9M42S,true
Nonexistent Objects & Imaginary Worlds: Crash Course Philosophy #29,Y7v2kESrqDQ,2016-09-27T16:45:14Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'fiction', 'aesthetics', 'language']",831276,18640,1458,PT9M21S,true
The Future of Virtual Reality: Crash Course Games #21,BfcBjJ3c9lg,2016-09-23T23:56:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'virtual reality', 'VR', 'oculus', 'oculus rift', 'playstation vr', 'sony', 'htc vive', 'nintendo', 'virtual boy', 'panorama', 'haptics', 'sensorama', 'morton heilig', 'sega vr', 'palmer luckey', 'good cardboard', 'samsung', 'gear vr', 'the new revolution', 'the void', 'augmented reality', 'microsoft', 'hololens', 'pokemon go']",164821,4411,295,PT9M15S,true
Engines: Crash Course Physics #24,p1woKh2mdVQ,2016-09-22T21:30:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'crash course physics', 'shini somara', 'engines', 'heating and cooling', 'thermodynamics']",328623,4900,236,PT10M21S,true
"Literature Outtakes, Year Three",drtZJvTC9dk,2016-09-21T18:09:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'literature', 'lit', 'books', 'reading', 'book', 'novel', 'poem', 'poetry', 'their eyes were watching god', 'zora neale hurston', 'huck finn', 'huckleberry finn', 'mark twain', 'samuel clemens', 'lord of the flies', 'william golding', 'william shakespeare', 'sonnet', 'sula', 'toni morrison', 'ralph ellison', 'invisible man', 'gabriel garcia marquez', 'one hundred years of solitude']",84089,1718,83,PT3M11S,true
How Words Can Harm: Crash Course Philosophy #28,1ESU5ONMMxs,2016-09-19T22:25:41Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'edu', 'philosophy', 'language']",858102,27268,0,PT10M46S,true
Outtakes #2: Crash Course Games,ezn5ALJUlYc,2016-09-17T20:43:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'games', 'andrew meadows', 'outtakes', 'bloopers', 'gaming', 'video games']",63447,1160,60,PT4M51S,false
Thermodynamics: Crash Course Physics #23,4i1MUWJoI0U,2016-09-15T21:27:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'thermodynamics', 'crash course physics', 'isovolumetric', 'isobaric', 'isothermal', 'adiabatic', 'processes', 'entropy', 'shini somara', 'physics']",1626165,25087,825,PT10M4S,true
Netflix & Chill: Crash Course Philosophy #27,G30m6XDBTh4,2016-09-12T20:49:27Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'language', 'meaning', 'conversational implicature']",984243,20708,1290,PT9M11S,true
PC Gaming: Crash Course Games #20,ADTTXRxVUcY,2016-09-09T21:33:53Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'computer', 'gaming', 'pc gaming', 'gamer', 'pong', 'desktop computer', 'esports', 'consoles', 'commodore 64', 'zx spectrum', 'dune II', 'its', 'real-time strategy', 'game', 'warcraft', 'starcraft', 'wolfenstein 3d', 'simcity', 'simulator', 'first-person shooter', 'fps', 'myst', '7th guest', 'lan-parties', 'steam', 'skyrim', 'mod']",228520,6174,914,PT10M18S,true
The Physics of Heat: Crash Course Physics #22,tuSC0ObB-qY,2016-09-08T23:17:17Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse']",788776,10166,520,PT9M16S,true
Sula: Crash Course Literature 309,eAHYT5gIPZg,2016-09-08T14:47:39Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'toni morrison', 'sula', 'book', 'novel', 'reading', 'text', 'AP', 'Literature', 'Lit', 'study', 'exam', 'test']",350141,7739,664,PT12M22S,true
Game Design: Crash Course Games #19,TOQTZ6N_eVg,2016-09-02T21:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'game design', 'design', 'gaming', 'video games', 'gamer', 'board game', 'dice', 'half-life 2', 'zelda', 'mario', 'love letter', 'twilight struggle', 'fun games', 'good games', 'game testing', 'pokemon', 'shigeru miyamoto', 'linnaeu’s’ four principles', 'eight kinds of fun']",285962,6701,277,PT9M58S,true
Kinetic Theory and Phase Changes: Crash Course Physics #21,WOEvvHbc240,2016-09-01T21:30:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'science', 'crash course physics', 'crash course science', 'kinetic theory', 'phase changes', 'shini somara']",506232,6348,334,PT9M9S,true
Language & Meaning: Crash Course Philosophy #26,zmwgmt7wcv8,2016-08-29T22:10:40Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'edu', 'philosophy', 'language', 'meaning']",1154066,24348,2578,PT9M32S,true
Outtakes #2: Crash Course Physics,8vApHy0CDE4,2016-08-26T01:20:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'outtakes', 'physics', 'shini somara', 'funny', 'bloopers']",62897,1245,126,PT4M59S,false
Invisible Man: Crash Course Literature 308,hvfs4jIYHrI,2016-08-24T23:17:42Z,"['ralph ellison', 'Invisible Man', 'Ellison', 'novel', 'book', 'read', 'Literature', 'AP', 'AP Lit', 'study', 'exam', 'test', 'homework help']",585014,11254,806,PT11M7S,true
Compatibilism: Crash Course Philosophy #25,KETTtiprINU,2016-08-22T22:53:45Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'compatiblism']",1584926,33040,2707,PT8M55S,true
Role-playing Games: Crash Course Games #18,qqOQPv2rv_I,2016-08-19T22:35:32Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'rigs', 'role-playing game', 'role playing game', 'd&d', 'dnd', 'dungeons and dragons', 'pathfinder', 'jrr tolkien', 'gaming', 'video games', 'adventure games', 'wargaming', '1970s', '1980s', 'andre meadows', 'warhammer', 'h.g. wells', 'little wars', 'kriegspiel', 'kriegsspiel', 'gary gygax', 'dave arneson', 'mazes and monsters']",281760,7077,711,PT10M10S,true
Temperature: Crash Course Physics #20,6BHbJ_gBOk0,2016-08-18T22:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'crash course physics', 'ideal gas law', 'temperature', 'moles', 'constant', 'gas constant', 'shini somara']",454797,6429,281,PT9M1S,true
100 Years of Solitude Part 2: Crash Course Literature 307,Hlpv7nKt81A,2016-08-18T16:03:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', '100 years', 'one hundred years', 'solitude', 'novel', 'book', 'read', 'reading', 'literature', 'lit', 'AP', 'readings', 'buendia', 'Jose Arcadio', 'Latin America', 'European', 'colonial', 'colonialism', 'real world', 'realism', 'magical', 'Colombia', 'Macondo', 'Aracataca', 'United Fruit Company', 'banana', 'banana republic', 'export', 'United States', 'neocolonialism', 'UFC', 'business', 'railway', 'infrastructure', 'ports', 'banana boat', 'strike', 'uprising', 'massacre', 'employment', 'workers', 'agriculture', 'companies', 'coup', '1928']",374097,8608,443,PT12M18S,true
Determinism vs Free Will: Crash Course Philosophy #24,vCGtkDzELAI,2016-08-15T20:00:07Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'edu', 'free will', 'determinism']",3243053,74721,8739,PT10M26S,true
The Physics of Music: Crash Course Physics #19,XDsk6tZX55g,2016-08-11T22:27:11Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'music', 'physics', 'crash course physics', 'frequency', 'notes', 'nodes', 'standing waves', 'waves', 'shini somara', 'science']",717788,11405,608,PT10M35S,true
100 Years of Solitude Part 1: Crash Course Literature 306,YWNcCs__vQg,2016-08-11T02:31:16Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'literature', 'book', 'books', 'read', 'reading', 'novel', 'fiction', 'gabriel garcia marquez', 'magical realism', 'time', 'buendia', 'jose arcadio']",744044,14631,845,PT11M39S,true
Artificial Intelligence & Personhood: Crash Course Philosophy #23,39EdqUbj92U,2016-08-08T22:09:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'edu', 'humanities', 'philosophy', 'identity', 'artificial intelligence', 'robots', 'personal identity', 'william lycan', 'turing test', 'chinese room', 'john noonan', 'alan turing']",994635,21977,1996,PT9M26S,true
"The Olympics, FIFA, and why we love sports: Crash Course Games #17",wWZIhgluQvw,2016-08-06T00:09:25Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'the olympics', 'fifa', 'world cup', 'games', 'gaming', 'sports', 'soccer', 'football', 'futball', 'wrestling', 'running', 'olympics', 'history of the olympics', 'hercules', 'zeus', 'greek mythology', 'national pride', 'nationalism']",213414,5353,593,PT12M2S,true
Sound: Crash Course Physics #18,qV4lR9EWGlY,2016-08-04T21:53:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'science', 'crash course physics', 'shini somara', 'sound', 'waves', 'standing waves', 'traveling waves', 'sound waves', 'doppler effect', 'what is sound?']",1570928,17904,570,PT9M39S,true
Lord of the Flies: Crash Course Literature 305,WfNiQBXmPw8,2016-08-04T14:50:51Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'lord of the flies', 'william golding', 'novel', 'book', 'reading', 'literature', 'homework help']",1432222,28446,2599,PT11M55S,true
Where Does Your Mind Reside?: Crash Course Philosophy #22,3SJROTXnmus,2016-08-01T21:17:41Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'edu', 'identity', 'personal identity', 'mind body problem', 'the mind', 'reductive physicalism', 'substance dualism', 'mysterianism']",1461830,27598,2667,PT9M7S,true
Psychology of Gaming: Crash Course Games #16,MYJBRWT7JGU,2016-07-30T12:49:51Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'crash course games', 'video games', 'gamer', 'gaming', 'psychology of gaming', 'andre meadows', 'achievements', 'maslow', 'hierarchy of needs', 'jane mcgonigal', 'gameplay', 'sports', 'poker', 'competition', 'chance', 'vertigo', 'the zone', 'battle test', 'achievers', 'explorers', 'socializers', 'killers']",258349,7544,555,PT8M47S,true
Traveling Waves: Crash Course Physics #17,TfYCnOvNnFU,2016-07-28T21:01:52Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'shini somara', 'traveling waves', 'physics', 'ap physics', 'sound', 'energy', 'engineering', 'mechanical engineering', 'sine', 'cosine', 'trig', 'trigonometry', 'calculus']",1687439,21519,572,PT7M45S,true
Shakespeare's Sonnets: Crash Course Literature 304,bDpW1sHrBaU,2016-07-28T00:19:09Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'sonnet', 'sonnets', 'poem', 'poetry', '1609', 'sugared sonnets', 'shall i compare thee', 'william shakespeare', 'thomas thorpe', 'poet', 'playwright', 'the bard', 'shakespeare', 'book', 'folio', 'publish', 'publisher', 'printing', 'dark mistress']",1066359,18616,646,PT12M27S,true
Personhood: Crash Course Philosophy #21,GxM9BZeRrUI,2016-07-25T21:11:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'edu', 'philosophy', 'personhood', 'identity', 'personal identity', 'genetic', 'cognitive', 'social', 'sentience', 'gradient theory']",1231817,24607,2547,PT9M14S,true
Educational Games: Crash Course Games #15,ORSUg0C8qR8,2016-07-23T16:33:54Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'games', 'let’s play', 'crash course', 'crash course games', 'andre meadows', 'educational games', 'classroom', 'chess', 'number munchers', 'math blaster', 'Oregon trail', 'chaturanga', 'carmen sandiego']",228449,4959,473,PT8M16S,true
Simple Harmonic Motion: Crash Course Physics #16,jxstE6A_CYQ,2016-07-21T21:03:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'shini somara', 'crash course physics', 'harmonic motion', 'engineering', 'mechanical engineering', 'structural engineering', 'fluid dynamics']",1540119,21803,620,PT9M11S,true
"The Raft, the River, and The Weird Ending of Huckleberry Finn: Crash Course Literature 303",ak8gydUl9gM,2016-07-20T21:19:44Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'Mark Twain', 'Huck Finn', 'Huckleberry Finn', 'river', 'raft', 'Mississippi', 'Tom Sawyer', 'Island', 'metaphor', 'racism', 'lionel trilling', 'religion', 'religious', 'god', 'power', 'morality', 'Aunt Sally', 'love']",445780,8134,568,PT10M48S,true
Outtakes #2: Crash Course Philosophy,W6mQd4bnDEo,2016-07-18T21:52:49Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'bloopers', 'outtakes', 'funny', 'mistakes', 'education', 'edu', 'humanities']",76470,2162,195,PT5M32S,false
Board Games: Crash Course Games #14,TVm4ckokD84,2016-07-16T17:31:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'games', 'gaming', 'andre meadows', 'board games', 'settlers of catan', 'catan', 'monopoly', 'risk', 'clue', 'life', 'ticket to ride', 'castles of burgundy', 'puerto rico', 'agricola', 'eurogame', 'european games', 'german games', 'american games', 'parker brothers', 'charles darrow', 'lizzie magie', 'the landlord’s game', 'klaus teuber', 'spiel', 'internationale spieltage', 'gencon', 'essen']",225309,5015,433,PT8M25S,true
Fluids in Motion: Crash Course Physics #15,fJefjG3xhW0,2016-07-14T21:55:06Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'fluids', 'crash course physics', 'physics', 'ap physics', 'fluid dynamics', 'fluids in motion', 'pressure', 'continuity equation', ""bernoulli's equation"", ""torricelli's theorem"", 'shini somara']",1132112,19455,582,PT9M47S,true
The Adventures of Huckleberry Finn Part 1: Crash Course Literature 302,WXKgBIiP8IA,2016-07-14T14:33:56Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'Mark Twain', 'Samuel Clemens', 'Huck', 'Jim', 'Huckleberry Finn', 'The Adventures of Huckleberry Finn', 'Hannibal', 'Missouri', 'MO', 'Mississippi', 'river', 'raft', 'race', 'slave', 'slavery', 'Tom Sawyer', 'novel', 'book', 'writing', 'reading', 'homework help', 'AP', 'literature', 'library', 'book review']",696450,11448,562,PT12M24S,true
Arguments Against Personal Identity: Crash Course Philosophy #20,17WiQ_tNld4,2016-07-11T20:43:48Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'edu', 'identity', 'personal identity', 'hume', 'parfit']",1322365,27491,1360,PT9M44S,true
Card Games: Crash Course Games #13,FfC4LPYxTrs,2016-07-09T12:58:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'games', 'crash course games', 'andre meadows', 'poker', ""texas hold 'em"", 'playing cards', 'card deck', 'yu-gi-oh', 'pokemon', 'trading cards', 'tcg', 'magic', 'magic: the gathering', 'gambling', 'gaming', 'card suits', 'tarot', 'cards', 'dominion', 'mamluk', 'lut chi', 'pogs', 'ganjifeh', ""kwan pa'i"", 'poque', 'pochen', 'poch', 'primero', 'gaming parlors', 'blizzard', 'hearthstone', 'warcraft']",235382,5551,478,PT9M1S,true
Fluids at Rest: Crash Course Physics #14,b5SqYuWT4-4,2016-07-08T17:13:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'ccphysics', 'crash course physics', 'shini somara', 'fluids', 'fluid dynamics', 'pressure', 'manometer', 'barometer', 'engineering', 'mechanical engineering', 'hydrolics']",964769,15588,498,PT9M59S,true
Their Eyes Were Watching God: Crash Course Literature 301,4kF0U8kIMp4,2016-07-07T17:16:34Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'Zora Neale Hurston', 'Their Eyes Were Watching God', 'literature', 'lit', 'books', 'novel', 'Florida', 'Janie', 'Janie Crawford', 'Alice Walker', 'Tea Cake', 'Rabies', 'Eatonville', 'literary', 'library', 'book', 'AP', 'AP Lit', 'test', 'exam', 'study', 'read', 'reading', 'homework help', 'teacher resources']",684272,14198,719,PT11M24S,true
Outtakes #1: Crash Course Games,DutGd0f81K8,2016-07-01T21:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'andre meadows', 'outtakes', 'bloopers', 'crash course games', 'games', 'video games', ""let's play""]",74467,1694,156,PT6M25S,true
Outtakes #1: Crash Course Physics,UsZboqOPLUo,2016-06-30T22:01:46Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'outtakes', 'bloopers', 'behind the scenes', 'shini somara', 'physics', 'crash course physics', 'funny']",92609,2089,132,PT3M27S,true
Crash Course Literature 3 Preview,zMTERytCNAU,2016-06-30T15:24:04Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'Their Eyes Were Watching God', 'literature', 'lit', 'Zora Neale Hurston', 'Lord of the Flies', 'William Golding', 'Toni Morrison', 'Sula', 'book', 'books', 'library', 'Huckleberry Finn', 'Mark Twain', 'Invisible Man', 'Ralph Ellison', 'William Shakespeare', 'Sonnet', 'poetry', 'poet', 'rabies', '100 Years of Solitude', 'Gabriel Garcia Marquez']",338991,5603,782,PT2M25S,true
Personal Identity: Crash Course Philosophy #19,trqDnLNRuSc,2016-06-27T21:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'edu', 'philosophy', 'humanities', 'identity', 'personal identity']",1869798,30807,1453,PT8M33S,true
MMORPGs - Crash Course Games #12,YZ5j5fy-LiQ,2016-06-24T20:05:54Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'mmorpg', 'world of warcraft', 'eve online', 'ultima online', 'no man’s sky', 'mud', 'guild wars', 'everquest', 'life games', 'pc gaming', 'mmo', 'rag', 'role-playing game', 'multi user-dungetion', 'servers', 'internet', 'video games', 'gaming', 'text-based games', 'dungeons and dragons']",309867,7796,993,PT8M54S,true
Statics: Crash Course Physics #13,9cbF9A6eQNA,2016-06-23T22:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'crash course physics', 'science', 'shini somara', 'ap physics', 'engineering', 'statics', 'resistence', 'resistance', 'bridges', 'buildings', 'structural engineering', 'calculus']",577048,8709,499,PT9M8S,true
Batman & Identity: Crash Course Philosophy #18,-TFCMK4i2lo,2016-06-20T21:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'edu', 'humanities', 'philosophy', 'identity', 'personal identity', 'batman']",1435330,27724,1504,PT9M9S,true
Casual Gaming: Crash Course Games #11,fa-TFvPKpog,2016-06-17T23:56:24Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'casual gaming', 'mobile gaming', 'social gaming', 'mobile', 'social', 'cell phone', 'candy crush', 'zynga', 'angry birds', 'rovio', 'trivia crack', 'clash of clans', 'flappy bird', 'game addiction', 'facebook', 'farmville', 'panda pop', 'andre meadows']",294619,6500,693,PT9M38S,true
Torque: Crash Course Physics #12,b-HZ1SZPaQw,2016-06-16T22:30:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'torque', 'what is torque', 'physics', 'science', 'physical science', 'moment of inertia', 'inertia', 'velocity', 'angular momentum', 'linear momentum', 'crash course sciences']",1064951,15957,859,PT8M3S,true
Crash Course Econ Outtakes,GvFqifSJHZQ,2016-06-16T16:46:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'adriene hill', 'jacob clifford']",57014,1435,93,PT5M50S,true
Perspectives on Death: Crash Course Philosophy #17,mjQwedC1WzI,2016-06-13T22:34:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'edu', 'fomo', 'fear of missing out', 'philosophical fomo', 'socrates', 'epircurus', 'zhuangzi']",2414181,58932,4023,PT9M1S,true
Microsoft and Connected Consoles: Crash Course Games #10,eE8Jac43RBo,2016-06-11T00:09:29Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'andre meadows', 'microsoft', 'xbox', 'playstation 2', 'gamecube', 'sony', 'nintendo', 'halo', 'grand theft auto', 'esrb', 'fable', 'nintendo ds', 'internet', 'esports', 'competitive gaming', 'sega', 'dreamcast', 'wii', 'wii u', 'xbox live', 'playstation network', 'nintendo network', 'game mortality', 'backward compatibility', 'ps2', 'games', 'video games', ""let's play"", 'history of video games', 'gaming']",319562,7935,731,PT8M57S,true
Rotational Motion: Crash Course Physics #11,fmXFWi-WfyU,2016-06-09T22:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'crash course physics', 'rotational motion', 'motion', 'tangential motion', 'circles', 'geometry', 'calculus', 'shini somara']",1143516,13799,700,PT8M55S,true
The Economics of Happiness: Crash Course Economics #35,O-t8-Vq0HO0,2016-06-09T13:40:55Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'economics', 'econ', 'economy', 'happy', 'happiness', 'money', 'income', 'wealth', 'home', 'mortgage', 'car payment', 'credit debt', 'debt', 'salary', 'fired', 'unemployed', 'facebook', 'pursuit of happiness', 'declaration of independence', 'self help', 'life coach', 'AP', 'AP Econ', 'test', 'exam', 'economists', 'buy', 'spend', 'supply', 'demand', 'satisfaction', 'neighbor', 'keeping up', 'competition', 'unhappy', 'joy', 'psychology', 'unemployment', 'out of work', 'life satisfaction', 'high income']",440055,10348,754,PT10M26S,true
Existentialism: Crash Course Philosophy #16,YaDvRdLMkHs,2016-06-06T21:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'existentialism', 'edu', 'learning', 'jean-paul sartre', 'sartre', 'essentialism', 'the absurd']",6795223,178126,6734,PT8M54S,true
Playstation and More Immersive Video Games: Crash Course Games #9,yq2n11aPvog,2016-06-04T17:05:10Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'andre meadows', 'playstation', 'sony', 'nintendo', 'super nintendo', 'sega genesis', 'sega', 'dreamcast', 'saturn', 'ps1', 'nintendo 64', 'goldeneye', '007', 'final fantasy VII', 'final fantasy 7', 'mario kart', 'super smash bros', 'atari jaguar', '32-bit', '64-bit', 'cd', 'cd-rom', 'tomb raider', 'quake', 'duke nukem', 'half-life']",387498,8904,1013,PT11M52S,true
Collisions: Crash Course Physics #10,Y-QOfc2XqOk,2016-06-02T21:44:26Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'crash course physics', 'shini somara', 'collisions', 'math', 'calculus', 'ap physics']",1277899,15186,598,PT9M21S,true
Sega and More Mature Video Games: Crash Course Games #8,MjWdhGRGL5E,2016-05-28T20:13:28Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'sega', 'sega genesis', 'sega master system', 'andre meadows', 'video games', 'console', 'nintendo', 'nes', 'snes', 'super nintendo', 'super mario world', 'sonic', 'street fighter', 'mortal kombat', 'doom', 'first person shooters', 'esrb', 'service games', 'star fox', 'mario', 'final fantasy', 'consoles', 'console war', '2nd console war', ""nintendon't"", 'sports games']",365551,8744,867,PT10M47S,true
Foreign Aid and Remittance: Crash Course Economics #34,tAvA_cOeeOI,2016-05-27T22:38:38Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'foreign aid', 'humanitarian', 'USAID', 'united nations', 'unicef', 'help', 'aid', 'food aid', 'IMf', 'international monetary fund', 'world bank', 'marshall plan', 'capitalism', 'communism', 'socialism', 'cold war', 'united kingdom', 'united states', 'africa']",361968,6365,887,PT11M57S,true
"Work, Energy, and Power: Crash Course Physics #9",w4QFJb9a8vo,2016-05-26T21:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'work', 'energy', 'power', 'calculus', 'shini somara', 'ap physics']",2685705,34868,1219,PT9M55S,true
Indiana Jones & Pascal's Wager: Crash Course Philosophy #15,S93jMOqF-oE,2016-05-23T21:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'philosophy', 'humanities', 'religion', 'philosophy of religion', 'blaise pascal', ""pascal's wager"", 'indiana jones']",1451580,31953,4669,PT9M13S,true
Nintendo and a New Standard for Video Games: Crash Course Games #7,34zvOgLZOY4,2016-05-21T00:44:59Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'andre meadows', 'crash course', 'nintendo', 'nintendo entertainment system', 'new', 'zelda', 'mario', 'mario brothers', 'super mario brothers', 'samus', 'metroid', 'atari', 'link', 'donkey kong', 'famicon', '10nes', 'control deck', 'game park', 'video game history', 'history of video games', 'games', 'video games', 'gaming', 'let’s play', 'nintendo power', 'nintendo fun club']",424472,8872,729,PT9M2S,true
Newtonian Gravity: Crash Course Physics #8,7gf6YpdvtE0,2016-05-19T19:56:46Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'crash course physics', 'newtonian gravity', 'newtonian physics', 'calculus', 'gravity', 'apple']",1145484,14731,727,PT9M20S,true
The Economics of Immigration: Crash Course Economics #33,4XQXiCLzyAw,2016-05-18T22:54:44Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'econ', 'economics', 'crash course', 'immigration', 'migrants', 'migrant', 'immigrate', 'immigrant', 'economy', 'migration', 'great migration', 'united states', 'europe', 'penguins', 'voluntary', 'involuntary', 'tax', 'taxation', 'great atlantic migration', 'ellis island', 'europeans', 'chinese exclusion act', 'angel island', 'industrial revolution', 'deport', 'deported', 'deportation', 'grover norquist', 'bipartisan']",589231,11005,0,PT11M21S,true
"Anti-Vaxxers, Conspiracy Theories, & Epistemic Responsibility: Crash Course Philosophy #14",AYkhlXronNk,2016-05-16T21:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'philosophy', 'humanities', 'education', 'epistemic responsibility', 'learning', 'EDU']",1809724,38791,4124,PT9M47S,true
The Video Game Crash of 1983: Crash Course Games #6,x4F_sZiAl7s,2016-05-14T01:58:15Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'andre meadows', 'space invaders', 'pac-man', 'donkey kong', 'frogger', 'centipede', 'ms pac-man', 'atari', '1980s', 'video game crash', '1983', 'coleco', 'mattel', 'toru iwatani', 'competitive gaming', 'billy mitchell', 'doris self', 'activision', 'pitfall', 'castle wolfenstein', 'gaming', 'video game history', 'games', 'video games', 'defender', 'commodore 64', 'e.t. the extra terrestrial', 'purina', 'chase the chuck wagon', 'quaker', 'landfill', 'e.t. landfill', 'nintendo']",444690,10064,774,PT10M51S,true
Uniform Circular Motion: Crash Course Physics #7,bpFK2VCRHUs,2016-05-12T21:04:46Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'centripetal', 'centrifugal', 'circular motion', 'science', 'shini somara', 'ap physics', 'ap science', 'motion']",1771719,23529,873,PT9M54S,true
The Problem of Evil: Crash Course Philosophy #13,9AzNEG1GB-k,2016-05-09T21:29:43Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'theism', 'evil']",5522146,118465,0,PT10M4S,true
The Underground Economy: Crash Course Economics #32,joG6-QZc-fw,2016-05-07T22:36:11Z,"['black market', 'underground economy', 'crash course', 'crashcourse', 'econ', 'shadow economy', 'informal economy', 'off the books', 'under the table']",557512,9670,708,PT9M2S,true
The First Home Consoles: Crash Course Games #5,npOPGrAcFLg,2016-05-07T00:13:49Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'home consoles', 'magnavox', 'odyssey', 'atari', '2600', 'video games', 'mattel', 'intellivision', 'adventure', 'space invaders', 'ralph baer', 'first video games', 'games', 'gaming', 'atari vcs', 'fairchild f']",322034,7366,360,PT7M23S,true
Friction: Crash Course Physics #6,fo_pmp5rtzo,2016-05-05T21:52:55Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'science', 'engineering', 'friction', 'static friction', 'kinetic friction', 'ap physics', 'physics 1', 'physics 2', 'mechanical engineering', 'crash course physics', 'shini somara']",1596263,18422,933,PT10M59S,true
What Is God Like?: Crash Course Philosophy #12,gs_gY1K1AMU,2016-05-02T21:05:37Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'philosophy', 'religion', 'humanities']",2197363,49547,0,PT10M32S,true
Newton's Laws: Crash Course Physics #5,kKKM8Y-u7ds,2016-04-28T21:29:38Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'crash course physics', 'newton', 'isaac newton', ""newton's laws"", 'math', 'calculus', 'trigonometry', 'science', 'ap physics 1', 'ap physics 2', 'ap physics']",4591666,54494,2024,PT11M4S,true
Taxes: Crash Course Economics #31,7Qtr_vA3Prw,2016-04-27T23:46:02Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'tax', 'taxes', 'taxation', 'IRS', 'internal revenue service', 'taxed', 'sales tax', 'income tax', 'percentage', 'tax bracket', 'american revolution', 'boston tea party', 'salt march', 'india', 'indian', 'Gandhi', 'mohandas', 'crash course', 'AP', 'Econ', 'economics', 'study', 'test', 'exam', 'homework help', 'teacher resource', 'advanced placement']",1353101,17090,2538,PT12M29S,true
Intelligent Design: Crash Course Philosophy #11,7e9v_fsZB6A,2016-04-25T21:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'philosophy', 'humanities', 'religion', 'intelligent design']",2452136,44249,0,PT9M34S,true
Atari and the Business of Video Games: Crash Course Games #4,r8gHnuv7U_o,2016-04-22T23:56:10Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'video games', 'games', 'andre meadows', 'arcade machines', 'atari', 'pong', 'video game history', 'nolan bushnell', 'computer space', 'syzygy', 'al acorn', 'steve jobs', 'steve wozniak', 'apple', 'space invaders', 'breakout', 'atari 2600', 'home console', 'console', 'cartridges', 'tempest', 'pitfall', 'centipede']",365722,8375,575,PT10M19S,true
Vectors and 2D Motion: Crash Course Physics #4,w3BhzYI6zXU,2016-04-21T22:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'math', 'calculus', 'vectors', 'scalars', 'shini somara', 'intro physics', 'motion', '2D', 'trig', 'trigonometry', 'crash course physics']",1505330,18950,873,PT10M6S,true
Outtakes #1: Crash Course Philosophy,VVPly3Ts074,2016-04-18T21:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'outtakes', 'bloopers', 'funny']",120850,3552,356,PT6M35S,false
The Economics of Death: Crash Course Economics #30,AecowUb79Xk,2016-04-16T19:44:33Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'death', 'dying', 'adriene hill', 'jacob clifford', 'dead', 'funeral', 'life expectancy', 'birth', 'global', 'poverty', 'africA', 'north america', 'united states', 'life', 'lifespan']",399502,6737,675,PT12M33S,true
The Dawn of Video Games: Crash Course Games #3,IGLdlkZozpI,2016-04-15T23:50:31Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'video games', 'games', 'video', 'andre meadows', 'computers', 'arcade machines', 'let’s play', 'eniac', 'colossus', 'cathode ray tube amusement device', 'nimrod', 'oxo', 'tennis for two', 'mint', 'spacebar!', 'tarmac', 'pdp-1', 'galaxy game', 'first video game', 'hacking', 'computer game', 'electronic game', 'gamer', 'history']",480750,11186,691,PT11M36S,true
Integrals: Crash Course Physics #3,jLJLXka2wEM,2016-04-14T22:21:47Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'science', 'physics', 'integrals', 'calculus', 'math', 'engineering', 'kinematic equations']",996084,14612,1081,PT10M9S,true
Aquinas & the Cosmological Arguments: Crash Course Philosophy #10,TgisehuGOyY,2016-04-11T21:41:07Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'thomas aquinas', 'cosmological arguments']",2501372,43773,0,PT10M26S,true
Ancient Games: Crash Course Games #2,H1lv3cOmlzM,2016-04-09T00:24:45Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'andre meadows', 'crash course', 'crash course games', 'games', 'video games', 'board games', 'dice', 'sent', 'patolli', 'monopoly', 'a ticket to ride', 'settlers of catan', 'maniacal', 'yahtzee', 'sheep knuckles', 'astragali', 'd20', 'go', 'web-chi', 'backgammon', 'bap le kiswahili', 'chutes and ladders', 'milton bradley', 'snakes and ladders', 'candy land', 'royal game of ur', 'let’s play', 'gaming']",550175,14288,1012,PT11M2S,true
Derivatives: Crash Course Physics #2,ObHJJYvu3RE,2016-04-07T20:54:20Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'derivatives', 'calculus', 'shini somara', 'engineering', 'integrals', 'fluid dynamics']",1845133,27467,2186,PT10M2S,true
The Economics of Healthcare: Crash Course Economics #29,cbBKoyjFLUY,2016-04-07T01:05:48Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'health', 'healthcare', 'affordable care act', 'obamacare', 'health insurance', 'insurance', 'premiums', 'mandate', 'tests', 'general tso', 'x-ray', 'x ray', 'blood test']",1098247,15198,1493,PT10M26S,true
Anselm & the Argument for God: Crash Course Philosophy #9,FmTsS5xFA6k,2016-04-04T21:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'humanities', 'education', 'philosophy', 'anselm', 'anselm of canterbury', 'religion']",2947291,57677,0,PT9M13S,true
What is a Game?: Crash Course Games #1,QPqR2wOs8WI,2016-04-01T23:59:51Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'games', 'videogames', 'pokemon', 'tetris', 'mario kart', 'metal gear', 'animal crossing', 'destiny', 'world of warcraft', 'candy crush', 'ancient games', 'oculus rift', 'board games', 'sports', 'andre meadows']",940078,26636,2358,PT10M18S,true
Motion in a Straight Line: Crash Course Physics #1,ZM8ECpBuQYE,2016-03-31T23:14:55Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'physics', 'ap physics', 'shini somara', 'crash course physics', 'intro physics', 'motion', 'kinomatic', 'kinomatic equations', 'physics 1 and 2', 'physics 1', 'physics 2', 'acceleration', 'time']",4815788,68665,4246,PT10M40S,true
"Karl Popper, Science, & Pseudoscience: Crash Course Philosophy #8",-X8Xfl0JdTQ,2016-03-28T21:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse']",2554783,52105,3096,PT8M57S,true
Labor Markets and Minimum Wage: Crash Course Economics #28,mWwXmH-n5Bo,2016-03-27T20:16:08Z,"['labor', 'work', 'job', 'workers', 'employee', 'employer', 'wage', 'salary', 'pay rate', 'market', 'supply', 'demand', 'labor supply', 'pizza', 'john green', 'hank green', 'vlogbrothers', 'crashcourse', 'crash course', 'AP', 'test', 'exam']",1060071,14057,1806,PT10M38S,true
Crash Course Games Preview,FVTNtlq3-44,2016-03-25T22:50:24Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'andrew meadows', 'blacknerdcomedy', 'games', ""let's play"", 'video games', 'computer games', 'board games', 'go', 'senet', 'patolli', 'mobile games', 'gaming', 'mario', 'sports']",334113,13768,1609,PT1M57S,true
The Meaning of Knowledge: Crash Course Philosophy #7,kXhJ3hHK9hQ,2016-03-21T21:40:42Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'edmund gettier', 'gettier cases', 'knowledge', 'cats', 'michael aranda']",2426031,38104,1687,PT10M12S,true
"Locke, Berkeley, & Empiricism: Crash Course Philosophy #6",5C-s4JrymKM,2016-03-15T21:22:19Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'john locke', 'george berkeley', 'empiricism', 'skepticism']",2627310,42911,2161,PT9M52S,true
Outtakes #5: Crash Course Government and Politics,3km7--BDx9s,2016-03-12T22:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'outtakes', 'crash course government and politics', 'government and politics', 'us government', 'civics', 'bloopers']",56800,1218,73,PT4M46S,false
Behavioral Economics: Crash Course Economics #27,dqxQ3E1bubI,2016-03-12T16:37:54Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'irrational', 'behavior', 'econ', 'economics', 'economomic', 'behavioral', 'decision-making', 'individual', 'nudge theory', 'prices', 'price', 'perception', 'market', 'marketing', 'bubble', 'irrational exuberance', 'bubbles', 'investors', 'investment', 'keynes', 'ultimatum', 'loss aversion']",918088,18282,629,PT10M34S,true
"Cartesian Skepticism - Neo, Meet Rene: Crash Course Philosophy #5",MLKrmw906TM,2016-03-07T23:00:01Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse']",2621051,48967,2195,PT10M1S,true
Game Theory and Oligopoly: Crash Course Economics #26,PCcVODWm-oY,2016-03-06T00:52:36Z,"['Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'oligopoly', 'monopoly', 'econ', 'economics', 'game', 'perfect competition', 'competition', 'game theory', ""prisoner's dilemma"", 'product', 'markets', 'market', 'monopolistic', 'mcdonalds', 'burger king', 'apple', 'samsung', 'advertisement', 'advertising', 'quality', 'customer service', 'john green']",1588059,27482,930,PT9M56S,true
Foreign Policy: Crash Course Government and Politics #50,PMhIQNkO_Y0,2016-03-05T01:46:23Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'craig benzine', 'us government', 'civics', 'government and politics', 'foreign policy', 'environmental policy', 'public good', 'security', 'war', 'united nations', 'un', 'nato', 'nafta', 'world trade organization', 'wto', 'world war 1', 'world war 2', 'george washington', 'politics', 'global war on terror']",833788,11753,831,PT10M,true
Leonardo DiCaprio & The Nature of Reality: Crash Course Philosophy #4,IV-8YsyghbU,2016-02-29T22:00:00Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'philosophy', 'inception', 'plato', 'allegory of the cave', 'humanities', 'leonardo dicaprio']",2541443,47556,2281,PT9M3S,true
Social Policy: Crash Course Government and Politics #49,mlxLX8Fto_A,2016-02-27T18:01:19Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'craig benzine', 'civics', 'us government and politics', 'social policy', 'social security', 'education', 'healthcare', 'risk', 'unemployment', 'poverty', 'individualism', 'new deal', 'food stamps', 'welfare', 'snap', 'afdc', 'aid to families with dependent children', 'medicare', 'medicaid', 'welfare reform act', 'velveeta sausage cheese dip']",531184,6105,636,PT8M54S,true
Monopolies and Anti-Competitive Markets: Crash Course Economics #25,Sb_-wfmJnHA,2016-02-27T01:56:05Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'crash course', 'adriene hill', 'jacob clifford', 'monopoly', 'oligopoly', 'econ', 'economics', 'study', 'exam', 'market', 'markets', 'competition', 'food trucks', 'license']",1132521,14896,954,PT10M17S,true
How to Argue - Induction & Abduction: Crash Course Philosophy #3,-wrCpLJ1XAw,2016-02-22T23:56:03Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'philosophy', 'education', 'humanities', 'learning', 'induction', 'abduction', 'logic', 'inductive reasoning', 'abductive reasoning']",2930919,53618,1731,PT10M18S,true
Crash Course Physics Preview,OoO5d5P0Jn4,2016-02-18T19:59:36Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse']",1723884,33452,2799,PT2M36S,true
"Revenue, Profits, and Price: Crash Course Economics #24",UWImfFax8Ew,2016-02-17T23:52:14Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'econ', 'economics', 'revenue', 'price', 'cost', 'profit', 'loss', 'profits', 'produce', 'marginal cost', 'marginal', 'margin', 'business', 'pizza', 'sunk cost', 'sunk', 'dating', 'boyfriend', 'girlfriend']",828209,12691,500,PT11M10S,true
How to Argue - Philosophical Reasoning: Crash Course Philosophy #2,NKEhdsnKKHs,2016-02-16T17:15:50Z,"['John Green', 'Hank Green', 'vlogbrothers', 'Crash Course', 'crashcourse', 'education', 'humanities', 'philosophy', 'arguing', 'induction', 'abduction', 'tripartite soul', 'plato']",4688075,91501,3782,PT9M43S,true