-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathradiolab.xml
More file actions
3794 lines (2657 loc) · 248 KB
/
radiolab.xml
File metadata and controls
3794 lines (2657 loc) · 248 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0">
<channel>
<title>RadioLab but it's all episodes</title>
<link>https://github.com/xjcl/planetmoney-rss/tree/gh-pages</link>
<image><url>https://media.npr.org/images/podcasts/primary/icon_452538884-e2b3a7cfb90f8695d1773e05a81788dbe544e535-s400-c85.png</url></image>
<description>RadioLab all episodes</description>
<item>
<description>Who are the soccer moms of the 2020 election? We set out to find them.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20blocparty.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20blocparty.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20blocparty.mp3</link>
<pubDate>Fri, 2 November 2020 20:33:00 -0400</pubDate>
<title>Bloc Party | Radiolab | WNYC Studios</title>
</item>
<item>
<description>How important is the way you walk? Well, if you&rsquo;re a baboon it can flip the entire power structure of your troop on it&rsquo;s head. At least when it comes to breakfast.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20howtowinfriendsandinfluencebaboons.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20howtowinfriendsandinfluencebaboons.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20howtowinfriendsandinfluencebaboons.mp3</link>
<pubDate>Fri, 31 October 2020 20:33:00 -0400</pubDate>
<title>How to Win Friends and Influence Baboons | Radiolab | WNYC Studios</title>
</item>
<item>
<description>If a president happened to break a few political norms and decide, in the face of defeat, to fight instead of concede, what would actually happen? Today we choose our own adventure.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership2020whatifwithfix.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership2020whatifwithfix.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership2020whatifwithfix.mp3</link>
<pubDate>Fri, 23 October 2020 20:33:00 -0400</pubDate>
<title>What If? | Radiolab | WNYC Studios</title>
</item>
<item>
<description>How did the Supreme Court get so supreme? On this episode of&nbsp;More Perfect, we go all the way back to&nbsp;a case that, in a lot of ways, started it all.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20kittenskick.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20kittenskick.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20kittenskick.mp3</link>
<pubDate>Fri, 8 October 2020 20:33:00 -0400</pubDate>
<title>Kittens Kick The Giggly Blue Robot All Summer | Radiolab | WNYC Studios</title>
</item>
<item>
<description>A look at what happens when the police don&rsquo;t do the one thing you expect them to.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20nospecialduty.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20nospecialduty.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20nospecialduty.mp3</link>
<pubDate>Fri, 2 October 2020 20:33:00 -0400</pubDate>
<title>No Special Duty | Radiolab | WNYC Studios</title>
</item>
<item>
<description>It&rsquo;s the dead of night, you&rsquo;re wide awake. And you&rsquo;re not alone. So we put a phone number on twitter, and spent all night talking to the sleepless among us.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20insomnialine.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20insomnialine.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20insomnialine.mp3</link>
<pubDate>Fri, 25 September 2020 20:33:00 -0400</pubDate>
<title>Insomnia Line | Radiolab | WNYC Studios</title>
</item>
<item>
<description>How&nbsp;Ruth Bader Ginsburg used a&nbsp;trojan horse, filled&nbsp;with frat boys and beer, to win a battle for gender equality.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20sexappeal.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20sexappeal.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20sexappeal.mp3</link>
<pubDate>Fri, 19 September 2020 20:33:00 -0400</pubDate>
<title>More Perfect: Sex Appeal | Radiolab | WNYC Studios</title>
</item>
<item>
<description>We plunge into a black hole, take a trip over Niagara Falls, and upend some myths about falling cats.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20falling.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20falling.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20falling.mp3</link>
<pubDate>Fri, 17 September 2020 20:33:00 -0400</pubDate>
<title>Falling | Radiolab | WNYC Studios</title>
</item>
<item>
<description>What can flashing lights and an eerie reverberating sound do for the brain of someone suffering from Alzheimer&rsquo;s? We update one of our favorite episodes.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20bringinggammabackagain.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20bringinggammabackagain.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20bringinggammabackagain.mp3</link>
<pubDate>Fri, 11 September 2020 20:33:00 -0400</pubDate>
<title>Bringing Gamma Back, Again | Radiolab | WNYC Studios</title>
</item>
<item>
<description>There&rsquo;s a new bug popping up around the world. Or it might just be an old bug that finally met its moment.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20fungusamungus_reup.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20fungusamungus_reup.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20fungusamungus_reup.mp3</link>
<pubDate>Fri, 4 September 2020 20:33:00 -0400</pubDate>
<title>Fungus Amungus | Radiolab | WNYC Studios</title>
</item>
<item>
<description>How&nbsp;the right words can have the wrong meanings, and the best translations lead us to an understanding that's way deeper than language.&nbsp;</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20translationrerun.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20translationrerun.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20translationrerun.mp3</link>
<pubDate>Fri, 27 August 2020 20:33:00 -0400</pubDate>
<title>Translation | Radiolab | WNYC Studios</title>
</item>
<item>
<description>In this&nbsp;adapted piece&nbsp;by Kerning Cultures, we take a road trip across America -&nbsp;starting&nbsp;with two Jads and&nbsp;ending&nbsp;with forty-seven Lebanons.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20lebanonusa.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20lebanonusa.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20lebanonusa.mp3</link>
<pubDate>Fri, 21 August 2020 20:33:00 -0400</pubDate>
<title>Lebanon, USA | Radiolab | WNYC Studios</title>
</item>
<item>
<description>In the 1980s, as China was modernizing, they ran into a problem. There was no way to fit their 70,000 plus character language on a QWERTY keyboard. Today, the story of how they did it.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20thewubieffect.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20thewubieffect.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20thewubieffect.mp3</link>
<pubDate>Fri, 14 August 2020 20:33:00 -0400</pubDate>
<title>The Wubi Effect | Radiolab | WNYC Studios</title>
</item>
<item>
<description>A look at two groups of uncounted Americans who want to have a say in our democracy. Plus, Latif has a new show on Netflix!</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20uncounted.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20uncounted.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20uncounted.mp3</link>
<pubDate>Fri, 7 August 2020 20:33:00 -0400</pubDate>
<title>Uncounted | Radiolab | WNYC Studios</title>
</item>
<item>
<description>From the brightest star, to the most elemental particle, scientists are considering strange solutions for covid-19.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20invisibleallies.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20invisibleallies.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20invisibleallies.mp3</link>
<pubDate>Fri, 31 July 2020 20:33:00 -0400</pubDate>
<title>Invisible Allies | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Horseshoe crabs harbor a half-billion-year-old secret: a superpower that helped them outlive&nbsp;the dinosaurs. But it hasn&rsquo;t just been saving their butts, it&rsquo;s been saving ours too.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20babybluebloodupdate.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20babybluebloodupdate.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20babybluebloodupdate.mp3</link>
<pubDate>Fri, 24 July 2020 20:33:00 -0400</pubDate>
<title>Baby Blue Blood Drive | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Thinking about our future, we look back on the aftermath of a century-old pandemic.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatchesfrom1918.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatchesfrom1918.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatchesfrom1918.mp3</link>
<pubDate>Fri, 17 July 2020 20:33:00 -0400</pubDate>
<title>Dispatches from 1918 | Radiolab | WNYC Studios</title>
</item>
<item>
<description>For 126 years, Mississippi has had the Confederate battle flag on their state flag.&nbsp;Today, the dramatic behind-the-scenes story of it coming down.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20flagandfury.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20flagandfury.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20flagandfury.mp3</link>
<pubDate>Fri, 12 July 2020 20:33:00 -0400</pubDate>
<title>The Flag and the Fury | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Jad gives a TED talk about his life as a journalist and how&nbsp;Radiolab&nbsp;has evolved over the years.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership20thethird.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership20thethird.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership20thethird.mp3</link>
<pubDate>Fri, 25 June 2020 20:33:00 -0400</pubDate>
<title>The Third. A TED Talk. | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Breastfeeding, beheadings and bombings, Facebook has rules to handle them all. Today, we explore those rules and ask what they tell us about the future of free speech. &nbsp;</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20postnoevilredux.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20postnoevilredux.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20postnoevilredux.mp3</link>
<pubDate>Fri, 19 June 2020 20:33:00 -0400</pubDate>
<title>Post No Evil Redux | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Today, an incident of racial profiling, a confrontation with scientific racism, and the liberation of RNA.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20liberationrnafix.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20liberationrnafix.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20liberationrnafix.mp3</link>
<pubDate>Fri, 13 June 2020 20:33:00 -0400</pubDate>
<title>The Liberation of RNA | Radiolab | WNYC Studios</title>
</item>
<item>
<description>How a diabetic, a cop, and a bottle of orange juice changed the way we police, forever.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20graham.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20graham.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20graham.mp3</link>
<pubDate>Fri, 7 June 2020 20:33:00 -0400</pubDate>
<title>Graham | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Nina Simone: what she told us then, and tells us now.&nbsp;</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_extras/radiolab_extras20nina.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_extras/radiolab_extras20nina.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_extras/radiolab_extras20nina.mp3</link>
<pubDate>Fri, 6 June 2020 20:33:00 -0400</pubDate>
<title>Nina | Radiolab | WNYC Studios</title>
</item>
<item>
<description>From a bio-safety lab to the woods of Tennessee, we explore the rhythms that shape our work, our lives, and our bodies.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20strangetimes.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20strangetimes.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20strangetimes.mp3</link>
<pubDate>Fri, 29 May 2020 20:33:00 -0400</pubDate>
<title>Dispatch 6: Strange Times | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Beethoven, like you've never heard him before.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20speedybeetrerun.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20speedybeetrerun.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20speedybeetrerun.mp3</link>
<pubDate>Fri, 22 May 2020 20:33:00 -0400</pubDate>
<title>Speedy Beet | Radiolab | WNYC Studios</title>
</item>
<item>
<description>A mile under the ocean, we get to watch an octopus perform a heroic act of heart and determination.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20octomom.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20octomom.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20octomom.mp3</link>
<pubDate>Fri, 15 May 2020 20:33:00 -0400</pubDate>
<title>Octomom | Radiolab | WNYC Studios</title>
</item>
<item>
<description>A conversation with Lulu Miller about chaos, science, and her new book, Why Fish Don&rsquo;t Exist.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20whyfishdontexist.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20whyfishdontexist.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20whyfishdontexist.mp3</link>
<pubDate>Fri, 13 May 2020 20:33:00 -0400</pubDate>
<title>Why Fish Don't Exist | Radiolab | WNYC Studios</title>
</item>
<item>
<description>David and Dominique have something in common.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20davidanddominique.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20davidanddominique.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20davidanddominique.mp3</link>
<pubDate>Fri, 8 May 2020 20:33:00 -0400</pubDate>
<title>David and Dominique | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Jad tracks an emergency room doctor on the frontlines treating Covid-19.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dontstopbelievinfix.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dontstopbelievinfix.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dontstopbelievinfix.mp3</link>
<pubDate>Fri, 6 May 2020 20:33:00 -0400</pubDate>
<title>Dispatch 5: Don't Stop Believin' | Radiolab | WNYC Studios</title>
</item>
<item>
<description>America represents many different things to many different people. What if you could only choose one thing, one physical object, to represent it all?&nbsp;</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership20atomicartifacts.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership20atomicartifacts.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership20atomicartifacts.mp3</link>
<pubDate>Fri, 24 April 2020 20:33:00 -0400</pubDate>
<title>Atomic Artifacts | Radiolab | WNYC Studios</title>
</item>
<item>
<description>&nbsp;What&rsquo;s the one thing you&rsquo;d pass on if we all disappeared tomorrow?</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20thecataclysmsentencefix2.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20thecataclysmsentencefix2.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20thecataclysmsentencefix2.mp3</link>
<pubDate>Fri, 18 April 2020 20:33:00 -0400</pubDate>
<title>The Cataclysm Sentence | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Everyone on the planet has been told to stay six feet away from each other. Why six? And is six even the right number?</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatch4sixfeet.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatch4sixfeet.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatch4sixfeet.mp3</link>
<pubDate>Fri, 11 April 2020 20:33:00 -0400</pubDate>
<title>Dispatch 4: Six Feet | Radiolab | WNYC Studios</title>
</item>
<item>
<description>We ponder our insignificant place in the universe, and boldly go after stories of romance &amp; cynicism in Outer Space.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20spacererun.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20spacererun.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20spacererun.mp3</link>
<pubDate>Fri, 6 April 2020 20:33:00 -0400</pubDate>
<title>Space | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Could a century-old treatment become our best weapon in the fight against Covid-19?</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatch3sharedimmunity.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatch3sharedimmunity.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatch3sharedimmunity.mp3</link>
<pubDate>Fri, 3 April 2020 20:33:00 -0400</pubDate>
<title>Dispatch 3: Shared Immunity | Radiolab | WNYC Studios</title>
</item>
<item>
<description>The forgotten origins of a lifesaving ritual we&rsquo;re all acting out 20 times a day, every single day.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatch2ignazsemmelweisday.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatch2ignazsemmelweisday.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatch2ignazsemmelweisday.mp3</link>
<pubDate>Fri, 1 April 2020 20:33:00 -0400</pubDate>
<title>Dispatch 2: Every Day is Ignaz Semmelweis Day | Radiolab | WNYC Studios</title>
</item>
<item>
<description>On this episode, we offer a numerical duet - one, an essay about the trick at the center of exponential curves, the other, about all the things we aren&rsquo;t counting.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatch1numbers.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatch1numbers.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20dispatch1numbers.mp3</link>
<pubDate>Fri, 27 March 2020 20:33:00 -0400</pubDate>
<title>Dispatch 1: Numbers | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Despite being cleared for transfer home in 2016, Abdul Latif Nasser is still stuck at Guantanamo. Why? Latif digs for answers, and spoiler: it goes all the way to the top.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership20theotherlatif6.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership20theotherlatif6.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership20theotherlatif6.mp3</link>
<pubDate>Fri, 17 March 2020 20:33:00 -0400</pubDate>
<title>The Other Latif: Episode 6 | Radiolab | WNYC Studios</title>
</item>
<item>
<description>What happened to Abdul Latif at Guantanamo Bay?&nbsp; Latif visits the &ldquo;legal equivalent of outer space,&rdquo; and manages to see his namesake &hellip; maybe.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif5.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif5.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif5.mp3</link>
<pubDate>Fri, 6 March 2020 20:33:00 -0400</pubDate>
<title>The Other Latif: Episode 5 | Radiolab | WNYC Studios</title>
</item>
<item>
<description>We&rsquo;re not done with Episode 5 yet! While we wait, Jad and Latif chat about Abdul Latif&rsquo;s response to the series, deleted scenes, and the nudges that make us who we are.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatifbonus.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatifbonus.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatifbonus.mp3</link>
<pubDate>Fri, 3 March 2020 20:33:00 -0400</pubDate>
<title>The Other Latif: Bonus Episode! | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Latif investigates Abdul Latif&rsquo;s classified time in Afghanistan, and amidst the explosions and rubble, finds a jailhouse interview that changes how he sees his namesake.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif4.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif4.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif4.mp3</link>
<pubDate>Fri, 25 February 2020 20:33:00 -0400</pubDate>
<title>The Other Latif: Episode 4 | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Abdul Latif Nasser gets a job working on a sunflower farm in Sudan.&nbsp; What on earth could be suspicious about that?</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif3.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif3.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif3.mp3</link>
<pubDate>Fri, 18 February 2020 20:33:00 -0400</pubDate>
<title>The Other Latif: Episode 3 | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Latif travels to Morocco to trace his namesake's possible onramp into extremism and is surprised by what he finds.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif2.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif2.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif2.mp3</link>
<pubDate>Fri, 11 February 2020 20:33:00 -0400</pubDate>
<title>The Other Latif: Episode 2 | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Radiolab&rsquo;s Latif Nasser is stunned to find he shares his name with detainee 244 at Guantanamo Bay. This man was cleared to leave Gitmo in 2016, so why is he still stuck there?</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif1.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif1.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20theotherlatif1.mp3</link>
<pubDate>Fri, 4 February 2020 20:33:00 -0400</pubDate>
<title>The Other Latif: Episode 1 | Radiolab | WNYC Studios</title>
</item>
<item>
<description>An award show you&rsquo;ve never heard of before.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20thebobbys.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20thebobbys.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20thebobbys.mp3</link>
<pubDate>Fri, 31 January 2020 20:33:00 -0400</pubDate>
<title>The Bobbys | Radiolab | WNYC Studios</title>
</item>
<item>
<description>When you run the math, who comes out on top, the living or the dead?</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20bodycount.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20bodycount.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20bodycount.mp3</link>
<pubDate>Fri, 24 January 2020 20:33:00 -0400</pubDate>
<title>Body Count | Radiolab | WNYC Studios</title>
</item>
<item>
<description>How one sentence -- just 60 words written in the hours after the September 11 attacks -- became the legal foundation for the "war on terror."</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20_60words.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20_60words.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast20_60words.mp3</link>
<pubDate>Fri, 7 January 2020 20:33:00 -0400</pubDate>
<title>60 Words | Radiolab | WNYC Studios</title>
</item>
<item>
<description>An exploration into our very beginnings, of the first strides we took to become us.&nbsp;</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership19managainsthorse.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership19managainsthorse.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership19managainsthorse.mp3</link>
<pubDate>Fri, 28 December 2019 20:33:00 -0400</pubDate>
<title>Man Against Horse | Radiolab | WNYC Studios</title>
</item>
<item>
<description>In 1822 a stork that got speared like a kabob helped baffled scientists answer a&nbsp;thousand-year-old question. Of course that led to another question, then another, then another ...</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19thereandbackagain.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19thereandbackagain.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19thereandbackagain.mp3</link>
<pubDate>Fri, 18 December 2019 20:33:00 -0400</pubDate>
<title>There and Back Again | Radiolab | WNYC Studios</title>
</item>
<item>
<description>This hour we investigate the objects around us, their power to move us, and whether it's better to look back or move on, hold on tight or just let go.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab/radiolab053014.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab/radiolab053014.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab/radiolab053014.mp3</link>
<pubDate>Fri, 12 December 2019 20:33:00 -0400</pubDate>
<title>Things | Radiolab | WNYC Studios</title>
</item>
<item>
<description>What happens when a ragtag bunch of freedom fighters troll their despotic dictator from afar?&nbsp;</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19breakingbongo.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19breakingbongo.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19breakingbongo.mp3</link>
<pubDate>Fri, 27 November 2019 20:33:00 -0400</pubDate>
<title>Breaking Bongo | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Today, two new technological tricks that together could&nbsp;invade our past selves&nbsp;and rewrite the rules of credibility. Also,&nbsp;we release something terrible into&nbsp;the world.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19breakingnews.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19breakingnews.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19breakingnews.mp3</link>
<pubDate>Fri, 19 November 2019 20:33:00 -0400</pubDate>
<title>Breaking News | Radiolab | WNYC Studios</title>
</item>
<item>
<description>On the mountaintop, we go back in time,&nbsp;and across the world - to discover&nbsp;the unlikely connection between Dolly's home and Jad's father Naji.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19neonmoss.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19neonmoss.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19neonmoss.mp3</link>
<pubDate>Fri, 8 November 2019 20:33:00 -0400</pubDate>
<title>Dolly Parton's America: Neon Moss | Radiolab | WNYC Studios</title>
</item>
<item>
<description>We explore songs with the power to transcend language and the triumphant return of the Elvis of Afghanistan.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19songsthatcrossborders.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19songsthatcrossborders.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19songsthatcrossborders.mp3</link>
<pubDate>Fri, 30 October 2019 20:33:00 -0400</pubDate>
<title>Songs that Cross Borders | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Can you fit the identity of a whole nation into a dance? Of course not. But we tried anyway.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19birdieinthecage.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19birdieinthecage.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19birdieinthecage.mp3</link>
<pubDate>Fri, 23 October 2019 20:33:00 -0400</pubDate>
<title>Birdie in the Cage | Radiolab | WNYC Studios</title>
</item>
<item>
<description>We enter the Dollyverse.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19sadasssongs.mp3?aw_0_awz.podcast_clash_enabled=1</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19sadasssongs.mp3?aw_0_awz.podcast_clash_enabled=1" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19sadasssongs.mp3?aw_0_awz.podcast_clash_enabled=1</link>
<pubDate>Fri, 16 October 2019 20:33:00 -0400</pubDate>
<title>Radiolab Presents: Dolly Parton's America | Radiolab | WNYC Studios</title>
</item>
<item>
<description>We scour the Atlantic Ocean for an answer to one of life&rsquo;s slipperiest mysteries.&nbsp;</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19silkylove.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19silkylove.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19silkylove.mp3</link>
<pubDate>Fri, 27 September 2019 20:33:00 -0400</pubDate>
<title>Silky Love | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Do we really live in a selfish, dog-eat-dog world? Or has evolution carved out a hidden code that rewards genuine cooperation?</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19titfortat.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19titfortat.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19titfortat.mp3</link>
<pubDate>Fri, 17 September 2019 20:33:00 -0400</pubDate>
<title>Tit for Tat | Radiolab | WNYC Studios</title>
</item>
<item>
<description>From the stage to the cage, a series of showdowns that leave us wondering about the price of being right ... or coming from the left.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19whatsleftwhenright.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19whatsleftwhenright.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19whatsleftwhenright.mp3</link>
<pubDate>Fri, 5 September 2019 20:33:00 -0400</pubDate>
<title>What's Left When You're Right? | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Historians say the&nbsp;past is a foreign country,&nbsp;but often&nbsp;it feels more like a dream. Today we talk to someone&nbsp;who has mastered the art of&nbsp;navigating the&nbsp;dreamscapes of our past.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19thememorypalace.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19thememorypalace.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19thememorypalace.mp3</link>
<pubDate>Fri, 28 August 2019 20:33:00 -0400</pubDate>
<title>The Memory Palace | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Today, we find ourselves in a room in Cleveland, Ohio, where a group of journalists are challenging the way we think about newspapers, and ourselves.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19rtbf.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19rtbf.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19rtbf.mp3</link>
<pubDate>Fri, 23 August 2019 20:33:00 -0400</pubDate>
<title>Right to be Forgotten | Radiolab | WNYC Studios</title>
</item>
<item>
<description>We explore three little words embedded in the 8th Amendment of the U.S. Constitution: &ldquo;cruel and unusual.&rdquo;</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19cruelandunusual.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19cruelandunusual.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19cruelandunusual.mp3</link>
<pubDate>Fri, 9 August 2019 20:33:00 -0400</pubDate>
<title>More Perfect: Cruel and Unusual | Radiolab | WNYC Studios</title>
</item>
<item>
<description>What&rsquo;s the smartest animal in the world? We figure it out the best way we know how... an animal game show.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19worldssmartestanimal_intelligence-series.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19worldssmartestanimal_intelligence-series.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19worldssmartestanimal_intelligence-series.mp3</link>
<pubDate>Fri, 30 July 2019 20:33:00 -0400</pubDate>
<title>G: The World's Smartest Animal | Radiolab | WNYC Studios</title>
</item>
<item>
<description>A scientist launches a controversial genetic test for intelligence: what does it really tell us?</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19unnaturalselection_intelligence-series.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19unnaturalselection_intelligence-series.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19unnaturalselection_intelligence-series.mp3</link>
<pubDate>Fri, 26 July 2019 20:33:00 -0400</pubDate>
<title>G: Unnatural Selection | Radiolab | WNYC Studios</title>
</item>
<item>
<description>A journey to one of the darkest sides of humanity&rsquo;s attempts to measure the human mind and put people in boxes.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19unfitfix_intelligence-series.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19unfitfix_intelligence-series.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19unfitfix_intelligence-series.mp3</link>
<pubDate>Fri, 17 July 2019 20:33:00 -0400</pubDate>
<title>G: Unfit | Radiolab | WNYC Studios</title>
</item>
<item>
<description>When Albert Einstein died, someone stole his brain &mdash; and kicked off a scavenger hunt for genius that won&rsquo;t seem to let us go.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19relativegenius_intelligence-series.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19relativegenius_intelligence-series.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19relativegenius_intelligence-series.mp3</link>
<pubDate>Fri, 28 June 2019 20:33:00 -0400</pubDate>
<title>G: Relative Genius | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Can IQ tests ever be used ... for good? This episode, we meet a few people who think they can be.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19problemspace_intelligence-series.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19problemspace_intelligence-series.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19problemspace_intelligence-series.mp3</link>
<pubDate>Fri, 14 June 2019 20:33:00 -0400</pubDate>
<title>G: Problem Space | Radiolab | WNYC Studios</title>
</item>
<item>
<description>More than a million American kids a year get IQ tested, but in the state of California, if your kid is Black, they almost surely won&rsquo;t be given one.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19larryp1__intelligence-series.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19larryp1__intelligence-series.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19larryp1__intelligence-series.mp3</link>
<pubDate>Fri, 7 June 2019 20:33:00 -0400</pubDate>
<title>G: The Miseducation of Larry P | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Whether it comes from government spokespeople or celebrity publicists, the phrase &ldquo;can neither confirm nor deny&rdquo; is the perfect non-denial denial.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19glomarredux.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19glomarredux.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19glomarredux.mp3</link>
<pubDate>Fri, 4 June 2019 20:33:00 -0400</pubDate>
<title>Neither Confirm Nor Deny | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Two people make a decision that would lead to a legal and moral puzzle about how we balance accountability and forgiveness.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19thegoodsamaritan.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19thegoodsamaritan.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19thegoodsamaritan.mp3</link>
<pubDate>Fri, 24 May 2019 20:33:00 -0400</pubDate>
<title>The Good Samaritan | Radiolab | WNYC Studios</title>
</item>
<item>
<description>What do a hacked Belgian election, a falling airplane and a fleet of runaway cars all have in common? The answer just might lie in the stars.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19bitflipfix.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19bitflipfix.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19bitflipfix.mp3</link>
<pubDate>Fri, 8 May 2019 20:33:00 -0400</pubDate>
<title>Bit Flip | Radiolab | WNYC Studios</title>
</item>
<item>
<description>At a mysterious, muddy site in North Dakota, scientists claim they have a three-hour snapshot of the earth 66 million years ago, on the day the dinosaurs died.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19dinopocalypseredux.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19dinopocalypseredux.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19dinopocalypseredux.mp3</link>
<pubDate>Fri, 3 May 2019 20:33:00 -0400</pubDate>
<title>Dinopocalypse Redux | Radiolab | WNYC Studios</title>
</item>
<item>
<description>During World War II, something happened that nobody ever talks about. A&nbsp;tale of mysterious balloons, children caught up in the winds of war. And the terror of silence.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19fugo.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19fugo.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19fugo.mp3</link>
<pubDate>Fri, 25 April 2019 20:33:00 -0400</pubDate>
<title>Fu-Go | Radiolab | WNYC Studios</title>
</item>
<item>
<description>We travel to the limbo space between foreign and domestic to find the up and downsides of being a US citizen.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership19americanish.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership19americanish.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_membership/radiolab_membership19americanish.mp3</link>
<pubDate>Fri, 19 April 2019 20:33:00 -0400</pubDate>
<title>Americanish | Radiolab | WNYC Studios</title>
</item>
<item>
<description>What if citizenship was a popularity contest... and you just lost?</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast040519forwhomcowbelltolls.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast040519forwhomcowbelltolls.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast040519forwhomcowbelltolls.mp3</link>
<pubDate>Fri, 29 March 2019 20:33:00 -0400</pubDate>
<title>For Whom the Cowbell Tolls | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Stories of striving, grasping, tripping, and falling for happiness, perfection, and Bliss.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19bliss.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19bliss.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19bliss.mp3</link>
<pubDate>Fri, 21 March 2019 20:33:00 -0400</pubDate>
<title>Bliss | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Parasitic genes, public poop, and the eerie sound of a subway train. What is ... the answer to your stupid question?</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19askinganotherfriend.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19askinganotherfriend.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19askinganotherfriend.mp3</link>
<pubDate>Fri, 8 March 2019 20:33:00 -0400</pubDate>
<title>Asking for Another Friend | Radiolab | WNYC Studios</title>
</item>
<item>
<description>This might be a stupid question, but...</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19askingforfriend.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19askingforfriend.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19askingforfriend.mp3</link>
<pubDate>Fri, 1 March 2019 20:33:00 -0400</pubDate>
<title>Asking for a Friend | Radiolab | WNYC Studios</title>
</item>
<item>
<description>The surprising ways that loops steer&hellip; and sometimes derail&hellip; our lives.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19loops.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19loops.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19loops.mp3</link>
<pubDate>Fri, 22 February 2019 20:33:00 -0400</pubDate>
<title>Loops | Radiolab | WNYC Studios</title>
</item>
<item>
<description>In one corner of the natural world, beauty may be beating brawn.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19beautypuzzle.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19beautypuzzle.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19beautypuzzle.mp3</link>
<pubDate>Fri, 8 February 2019 20:33:00 -0400</pubDate>
<title>The Beauty Puzzle | Radiolab | WNYC Studios</title>
</item>
<item>
<description>One of the worst players in the NHL gets voted into the All-Star Game.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19punchline.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19punchline.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast19punchline.mp3</link>
<pubDate>Fri, 16 January 2019 20:33:00 -0400</pubDate>
<title>The Punchline | Radiolab | WNYC Studios</title>
</item>
<item>
<description>The question we get more than any other&nbsp;is &ldquo;Where do all those stories come from?&rdquo;&nbsp; Today, for the first time ever, we spill our story-finding&nbsp;secrets.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18bonusscavengerhunt.mp3?aisGetOriginalStream=true</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18bonusscavengerhunt.mp3?aisGetOriginalStream=true" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18bonusscavengerhunt.mp3?aisGetOriginalStream=true</link>
<pubDate>Fri, 28 December 2018 20:33:00 -0400</pubDate>
<title>BONUS: Radiolab Scavenger Hunt | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Today, a king, a clockmaker, and a monk come together to forge a manmade miracle.&nbsp;&nbsp;We tell a five-hundred-year-old legend about robots, death, and a divine deal.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18clockworkmiracle.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18clockworkmiracle.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18clockworkmiracle.mp3</link>
<pubDate>Fri, 27 December 2018 20:33:00 -0400</pubDate>
<title>A Clockwork Miracle | Radiolab | WNYC Studios</title>
</item>
<item>
<description>When someone hurts you, what do you really want from them? From the Canadian House of Commons to a California hospital, we go looking for the right way to say you&rsquo;re sorry. &nbsp;</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18_apologetical.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18_apologetical.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18_apologetical.mp3</link>
<pubDate>Fri, 21 December 2018 20:33:00 -0400</pubDate>
<title>Apologetical | Radiolab | WNYC Studios</title>
</item>
<item>
<description>This is a story of identity, making amends and John Smid&rsquo;s reckoning with his life.&nbsp;</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18unerasedsmid4.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18unerasedsmid4.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18unerasedsmid4.mp3</link>
<pubDate>Fri, 28 November 2018 20:33:00 -0400</pubDate>
<title>UnErased: Smid | Radiolab | WNYC Studios</title>
</item>
<item>
<description>A series of&nbsp;serendipitous moments leads to a change of heart in one man that eventually changes an entire field of science.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18unerased1.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18unerased1.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18unerased1.mp3</link>
<pubDate>Fri, 22 November 2018 20:33:00 -0400</pubDate>
<title>UnErased: Dr. Davison and the Gay Cure | Radiolab | WNYC Studios</title>
</item>
<item>
<description>On the eve of the midterm elections, we look at one tweak to voting that could help bring democracy back from the brink &hellip;</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18tweakthevote.mp3?aisGetOriginalStream=true</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18tweakthevote.mp3?aisGetOriginalStream=true" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18tweakthevote.mp3?aisGetOriginalStream=true</link>
<pubDate>Fri, 5 November 2018 20:33:00 -0400</pubDate>
<title>Tweak the Vote | Radiolab | WNYC Studios</title>
</item>
<item>
<description>For the 80th anniversary of Orson Welles' 1938 radio play "The War of the Worlds," we take a deep dive into one of the most controversial moments in broadcasting history.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18waroftheworlds.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18waroftheworlds.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18waroftheworlds.mp3</link>
<pubDate>Fri, 30 October 2018 20:33:00 -0400</pubDate>
<title>War of the Worlds | Radiolab | WNYC Studios</title>
</item>
<item>
<description>From hookups to apps to whips, we go looking for the key to a conversation that should be happening, but isn't.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18intheno3.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18intheno3.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18intheno3.mp3</link>
<pubDate>Fri, 26 October 2018 20:33:00 -0400</pubDate>
<title>In the No Part 3 | Radiolab | WNYC Studios</title>
</item>
<item>
<description>We dive into the gray zone of consent and&nbsp;wrestle with questions of culpability, generational divides, and the utility of fear in changing our culture.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18intheno2.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18intheno2.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18intheno2.mp3</link>
<pubDate>Fri, 19 October 2018 20:33:00 -0400</pubDate>
<title>In the No Part 2 | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Kaitlin Prest had a lot of things to say about the word "No." And on her podcast "The Heart," she said them in a way we couldn't shake. Today, we talk to&nbsp;Kaitlin, and hear her story.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18intheno1.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18intheno1.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18intheno1.mp3</link>
<pubDate>Fri, 11 October 2018 20:33:00 -0400</pubDate>
<title>In the No Part 1 | Radiolab | WNYC Studios</title>
</item>
<item>
<description>We&nbsp;decided to shake things up at the show...bear with us.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18breakingbadnews.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18breakingbadnews.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18breakingbadnews.mp3</link>
<pubDate>Fri, 28 September 2018 20:33:00 -0400</pubDate>
<title>Breaking Bad News Bears | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Today, a fast moving, sidestepping, gene-swapping free-for-all that would&rsquo;ve made Darwin&rsquo;s head spin.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18infectiveheredity.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18infectiveheredity.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18infectiveheredity.mp3</link>
<pubDate>Fri, 21 September 2018 20:33:00 -0400</pubDate>
<title>Infective Heredity | Radiolab | WNYC Studios</title>
</item>
<item>
<description>More Perfect is back with a Constitutional mix-tape and off-beat stories about each of the 27 Amendments.&nbsp;</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18mostperfectalbum.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18mostperfectalbum.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18mostperfectalbum.mp3</link>
<pubDate>Fri, 19 September 2018 20:33:00 -0400</pubDate>
<title>27: The Most Perfect Album | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Breastfeeding, beheadings and bombings, Facebook has rules to handle them all. Today, we explore those rules and ask what they tell us about the future of free speech. &nbsp;</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18postnoevil.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18postnoevil.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18postnoevil.mp3</link>
<pubDate>Fri, 17 August 2018 20:33:00 -0400</pubDate>
<title>Post No Evil | Radiolab | WNYC Studios</title>
</item>
<item>
<description>We wrestle with the dark side of human nature, and ask whether it's something we can ever really understand, or fully escape.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18badshow.mp3?aisGetOriginalStream=true</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18badshow.mp3?aisGetOriginalStream=true" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18badshow.mp3?aisGetOriginalStream=true</link>
<pubDate>Fri, 28 July 2018 20:33:00 -0400</pubDate>
<title>The Bad Show | Radiolab | WNYC Studios</title>
</item>
<item>
<description>If gonads are magical, and male and female are blurry&nbsp;categories, how the hell do you tell young&nbsp;people&nbsp;about the birds and the bees?</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18sexed.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18sexed.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18sexed.mp3</link>
<pubDate>Fri, 27 July 2018 20:33:00 -0400</pubDate>
<title>Gonads: Sex Ed | Radiolab | WNYC Studios</title>
</item>
<item>
<description>When Dana Zzyym applied for their first passport in 2014, there was one question they couldn&rsquo;t answer: male or female? This episode,&nbsp;biological realities and&nbsp;the power of words.</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18dana.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18dana.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18dana.mp3</link>
<pubDate>Fri, 22 July 2018 20:33:00 -0400</pubDate>
<title>Gonads: Dana | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Olympian&nbsp;Dutee Chand has drawn the spotlight not just for being one of the fastest Indian female runners ever: in 2014, she was banned after failing a &ldquo;gender test.&rdquo;&nbsp;</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18dutee.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18dutee.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18dutee.mp3</link>
<pubDate>Fri, 22 July 2018 20:33:00 -0400</pubDate>
<title>Gonads: Dutee | Radiolab | WNYC Studios</title>
</item>
<item>
<description>Science pushes back against the century-old notion that X equals girl and Y equals boy, and wonders: are we who we think we are?</description>
<guid>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18x_y_.mp3</guid>
<enclosure url=" https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18x_y_.mp3" type="audio/mpeg"/><link>https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18x_y_.mp3</link>
<pubDate>Fri, 30 June 2018 20:33:00 -0400</pubDate>
<title>Gonads: X & Y | Radiolab | WNYC Studios</title>
</item>
<item>
<description>When Annie Dauer was diagnosed with non-Hodgkin&rsquo;s lymphoma at 29, she took a chance on an experimental fertility procedure that sounds like science fiction: ovary freezing.</description>