-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1461 lines (934 loc) · 67 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<link href="http://gmpg.org/xfn/11" rel="profile">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<!-- Enable responsiveness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<meta name="apple-itunes-app" content="app-id=1025918026">
<title>
Pod Pod Pod · The best podcasts, in your ears
</title>
<!-- CSS -->
<link rel="stylesheet" href="/podpodpod-archive/public/css/poole.css">
<link rel="stylesheet" href="/podpodpod-archive/public/css/hyde.css">
<link rel="stylesheet" href="/podpodpod-archive/public/css/podpodpod.css">
<link rel="stylesheet" href="/podpodpod-archive/public/css/podigious-icons.css">
<link href='http://fonts.googleapis.com/css?family=Lato:900,700|Merriweather:300italic,300' rel='stylesheet' type='text/css'>
<!-- Icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/podpodpod-archive/public/apple-touch-icon-144-precomposed.png">
<link rel="shortcut icon" href="/podpodpod-archive/public/favicon.ico">
<!-- RSS -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-65867394-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<div class="sidebar">
<div class="container sidebar-sticky">
<div class="sidebar-logo">
<a href="/podpodpod-archive" class="logo">
<img src="/podpodpod-archive/public/artwork_1400.png" />
</a>
</div>
<div class="sidebar-about">
<p class="lead">A curated playlist of just the best podcasts—because sometimes the world of podcasts is loud and overwhelming. New episodes every Monday, Wednesday, and Friday.</p>
</div>
<nav class="sidebar-nav">
<ul>
<li><a class="sidebar-nav-item" target="_blank" href="https://itunes.apple.com/us/podcast/pod-pod-pod/id1025918026?mt=2">iTunes</a></li>
<li><a class="sidebar-nav-item" target="_blank" href="http://feed.podpodpodcast.com/podpodpodcast">Podcast RSS</a></li>
<!-- <li><a class="sidebar-nav-item" target="_blank" href="http://tinyletter.com/podpodpod">Email Newsletter</a></li> -->
<li><a class="sidebar-nav-item" target="_blank" href="https://twitter.com/podpodpodcast">@podpodpodcast</a></li>
<li><a class="sidebar-nav-item" target="_blank" href="https://twitter.com/jeffinitelyjeff">@jeffinitelyjeff</a></li>
</ul>
</nav>
</div>
</div>
<div class="content container">
<div class="posts">
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/37-99pi-expiration-labels">
99% Invisible #195<br/>↳ Best Enjoyed By
</a>
</h1>
<span class="post-date">15 Jan 2016</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'99% Invisible #195: Best Enjoyed By',url:'http://feeds.99percentinvisible.org/~r/99percentinvisible/~5/_hOTIDwvEyI/195-Best-Enjoyed-By.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'99% Invisible #195: Best Enjoyed By',url:'http://feeds.99percentinvisible.org/~r/99percentinvisible/~5/_hOTIDwvEyI/195-Best-Enjoyed-By.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (16.3 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/37-99pi-expiration-labels">
<img class="podcast-logo" src="/podpodpod-archive/public/img/99pi.jpg" />
</a>
<p>Where do food expiration labels come from, and what do they really mean?</p>
</div>
<a href="/podpodpod-archive/featured/37-99pi-expiration-labels"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/36-remembering-david-bowie">
Pop Culture Happy Hour <br/>↳ Small Batch: Remembering David Bowie
</a>
</h1>
<span class="post-date">14 Jan 2016</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Pop Culture Happy Hour: Small Batch: Remembering David Bowie',url:'http://play.podtrac.com/npr-510282/npr.mc.tritondigital.com/PCHH_PODCAST/media/anon.npr-mp3/npr/pchh/2016/01/20160111_pchh_davidbowie.mp3?orgId=1&d=634&p=510282&story=462668636&t=podcast&e=462668636&ft=pod&f=510282'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Pop Culture Happy Hour: Small Batch: Remembering David Bowie',url:'http://play.podtrac.com/npr-510282/npr.mc.tritondigital.com/PCHH_PODCAST/media/anon.npr-mp3/npr/pchh/2016/01/20160111_pchh_davidbowie.mp3?orgId=1&d=634&p=510282&story=462668636&t=podcast&e=462668636&ft=pod&f=510282'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (10.3 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/36-remembering-david-bowie">
<img class="podcast-logo" src="/podpodpod-archive/public/img/pchh.jpg" />
</a>
<p>“The song went on forever”</p>
</div>
<a href="/podpodpod-archive/featured/36-remembering-david-bowie"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/35-planet-money-hoverboards">
Planet Money #666<br/>↳ The Hoverboard Life
</a>
</h1>
<span class="post-date">04 Jan 2016</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Planet Money #666: The Hoverboard Life',url:'http://play.podtrac.com/npr-510289/npr.mc.tritondigital.com/NPR_510289/media/anon.npr-mp3/npr/pmoney/2015/11/20151127_pmoney_pmpod.mp3?orgId=1&d=1036&p=510289&story=457409868&t=podcast&e=457409868&ft=pod&f=510289'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Planet Money #666: The Hoverboard Life',url:'http://play.podtrac.com/npr-510289/npr.mc.tritondigital.com/NPR_510289/media/anon.npr-mp3/npr/pmoney/2015/11/20151127_pmoney_pmpod.mp3?orgId=1&d=1036&p=510289&story=457409868&t=podcast&e=457409868&ft=pod&f=510289'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (16.9 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/35-planet-money-hoverboards">
<img class="podcast-logo" src="/podpodpod-archive/public/img/planet_money.jpg" />
</a>
<p>Where did hoverboards come from?</p>
</div>
<a href="/podpodpod-archive/featured/35-planet-money-hoverboards"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/34-startup-gimlet-diversity">
StartUp Podcast #19<br/>↳ Diversity Report
</a>
</h1>
<span class="post-date">04 Jan 2016</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'StartUp Podcast #19: Diversity Report',url:'http://feeds.gimletmedia.com/~r/hearstartup/~5/5m0Tarj3XMs/238075970-hearstartup-19-diversity-report.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'StartUp Podcast #19: Diversity Report',url:'http://feeds.gimletmedia.com/~r/hearstartup/~5/5m0Tarj3XMs/238075970-hearstartup-19-diversity-report.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (41.8 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/34-startup-gimlet-diversity">
<img class="podcast-logo" src="/podpodpod-archive/public/img/startup.jpg" />
</a>
<p>An interesting look at the challenges, importance, and meaning of diversity for a company.</p>
</div>
<a href="/podpodpod-archive/featured/34-startup-gimlet-diversity"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/33-the-bright-sessions-1">
The Bright Sessions #1<br/>↳ Check Out: The Bright Sessions
</a>
</h1>
<span class="post-date">21 Dec 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'The Bright Sessions #1: Check Out: The Bright Sessions',url:'http://traffic.libsyn.com/thebrightsessions/01_-_Patient_12-D-10_Sam.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'The Bright Sessions #1: Check Out: The Bright Sessions',url:'http://traffic.libsyn.com/thebrightsessions/01_-_Patient_12-D-10_Sam.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (19 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/33-the-bright-sessions-1">
<img class="podcast-logo" src="/podpodpod-archive/public/img/bright_sessions.jpg" />
</a>
<p>Fiction podcasts have been on the rise lately, but I've found it very difficult to connect to most of them. But The Bright Sessions has hooked me in, with a great mix of intriguing science fiction premise, novel (but very natural) format, and serialization.</p>
</div>
<a href="/podpodpod-archive/featured/33-the-bright-sessions-1"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/32-reply-all-yik-yak-returns">
Reply All #46<br/>↳ Yik Yak Returns
</a>
</h1>
<span class="post-date">18 Nov 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Reply All #46: Yik Yak Returns',url:'http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/233702752-replyall-46-yik-yak-returns.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Reply All #46: Yik Yak Returns',url:'http://www.podtrac.com/pts/redirect.mp3/feeds.soundcloud.com/stream/233702752-replyall-46-yik-yak-returns.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (50.6 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/32-reply-all-yik-yak-returns">
<img class="podcast-logo" src="/podpodpod-archive/public/img/reply_all.jpg" />
</a>
<p>What racism looks like in our modern age.</p>
</div>
<a href="/podpodpod-archive/featured/32-reply-all-yik-yak-returns"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/31-99pi-water-fountains">
99% Invisible #188<br/>↳ Fountain Drinks
</a>
</h1>
<span class="post-date">16 Nov 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'99% Invisible #188: Fountain Drinks',url:'http://www.podtrac.com/pts/redirect.mp3/media.blubrry.com/99percentinvisible/cdn.99percentinvisible.org/wp-content/uploads/188-Fountain-Drinks.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'99% Invisible #188: Fountain Drinks',url:'http://www.podtrac.com/pts/redirect.mp3/media.blubrry.com/99percentinvisible/cdn.99percentinvisible.org/wp-content/uploads/188-Fountain-Drinks.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (33.4 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/31-99pi-water-fountains">
<img class="podcast-logo" src="/podpodpod-archive/public/img/99pi.jpg" />
</a>
<p>Another episode of 99% Invisible about the surprising and fascinating history of something we find extremely common: drinking water.</p>
</div>
<a href="/podpodpod-archive/featured/31-99pi-water-fountains"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/30-startup-gimlet-show-development">
StartUp Podcast #16<br/>↳ The Secret Formula
</a>
</h1>
<span class="post-date">11 Nov 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'StartUp Podcast #16: The Secret Formula',url:'http://feeds.gimletmedia.com/~r/hearstartup/~5/syyjlIjpY38/231752817-hearstartup-16-the-secret-formula.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'StartUp Podcast #16: The Secret Formula',url:'http://feeds.gimletmedia.com/~r/hearstartup/~5/syyjlIjpY38/231752817-hearstartup-16-the-secret-formula.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (43.6 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/30-startup-gimlet-show-development">
<img class="podcast-logo" src="/podpodpod-archive/public/img/startup.jpg" />
</a>
<p>A look at how Gimlet develops a new podcast idea. I always find it fascinating to learn more about the behind-the-scenes production of NPR-style podcasts. I think as listeners we have a vague sense that "yeah, it's scripted", but not really a sense as to how deep that goes; what we see is the tip of the iceberg of the work that goes into these shows. And this episode is particularly interesting because it looks at the creation and development of a new podcast, which is even more unknown and invisible to listeners.</p>
</div>
<a href="/podpodpod-archive/featured/30-startup-gimlet-show-development"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/29-otm-the-outsider-narrative">
On the Media <br/>↳ Inside/Outside
</a>
</h1>
<span class="post-date">07 Nov 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'On the Media: Inside/Outside',url:'http://feeds.wnyc.org/~r/onthemedia/~5/lOGgxXopuNI/otm103015pod.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'On the Media: Inside/Outside',url:'http://feeds.wnyc.org/~r/onthemedia/~5/lOGgxXopuNI/otm103015pod.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (42 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/29-otm-the-outsider-narrative">
<img class="podcast-logo" src="/podpodpod-archive/public/img/on_the_media.jpg" />
</a>
<p>An interesting look at the history of the "outsider" narrative of presidential candidates.</p>
</div>
<a href="/podpodpod-archive/featured/29-otm-the-outsider-narrative"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/28-planet-money-open-salaries">
Planet Money #550<br/>↳ When Salaries Aren’t Secret
</a>
</h1>
<span class="post-date">04 Nov 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Planet Money #550: When Salaries Aren’t Secret',url:'http://play.podtrac.com/npr-510289/npr.mc.tritondigital.com/NPR_510289/media/anon.npr-mp3/npr/specials/2015/10/20151021_specials_pmpod.mp3?orgId=1&d=1108&p=510289&story=450575579&t=podcast&e=450575579&ft=pod&f=510289'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Planet Money #550: When Salaries Aren’t Secret',url:'http://play.podtrac.com/npr-510289/npr.mc.tritondigital.com/NPR_510289/media/anon.npr-mp3/npr/specials/2015/10/20151021_specials_pmpod.mp3?orgId=1&d=1108&p=510289&story=450575579&t=podcast&e=450575579&ft=pod&f=510289'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (19.8 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/28-planet-money-open-salaries">
<img class="podcast-logo" src="/podpodpod-archive/public/img/planet_money.jpg" />
</a>
<p>Who benefits from our fear of openly talking about money? What would happen if things came out into the open? (This is a rebroadcast of an episode that originally aired in July 2014, but is just as relevant today as it was then.)</p>
</div>
<a href="/podpodpod-archive/featured/28-planet-money-open-salaries"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/27-99pi-food-preservation">
99% Invisible #186<br/>↳ War and Pizza
</a>
</h1>
<span class="post-date">02 Nov 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'99% Invisible #186: War and Pizza',url:'http://www.podtrac.com/pts/redirect.mp3/media.blubrry.com/99percentinvisible/cdn.99percentinvisible.org/wp-content/uploads/186-War-and-Pizza.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'99% Invisible #186: War and Pizza',url:'http://www.podtrac.com/pts/redirect.mp3/media.blubrry.com/99percentinvisible/cdn.99percentinvisible.org/wp-content/uploads/186-War-and-Pizza.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (19.8 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/27-99pi-food-preservation">
<img class="podcast-logo" src="/podpodpod-archive/public/img/99pi.jpg" />
</a>
<p>How do we get food that can sit in our pantry for years? Where do the chemicals that occupy grocery isles come from?</p>
</div>
<a href="/podpodpod-archive/featured/27-99pi-food-preservation"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/26-nts-breaking-echo-chamber">
Note to Self <br/>↳ How to Shake Up Your Echo Chamber
</a>
</h1>
<span class="post-date">28 Oct 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Note to Self: How to Shake Up Your Echo Chamber',url:'http://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/notetoself/notetoself102115_cms539926_pod.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Note to Self: How to Shake Up Your Echo Chamber',url:'http://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/notetoself/notetoself102115_cms539926_pod.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (19.6 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/26-nts-breaking-echo-chamber">
<img class="podcast-logo" src="/podpodpod-archive/public/img/note_to_self.jpg" />
</a>
<p>Great chat with hosts of three of the best podcasts about expanding outside your social media echo chamber and broadening your perspective. I often hear that people are fed up with the same discussions over and over again on social media, and I've always felt that's just their own fault for whom they choose to follow (the same goes for podcasts). If you've felt like you need a change of pace, this is a great place to start. Also check out the accompanying <a href="http://www.wnyc.org/story/buzzfeed-professional-internet-readers-break-bubble/">blog post</a> for extra notes and tips that weren't mentioned on the show.</p>
</div>
<a href="/podpodpod-archive/featured/26-nts-breaking-echo-chamber"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/25-reasonably-sound-chiptunes">
Reasonably Sound #30<br/>↳ Bits and Chips
</a>
</h1>
<span class="post-date">26 Oct 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Reasonably Sound #30: Bits and Chips',url:'http://play.publicradio.org/api-2.0.1/d/podcast/infinite_guest/reasonably_sound/2015/10/reasonablysound_20151015_128.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Reasonably Sound #30: Bits and Chips',url:'http://play.publicradio.org/api-2.0.1/d/podcast/infinite_guest/reasonably_sound/2015/10/reasonablysound_20151015_128.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (29.5 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/25-reasonably-sound-chiptunes">
<img class="podcast-logo" src="/podpodpod-archive/public/img/reasonably_sound.jpg" />
</a>
<p>A really cool look into the world of chiptunes—a great listen if you have any interest in classic video game music.</p>
</div>
<a href="/podpodpod-archive/featured/25-reasonably-sound-chiptunes"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/24-criminal-transgender-processing">
Criminal #28<br/>↳ P.D.I.D.
</a>
</h1>
<span class="post-date">23 Oct 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Criminal #28: P.D.I.D.',url:'http://feedproxy.google.com/~r/CriminalShow/~5/XSPFJLt6Ixo/Episode_28__P.D.I.D..mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Criminal #28: P.D.I.D.',url:'http://feedproxy.google.com/~r/CriminalShow/~5/XSPFJLt6Ixo/Episode_28__P.D.I.D..mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (28.5 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/24-criminal-transgender-processing">
<img class="podcast-logo" src="/podpodpod-archive/public/img/criminal.jpg" />
</a>
<p>An important look at how police treated a transgender woman in 2009. Even with all the progress we've made in transgender rights in the intervening six years, transphobia is still rampant, and this is a brutal look into how it manifests.</p>
</div>
<a href="/podpodpod-archive/featured/24-criminal-transgender-processing"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/23-btln-mtv-origin">
Between the Liner Notes #3<br/>↳ I Want My MTV
</a>
</h1>
<span class="post-date">08 Oct 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Between the Liner Notes #3: I Want My MTV',url:'http://rss.acast.com/linernotes/03-iwantmymtv/media.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Between the Liner Notes #3: I Want My MTV',url:'http://rss.acast.com/linernotes/03-iwantmymtv/media.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (48.6 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/23-btln-mtv-origin">
<img class="podcast-logo" src="/podpodpod-archive/public/img/btln.jpg" />
</a>
<p>I have little interest in music, but I grew up in an era where the existence of MTV was a given part of life. Which makes hearing about the large obstacles faced in MTV's creation extremely fascinating.</p>
</div>
<a href="/podpodpod-archive/featured/23-btln-mtv-origin"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/22-otm-after-oregon">
On the Media <br/>↳ After Oregon
</a>
</h1>
<span class="post-date">05 Oct 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'On the Media: After Oregon',url:'http://feeds.wnyc.org/~r/onthemedia/~5/SiJ3ByjpHvw/otm151003after_oregon_pod.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'On the Media: After Oregon',url:'http://feeds.wnyc.org/~r/onthemedia/~5/SiJ3ByjpHvw/otm151003after_oregon_pod.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (14.5 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/22-otm-after-oregon">
<img class="podcast-logo" src="/podpodpod-archive/public/img/on_the_media.jpg" />
</a>
<p>An important look at the role the media plays in mass shootings.</p>
</div>
<a href="/podpodpod-archive/featured/22-otm-after-oregon"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/21-nts-racist-ai">
Note to Self <br/>↳ Why Google ‘Thought’ This Black Woman Was a Gorilla
</a>
</h1>
<span class="post-date">01 Oct 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Note to Self: Why Google ‘Thought’ This Black Woman Was a Gorilla',url:'http://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/notetoself/notetoself093015_cms534614_pod.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Note to Self: Why Google ‘Thought’ This Black Woman Was a Gorilla',url:'http://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/notetoself/notetoself093015_cms534614_pod.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (18.1 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/21-nts-racist-ai">
<img class="podcast-logo" src="/podpodpod-archive/public/img/note_to_self.jpg" />
</a>
<p>This episode is a great and important reminder that not only is the current state of AI much dumber than we think, but also much more biased by the demographics of its creators than we'd like to believe.</p>
</div>
<a href="/podpodpod-archive/featured/21-nts-racist-ai"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/20-radiolab-digital-ransom">
Radiolab <br/>↳ Darkode
</a>
</h1>
<span class="post-date">28 Sep 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Radiolab: Darkode',url:'http://feeds.wnyc.org/~r/radiolab/~5/5nZ_xvpQB2k/radiolab_podcast15darkode.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Radiolab: Darkode',url:'http://feeds.wnyc.org/~r/radiolab/~5/5nZ_xvpQB2k/radiolab_podcast15darkode.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (37.1 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/20-radiolab-digital-ransom">
<img class="podcast-logo" src="/podpodpod-archive/public/img/radiolab.jpg" />
</a>
<p>I swear one day I won't feature Radiolab every week, but today is not that day. This episode has two halves: the first is a thrilling and fascinating story about being hacked, and the second is a look behind the network that enables those activities. It's really great, and totally worth my guilt of featuring the same show three weeks in a row.</p>
</div>
<a href="/podpodpod-archive/featured/20-radiolab-digital-ransom"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/19-radio-rookies-abusive-relationship">
Radio Rookies <br/>↳ Why Do I Stay?
</a>
</h1>
<span class="post-date">25 Sep 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Radio Rookies: Why Do I Stay?',url:'http://feeds.wnyc.org/~r/radiorookies/~5/b_LBMChdiio/radrookies091915_rainy_podcast.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Radio Rookies: Why Do I Stay?',url:'http://feeds.wnyc.org/~r/radiorookies/~5/b_LBMChdiio/radrookies091915_rainy_podcast.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (14.1 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/19-radio-rookies-abusive-relationship">
<img class="podcast-logo" src="/podpodpod-archive/public/img/radio_rookies.jpg" />
</a>
<p>This isn't a fun recommendation, but is an important story to hear.</p>
</div>
<a href="/podpodpod-archive/featured/19-radio-rookies-abusive-relationship"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/18-out-on-the-wire-ep-1">
Out on the Wire #1<br/>↳ Eureka
</a>
</h1>
<span class="post-date">23 Sep 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Out on the Wire #1: Eureka',url:'http://traffic.libsyn.com/outonthewire/Episode20OneV1.32016LUFS.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Out on the Wire #1: Eureka',url:'http://traffic.libsyn.com/outonthewire/Episode20OneV1.32016LUFS.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (55.9 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/18-out-on-the-wire-ep-1">
<img class="podcast-logo" src="/podpodpod-archive/public/img/out_on_the_wire.jpg" />
</a>
<p>If you're interested in making narrative nonfiction radio someday, this new podcast is a must-listen. But I'm not interested in getting into radio someday; I enjoy this podcast for entirely different reasons, for the peeks behind the scenes of great shows and glimpses into what it takes to create compelling stories.</p>
</div>
<a href="/podpodpod-archive/featured/18-out-on-the-wire-ep-1"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/17-rothfuss-magic-mechanics">
Untitled Patrick Rothfuss Podcast <br/>↳ Gandalf Already Knows Prismatic Spray
</a>
</h1>
<span class="post-date">21 Sep 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Untitled Patrick Rothfuss Podcast: Gandalf Already Knows Prismatic Spray',url:'http://audio.simplecast.fm/17045.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Untitled Patrick Rothfuss Podcast: Gandalf Already Knows Prismatic Spray',url:'http://audio.simplecast.fm/17045.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (39.3 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/17-rothfuss-magic-mechanics">
<img class="podcast-logo" src="/podpodpod-archive/public/img/untitled_rothfuss.jpg" />
</a>
<p>I haven't read <em>The Name of the Wind</em> (though I've heard it's excellent). I'm not a big fan of Cards Against Humanity. But this podcast from Patrick Rothfuss, author of <em>The Name of the Wind</em>, and Max Temkin, of Cards Against Humanity, is really great. Their conversations are always interesting, but this episode really struck me with their discussion of the presence—or lack of—logical and well-presented rules behind fantasy magic.</p>
</div>
<a href="/podpodpod-archive/featured/17-rothfuss-magic-mechanics"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/16-radiolab-rhino-hunting">
Radiolab <br/>↳ The Rhino Hunter
</a>
</h1>
<span class="post-date">18 Sep 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Radiolab: The Rhino Hunter',url:'http://feeds.wnyc.org/~r/radiolab/~5/m7yHvED4SPw/radiolab_podcast15rhinohunter.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Radiolab: The Rhino Hunter',url:'http://feeds.wnyc.org/~r/radiolab/~5/m7yHvED4SPw/radiolab_podcast15rhinohunter.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (50.5 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/16-radiolab-rhino-hunting">
<img class="podcast-logo" src="/podpodpod-archive/public/img/radiolab.jpg" />
</a>
<p>Part of me feels guilty because this marks my first repeat show recommendation, and in consequent episodes of the podcast nonetheless. But this epiosde was too great to pass up. It takes what may seem like a binary black-and-white issue and explores the nuance, the varied perspectives, to teach us not only about the intricacies of black rhino hunting in Namibia, but how complex so many issues can be.</p>
</div>
<a href="/podpodpod-archive/featured/16-radiolab-rhino-hunting"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/15-ben-franklins-little-theory">
The Cracked Podcast #85<br/>↳ Ben Franklin’s Secret Hack to Make People Like You
</a>
</h1>
<span class="post-date">16 Sep 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'The Cracked Podcast #85: Ben Franklin’s Secret Hack to Make People Like You',url:'http://feeds.soundcloud.com/stream/221650502-crackedpod-ben-franklins-secret-hack-to-make-people-like-you.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'The Cracked Podcast #85: Ben Franklin’s Secret Hack to Make People Like You',url:'http://feeds.soundcloud.com/stream/221650502-crackedpod-ben-franklins-secret-hack-to-make-people-like-you.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (69.1 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/15-ben-franklins-little-theory">
<img class="podcast-logo" src="/podpodpod-archive/public/img/cracked.jpg" />
</a>
<p>The ear-catching (and definitely a bit clickbaity) theory described by this episode's title is interesting on a micro-level, but not exactly practical. Don't listen to learn a secret hack you can use to make people like you. Listen to this episode to hear the Cracked editors explore the ramifications of this theory in a fascinating and thought-provoking discusion about society. In particular, the way this theory intersects with and influences inequality is such an adept explanation for how vast inequalities arise, and how society's natural inclination is to trend towards inequality, rather than against it.</p>
</div>
<a href="/podpodpod-archive/featured/15-ben-franklins-little-theory"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/14-mother-pregnancy-loss">
Mother: A Podcast #7<br/>↳ What We Talk About When We Talk About Pregnancy Loss
</a>
</h1>
<span class="post-date">14 Sep 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Mother: A Podcast #7: What We Talk About When We Talk About Pregnancy Loss',url:'http://feedproxy.google.com/~r/MotherAPodcast/~5/8y68VIy3vYI/220000791-mother-the-podcast-episode-7.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Mother: A Podcast #7: What We Talk About When We Talk About Pregnancy Loss',url:'http://feedproxy.google.com/~r/MotherAPodcast/~5/8y68VIy3vYI/220000791-mother-the-podcast-episode-7.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (33.3 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/14-mother-pregnancy-loss">
<img class="podcast-logo" src="/podpodpod-archive/public/img/mother.jpg" />
</a>
<p>One of my favorite aspects of the podcast medium is the ability to hear stories from new perspectives, to grow my understanding of the world. As a guy, <em>Mother: A Podcast</em> fits that for me perfectly, though I'm sure the podcast would be even more interesting to mothers or women planning to become mothers one day. This latest episode of the podcast is a great collection of stories about pregnancy loss, which I found such a valuable experience because it is something I hear and think about very rarely and I can only begin to understand at a very abstract level.</p>
</div>
<a href="/podpodpod-archive/featured/14-mother-pregnancy-loss"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/13-radiolab-oliver-sacks/">
Radiolab <br/>↳ Remembering Oliver Sacks
</a>
</h1>
<span class="post-date">07 Sep 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Radiolab: Remembering Oliver Sacks',url:'http://feeds.wnyc.org/~r/radiolab/~5/6Bs0FV4ffiQ/rl_extras15rememberingoliver.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Radiolab: Remembering Oliver Sacks',url:'http://feeds.wnyc.org/~r/radiolab/~5/6Bs0FV4ffiQ/rl_extras15rememberingoliver.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (24.8 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/13-radiolab-oliver-sacks/">
<img class="podcast-logo" src="/podpodpod-archive/public/img/radiolab.jpg" />
</a>
<p>When the unfortunate news of Oliver Sacks's passing hit last week, I didn't know how to react. I had no idea who he was, just that people in public radio really loved him. Apparently Dr. Oliver Sacks provided many stories to <em>Radiolab</em> over the years. To honor his memory, <em>Radiolab</em> re-aired this episode from July, which is a great conversation with him and really shows why he was so loved.</p>
</div>
<a href="/podpodpod-archive/featured/13-radiolab-oliver-sacks/"><p class="read-more">
Listen
⟫
</p></a>
</div>
<div class="post">
<h1 class="post-title">
<a href="/podpodpod-archive/featured/12-dsm-in-new-orleans/">
Death, Sex & Money <br/>↳ In New Orleans: From Raising Hell to Raising Kids
</a>
</h1>
<span class="post-date">28 Aug 2015</span>
<div class="ep-controls">
<a href="#" class="ep-play" onclick="SCM.play({title:'Death, Sex & Money: In New Orleans: From Raising Hell to Raising Kids',url:'http://feedproxy.google.com/~r/deathsexmoney/~5/2IS624hXznk/deathsexmoney081415_coroner_pod.mp3'});"><i class="icon-play"></i> Listen</a>
<a href="#" class="ep-queue" onclick="SCM.queue({title:'Death, Sex & Money: In New Orleans: From Raising Hell to Raising Kids',url:'http://feedproxy.google.com/~r/deathsexmoney/~5/2IS624hXznk/deathsexmoney081415_coroner_pod.mp3'});"><i class="icon-plus"></i> Queue</a>
<a href="" class="ep-download"><i class="icon-download-cloud"></i> Download (24.5 MB)</a>
</div>
<div class="post-excerpt">
<a href="/podpodpod-archive/featured/12-dsm-in-new-orleans/">
<img class="podcast-logo" src="/podpodpod-archive/public/img/death_sex_money.png" />
</a>