This repository has been archived by the owner on Feb 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathawesome-podcasts.json
1186 lines (1186 loc) · 47.3 KB
/
awesome-podcasts.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"category": "Beginner",
"pods": [
{
"desc": "Stories from people on their coding journey",
"name": "CodeNewbie",
"url": "http://www.codenewbie.org/podcast"
},
{
"desc": "The official podcast of the freeCodeCamp open source community",
"name": "freeCodeCamp Podcast",
"url": "https://freecodecamp.libsyn.com/"
},
{
"desc": "Interviews with your favorite speakers about how they got started",
"name": "Hello World Podcast",
"url": "https://wildermuth.com/hwpod"
},
{
"desc": "Interviews with people on how they got into coding",
"name": "Learn To Code With Me",
"url": "http://learntocodewith.me/podcast/"
},
{
"desc": "Beginner-friendly podcast discussing how to improve yourself as a developer",
"name": "Start Here FM",
"url": "http://starthere.fm/"
},
{
"desc": "Interviews with developers and leaders in the Tech industry",
"name": "Teach Me To Code",
"url": "https://devchat.tv/teachmetocode"
}
],
"subtitle": "Podcasts for programming newbies"
},
{
"category": "C/C++",
"pods": [
{
"desc": "The first podcast by C++ developers for C++ developers!",
"name": "CppCast",
"url": "http://cppcast.com/"
}
],
"subtitle": "Podcasts related to C/C++ programming"
},
{
"category": "Cloud",
"pods": [
{
"desc": "Discussing various aspects of the Amazon Web Services (AWS) offering. Each podcast includes AWS news, tech tips, and interviews with startups, AWS partners, and AWS employees",
"name": "AWS Podcast",
"url": "https://aws.amazon.com/podcasts/aws-podcast/"
},
{
"desc": "A podcast series offering cloud enthusiasts, IT practitioners and developers the latest thinking and insights from AWS subject matter experts",
"name": "AWS TechChat",
"url": "https://aws.amazon.com/podcasts/aws-techchat/"
},
{
"desc": "The Doppler Cloud Computing Podcast covers all things cloud while focusing on how to prepare the traditional enterprise to look beyond conventional computing. We talk about what’s new, what’s working, and have expert guests who provide the advice you need to be successful in the cloud",
"name": "Doppler Cloud Computing Podcast",
"url": "https://www.cloudtp.com/doppler/podcasts/"
},
{
"desc": "Discussing everything from on Google Cloud Platform from App Engine to Big Query",
"name": "Google Cloud Platform Podcast",
"url": "https://www.gcppodcast.com/"
},
{
"desc": "Coming to you every show with information about new capabilities and releases on IBM Cloud",
"name": "IBM Cloud",
"url": "https://anchor.fm/ibm-cloud-podcast"
},
{
"desc": "Latest news, notes, commentary and listener questions on Microsoft cloud technologies including Windows Azure, Office 365 and SharePoint",
"name": "Microsoft Cloud Show",
"url": "http://www.microsoftcloudshow.com/podcast"
},
{
"desc": "Features conversations with domain experts in the world of Cloud Computing with Corey Quinn",
"name": "Screaming in the Cloud",
"url": "https://www.screaminginthecloud.com"
},
{
"desc": "Short podcasts on various topics related to the Microsoft Cloud platform",
"name": "The Azure Podcast",
"url": "http://azpodcast.azurewebsites.net"
},
{
"desc": "Weekly podcast to discuss the technology and organizational changes that are driving the convergence of today's Data Centers and Cloud Computing. Topics include Cloud Computing, AWS, Azure, GCP, Serverless, DevOps, AppDev, SaaS, IoT",
"name": "The Cloud Cast",
"url": "http://thecloudcast.net/"
},
{
"desc": "Weekly updates from the big providers, talk about interesting perspectives about the clouds and what it takes to build a successful business on the Public Cloud",
"name": "The Cloud Pod",
"url": "https://www.thecloudpod.net/"
}
],
"subtitle": "Podcasts related to public clouds"
},
{
"category": "Cloud Native",
"pods": [
{
"desc": "Cloud Native in 15 Minutes is the place to learn about the cutting edge of enterprise IT in the time it takes to grab a coffee. From AI to Kubernetes, you'll hear the people behind popular technologies explain why they matter to your company.",
"name": "Cloud Native in 15 Minutes",
"url": "https://cloudnative.simplecast.com"
},
{
"desc": "All about cloud computing and cloud native application development",
"name": "Cloud Native Podcast",
"url": "https://cloudnativepodcast.com"
},
{
"desc": "Covering many topics relevant to the Cloud Native space, including ecosystem topics like Docker Security and Kubernetes security, RBAC, monitoring and alerting, and many, many more",
"name": "Cloud Native Security",
"url": "https://www.cloudnativesecurity.stream"
},
{
"desc": "A podcast about kubernetes, schedulers, containers and the new world.This podcast is a series of interviews to relevant people in the community",
"name": "Kubecast",
"url": "http://kubecast.com/"
},
{
"desc": "A weekly news and interview show with insight from the Kubernetes community",
"name": "Kubernetes Podcast",
"url": "https://kubernetespodcast.com/"
},
{
"desc": "Weekly technology podcast focused on Containers, Kubernetes, Red Hat OpenShift, Cloud Native Applications, Microservices, PaaS, CaaS, DevOps",
"name": "PodCTL",
"url": "http://blog.openshift.com/"
},
{
"desc": "Each week we take on a different topic in the Kubernetes community and the IT industry. Depending on the week we may find ourselves knee- deep in kernel headers, magic quadrants, or startup pitch decks. Our goal is to close each file with a sense of completeness and satisfaction for us and for anyone listening.",
"name": "The K Files",
"url": "https://k8sfiles.com/"
},
{
"desc": "Exploring Cloud Native, one buzzword at a time",
"name": "The Podlets",
"url": "https://thepodlets.io"
}
],
"subtitle": "Podcasts related to Kubernetes and the surrounding community"
},
{
"category": "Conference Talks",
"pods": [
{
"desc": "Audio recordings of DevOpsDays conferences (http://devopsdays.org)",
"name": "DevOpsDays",
"url": "https://itunes.apple.com/us/podcast/devops-days-podcast/id1035163116?mt=2"
},
{
"desc": "This feed contains several of the talks given at Remote Conference put on by Devchat.tv each month. Topics range from Ruby to JavaScript to community to tools and tricks",
"name": "Remote Conference Talks",
"url": "https://devchat.tv/remote-conf-talks"
}
],
"subtitle": "Recordings from conference talks"
},
{
"category": "Dart",
"pods": [
{
"desc": "News, interviews, and Q\u0026A with the Dart team and community",
"name": "Dartisans",
"url": "https://gpodder.net/podcast/dartisans-dart-programming-language-podcast"
},
{
"desc": "With this podcast, we are going to learn flutter together",
"name": "Learning Flutter",
"url": "https://anchor.fm/learning-flutter"
}
],
"subtitle": "Podcasts related to Dart Programming Language"
},
{
"category": "Data Science",
"pods": [
{
"desc": "A podcast all about data, science, stories, and time",
"name": "Data Science Storytime",
"url": "https://www.heavybit.com/library/podcasts/data-science-storytime/"
}
],
"subtitle": "Podcasts related to Data Science"
},
{
"category": "DevOps",
"pods": [
{
"desc": "We discuss all things related to devops",
"name": "All Things DevOps",
"url": "https://allthingsdevops.bigbinary.com"
},
{
"desc": "ADO is the podcast that helps you achieve understanding, develop good practices, and operate your team and organization for maximum DevOps awesomeness",
"name": "Arrested DevOps",
"url": "https://www.arresteddevops.com/"
},
{
"desc": "A show for developers and devops professionals shipping software using Microsoft technologies",
"name": "Azure DevOps",
"url": "http://azuredevopspodcast.clear-measure.com"
},
{
"desc": "Podcast with John Willis \u0026 Damon Edwards",
"name": "Devops Cafe",
"url": "http://devopscafe.org/"
},
{
"desc": "Where the world meets DevOps",
"name": "DevOps Chat",
"url": "https://devops.com/"
},
{
"desc": "This podcast is all about doing the DevOps thing. We are here to help you get from a DevOps newbie to being a DevOps Master",
"name": "DevOps Mastery",
"url": "http://www.devopsmastery.com/"
},
{
"desc": "DevOps on AWS Radio covers topics on applying DevOps principles and practices such as Continuous Delivery on the AWS cloud",
"name": "DevOps on AWS Radio",
"url": "https://stelligent.com/tag/podcasts/"
},
{
"desc": "Covering all things related to software delivery",
"name": "DevOps Radio",
"url": "http://media.blubrry.com/devops_radio/www.devopsradio.libsyn.com/podcast"
},
{
"desc": "A podcast for professionals looking to uncover all angles of the DevOps world and create more efficient, more effective and more successful organizations",
"name": "Discussing DevOps Details",
"url": "https://itunes.apple.com/us/podcast/discussing-devops-details/id1274201992"
},
{
"desc": "An overview of what .NET developers need to know to build containerized applications using Docker",
"name": "Docker for .NET Developers",
"url": "http://s.ch9.ms/Series/Docker-for-NET-Developers"
},
{
"desc": "Dockercast is the official Docker Podcast which covers a wide range of topics including products, projects and contributions from active community members and partners with our host, Docker’s very own – John Willis",
"name": "DockerCast",
"url": "https://www.docker.com/"
},
{
"desc": "A weekly conversation about Docker, AWS, and building distributed systems",
"name": "Mobycast",
"url": "https://prodockertraining.com/mobycast/"
},
{
"desc": "Stories from technologists about being on-call",
"name": "On-Call Nightmares Podcast",
"url": "https://oncallnightmares.podomatic.com"
},
{
"desc": "The Puppet Podcast features Puppet community members talking about the latest trends in configuration management \u0026 cloud automation as well as DevOps culture",
"name": "Puppet Podcast",
"url": "https://puppet.com/podcast_feed"
},
{
"desc": "Setting out to meet interesting people doing awesome work in the world of DevOps",
"name": "Real World DevOps",
"url": "https://www.realworlddevops.com"
},
{
"desc": "The Chef Community Podcast, where DevOps engineeers do battle. This is not a cooking show",
"name": "The Food Fight Show",
"url": "http://foodfight.libsyn.com/"
},
{
"desc": "The New Stack Makers stream of featured speakers and interviews is all about the new software stacks that change the way we development and deploy software",
"name": "The New Stack Makers",
"url": "http://soundcloud.com/thenewstackmakers"
},
{
"desc": "A twice-montly podcast covering the finer points of build engineering, devops, \u0026 release management, including discussions, interviews, reviews, and coverage of important release engineering news and happenings",
"name": "The Ship Show",
"url": "http://theshipshow.com/podcast/"
},
{
"desc": "A show all about continuous delivery and software development",
"name": "To Be Continuous",
"url": "https://www.heavybit.com/library/podcasts/to-be-continuous/"
}
],
"subtitle": "Podcasts related to Operations and DevOps"
},
{
"category": "DotNet",
"pods": [
{
"desc": "A weekly talk show for anyone interested in programming on the Microsoft .NET platform. The shows range from introductory information to hardcore geekiness",
"name": ".NET Rocks",
"url": "http://www.dotnetrocks.com/"
},
{
"desc": "The MS Dev Show is THE podcast for Microsoft developers covering news and topics such as Azure (cloud), Windows, and cross-platform development using MS tools",
"name": "MS Dev Show",
"url": "http://msdevshow.com/"
}
],
"subtitle": "Podcasts related to .NET and Windows Development"
},
{
"category": "Elixir",
"pods": [
{
"desc": "Bringing you the News \u0026 Interviews from around the Elixir Community",
"name": "Elixir Fountain",
"url": "http://elixirfountain.com/"
}
],
"subtitle": "Podcasts related to Elixir Programming Language"
},
{
"category": "Elm",
"pods": [
{
"desc": "About the people making and using the Elm language",
"name": "Elm Town",
"url": "https://elmtown.audio/"
},
{
"desc": "A show about learning Elm, Functional Programing, and generally leveling up as a JS developer",
"name": "JavaScript to Elm",
"url": "https://jstoelm.com/"
}
],
"subtitle": "Podcasts related to Elm Programming Language"
},
{
"category": "Functional Programming",
"pods": [
{
"desc": "Interviews with functional programming devs \u0026 researchers covering a variety of languages. Language focus is approx. 50% Scala, 50% Haskell/Idris/Everything else",
"name": "CoRecursive",
"url": "https://corecursive.com/"
},
{
"desc": "All functional programming languages",
"name": "Functional Geekery",
"url": "https://www.functionalgeekery.com/"
},
{
"desc": "Functional programming core concepts",
"name": "Lambdacast",
"url": "https://soundcloud.com/lambda-cast"
}
],
"subtitle": "Podcasts related to functional programming"
},
{
"category": "General",
"pods": [
{
"desc": "Technology, Open Source, Politics, Music... Anything and everything is up for grabs, complete with reviews and interviews",
"name": "Bad Voltage",
"url": "https://www.badvoltage.org/"
},
{
"desc": "Interviews with software developers about their careers, their current responsibilities, and how they became programmers",
"name": "Building Programmers",
"url": "https://building.fireside.fm/"
},
{
"desc": "A weekly podcast that shines a spotlight on the technology and people of open source. It's about the code, the people, and the community",
"name": "Changelog",
"url": "https://changelog.com/podcast"
},
{
"desc": "A few devs talking with cool people who have a common interest in web and software development and having fun",
"name": "Code \u0026 Cast",
"url": "http://codeand.us/"
},
{
"desc": "A weekly talk show taking a pragmatic look at the art and business of Software Development and related technologies",
"name": "Coder Radio",
"url": "http://www.jupiterbroadcasting.com/show/coderradio/"
},
{
"desc": "Coding Blocks is the podcast and website for learning how to become a better software developer",
"name": "Coding Blocks",
"url": "https://www.codingblocks.net/"
},
{
"desc": "A weekly podcast hosted by Mike Sheehan from San Francisco and Kyle Paul Johnson from Seattle. Each week we talk about tech topics from hardware to code and many other topics along the way",
"name": "Coffee \u0026 Code",
"url": "http://www.coffeecodecast.com/"
},
{
"desc": "An original podcast about the people who transform technology from the command line up",
"name": "Command-Line Heroes",
"url": "https://www.redhat.com/en/command-line-heroes"
},
{
"desc": "The spot for community managers and developer evangelists who are looking for information on community building",
"name": "Community Pulse",
"url": "https://communitypulse.io/"
},
{
"desc": "A podcast by coders for coders about all aspects of life as a developer",
"name": "Complete Developer",
"url": "http://completedeveloperpodcast.com/"
},
{
"desc": "Stories from inspiring people in and around software",
"name": "Developer on Fire",
"url": "http://developeronfire.com/"
},
{
"desc": "A podcast for developers designed to fit inside your tea break",
"name": "Developer Tea",
"url": "https://spec.fm/podcasts/developer-tea"
},
{
"desc": "A podcast focused on the non-technical side of being a developer",
"name": "Developing Up",
"url": "http://www.developingup.com/"
},
{
"desc": "A podcast about developer career paths",
"name": "devpath.fm",
"url": "https://www.devpath.fm"
},
{
"desc": "A weekly podcast interviewing prominent software developers, followed by a discussion with several devRant community members, and wrapped by with some devRant news and updates",
"name": "devRant Podcast",
"url": "https://soundcloud.com/devrantapp"
},
{
"desc": "A show about things of interest to developer relations leaders, practitioners, and the executives who love them",
"name": "DevRel Radio",
"url": "http://devrelrad.io"
},
{
"desc": "A weekly talk show with the most interesting and important people in the Open Source and Free Software community",
"name": "FLOSS Weekly",
"url": "https://twit.tv/shows/floss-weekly"
},
{
"desc": "An interview podcast, featuring in-depth, one on one, conversations with Founders",
"name": "Founders Talk",
"url": "https://changelog.com/founderstalk"
},
{
"desc": "The Freelancers' Show discusses the challenges that freelancers face. The panel includes technology freelancers and entrepreneurs with many years of experience",
"name": "Freelancer's Show",
"url": "https://devchat.tv/freelancers"
},
{
"desc": "A podcast for developers interested in building great software products",
"name": "Full Stack Radio",
"url": "http://www.fullstackradio.com/"
},
{
"desc": "A podcast on Functional Programming, covering topics across multiple languages",
"name": "Functional Geekery",
"url": "https://www.functionalgeekery.com/"
},
{
"desc": "Making tech news obtainable and cute one podcast at a time",
"name": "Git Cute",
"url": "https://gitcutepodcast.com"
},
{
"desc": "The podcast for coders who care by coders who care",
"name": "Greater Than Code",
"url": "https://www.greaterthancode.com/podcast/"
},
{
"desc": "A weekly talkshow on tech",
"name": "Hanselminutes",
"url": "http://hanselminutes.com/"
},
{
"desc": "Herding Code is a weekly podcast that explores different technology-related topics",
"name": "Herding Code",
"url": "http://herdingcode.com/"
},
{
"desc": "A non-commercial series of discussions with global industry leaders in Edge, DevOps, Security, Open Source and more.",
"name": "L8istSh9y (Latest Shiny) Podcast",
"url": "https://l8istsh9y.com"
},
{
"desc": "Management tips, stories, and interviews to help navigate the challenges of managing creative and technical teams",
"name": "Managing Up",
"url": "https://managingup.simplecast.com"
},
{
"desc": "A Podcast where we unmask the people who are making tremendous strides in tech, yet whose stories are seldom heard",
"name": "Mapping The Journey",
"url": "https://www.mappingthejourney.com/"
},
{
"desc": "The podcast for entrepreneurs about open source software!",
"name": "Open Source Underdogs",
"url": "https://opensourceunderdogs.com"
},
{
"desc": "Exploring different perspectives in open source sustainability. It's about the human side of code",
"name": "Request For Commits",
"url": "https://changelog.com/rfc"
},
{
"desc": "Each episode of the Second Career Devs podcast focuses on a guest who became a software engineer after a previous career",
"name": "Second Career Devs",
"url": "https://secondcareerdevs.com/episodes"
},
{
"desc": "An internet radio show about the internet",
"name": "Shop Talk Show",
"url": "http://shoptalkshow.com/"
},
{
"desc": "John Sonmez interviews guests and shares everything he knows to help you become a top performing software developer",
"name": "Simple Programmer",
"url": "https://simpleprogrammer.com/podcasts/"
},
{
"desc": "A weekly Q \u0026 A podcast for software developers who want to level up their non-technical engineering skills",
"name": "Soft Skills Engineering",
"url": "https://softskills.audio/"
},
{
"desc": "the first podcast dedicated solely to the practice of software architecture! In the episodes to come, we’ll discuss modern software architecture patterns and practices with the practitioners getting their hands dirty doing the work",
"name": "Software Architecture Radio",
"url": "https://soundcloud.com/swarchradio"
},
{
"desc": "Weekly show about Kubernetes, serverless, cloud, DevOps, \u0026 coding",
"name": "Software Defined Talk",
"url": "https://www.softwaredefinedtalk.com/"
},
{
"desc": "Features daily interviews about technical software topics",
"name": "Software Engineering Daily",
"url": "https://softwareengineeringdaily.com/"
},
{
"desc": "A weekly podcast targeted at the professional software developer that aims to be a lasting educational resource, not a newscast",
"name": "Software Engineering Radio",
"url": "http://www.se-radio.net/"
},
{
"desc": "A weekly podcast about taking up a new career as a professional developer and pursuing financial independence",
"name": "Start Over Coder",
"url": "https://www.startovercoder.com/"
},
{
"desc": "Short expert interviews that help you decode what developers are saying",
"name": "Talking Code",
"url": "http://talkingcode.com/"
},
{
"desc": "The people, technology, and culture behind one of the world's most powerful and important computing platforms, the Mainframe",
"name": "Terminal Talk",
"url": "http://terminaltalk.net/PodcastGenerator/"
},
{
"desc": "A place where engineers talk to other engineers about tech \u0026 other stuff",
"name": "The Deep End Podcast",
"url": "https://soundcloud.com/digitaloceanpodcast"
},
{
"desc": "A podcast all about package management",
"name": "The Manifest",
"url": "https://manifest.fm"
},
{
"desc": "A women in tech podcast featuring technical interviews",
"name": "The Women in Tech Show",
"url": "https://thewomenintechshow.com/"
},
{
"desc": "Each week our hosts will discuss their development experiences. We'll talk about Ruby, Rust, Go, and anything else that has drawn our interest this week",
"name": "The Yak Shave",
"url": "http://yakshave.fm"
},
{
"desc": "A 20-minute podcast about the latest in tech tools, tips, and tricks on Tuesdays",
"name": "Toolsday",
"url": "http://toolsday.io/"
},
{
"desc": "A podcast about tech, feelings, open source, and /dev/urandom",
"name": "weirdtrickmafia.fm",
"url": "https://weirdtrickmafia.fm"
},
{
"desc": "Interviews, moderatings, and musings about the state of women in high tech industry",
"name": "Women Who Code Blogposts",
"url": "https://womenwhocoderadio.blogspot.com/"
}
],
"subtitle": "Podcasts related to general programming topics"
},
{
"category": "Go",
"pods": [
{
"desc": "A podcast about everything Go. We'll explore syntax, new libraries, its concurrency model, and what makes it unique. Anything Go-related is on the table!",
"name": "Go Gab",
"url": "https://www.briefs.fm/go-gab"
},
{
"desc": "A weekly panelist podcast discussing the Go programming language, the community, and everything in between",
"name": "Go Time",
"url": "https://changelog.com/gotime"
}
],
"subtitle": "Podcasts related to Go Programming Language"
},
{
"category": "Hardware",
"pods": [
{
"desc": "Focused on bringing together the smartest and most creative minds in the Internet of Things (IoT) industry to share their knowledge and experiences with the world",
"name": "IoT For All",
"url": "https://www.iotforall.com/podcast/"
},
{
"desc": "A weekly podcast exploring latest IoT tech and topics",
"name": "IoT Podcast",
"url": "http://iotpodcast.com/"
},
{
"desc": "A bi-weekly podcast/videocast for Raspberry Pi enthusiasts containing the latest news, details of new and updated products, a look at related crowdfunding campaigns, information about upcoming events and a look at some featured Raspberry Pi projects",
"name": "Raspberry PiPod Podcast",
"url": "http://www.recantha.co.uk/blog/"
},
{
"desc": "The Pi Podcast is a show by members of the Raspberry Pi community for the Raspberry Pi community",
"name": "The Pi Podcast",
"url": "http://thepipodcast.com/"
}
],
"subtitle": "Podcasts related to Hardware Programming"
},
{
"category": "Haskell",
"pods": [
{
"desc": "Core haskell concepts",
"name": "Haskell Cast",
"url": "https://www.haskellcast.com/"
}
],
"subtitle": "Podcasts related to Haskell Programming Language"
},
{
"category": "Javascript",
"pods": [
{
"desc": "The latest news in the JavaScript community in 5 minutes",
"name": "5-Minutes of JavaScript",
"url": "https://fivejs.codeschool.com/"
},
{
"desc": "Adventures in Angular is a weekly podcast dedicated to the Angular JavaScript framework and related technologies, tools, languages, and practices",
"name": "Adventures In Angular",
"url": "https://devchat.tv/adv-in-angular"
},
{
"desc": "A live video podcast all about Angular",
"name": "Angular Air",
"url": "https://angularair.com/"
},
{
"desc": "The latest news in the JavaScript community",
"name": "FiveJS",
"url": "https://fivejs.codeschool.com/"
},
{
"desc": "The live broadcast podcast all about JavaScript",
"name": "JavaScript Air",
"url": "https://javascriptair.com/"
},
{
"desc": "JavaScript Jabber is a weekly discussion about JavaScript, front-end development, community, careers, and frameworks",
"name": "JavaScript Jabber",
"url": "https://devchat.tv/js-jabber"
},
{
"desc": "A community celebration of JavaScript and the web",
"name": "JS Party",
"url": "https://changelog.com/jsparty"
},
{
"desc": "A Node.js podcast",
"name": "NodeUp",
"url": "http://nodeup.com/"
},
{
"desc": "A 30-minute podcast about React and all things JavaScript",
"name": "React30",
"url": "https://react30.com/"
},
{
"desc": "A weekly podcast where we tackle the challenges facing Web developers today and invite expert guests on the show to share their experience solving concrete problems while building real Web applications",
"name": "Real Talk Javascript",
"url": "https://realtalkjavascript.simplecast.fm/"
},
{
"desc": "A roundtable podcast about Javascript",
"name": "Space Dojo Show",
"url": "https://show.spacedojo.com/"
}
],
"subtitle": "Podcasts related to JavaScript Programming Language"
},
{
"category": "Kotlin",
"pods": [
{
"desc": "A bimonthly podcast on Kotlin and more, hosted by Hadi Hariri",
"name": "Talking Kotlin",
"url": "http://talkingkotlin.com/"
}
],
"subtitle": "Podcasts related to Kotlin Programming Language"
},
{
"category": "Miscellaneous",
"pods": [
{
"desc": "A podcast about dads and geeky stuff",
"name": "Dads in Development",
"url": "http://www.dadsindev.com/"
},
{
"desc": "A collection of podcasts that may or may not be listed here",
"name": "Dev.to",
"url": "https://dev.to/pod"
},
{
"desc": "A collection of podcasts that may or may not be listed here",
"name": "Heavybit Industries",
"url": "https://www.heavybit.com/library/podcasts/"
}
],
"subtitle": "Podcasts that don't fit into one particular category"
},
{
"category": "Mobile",
"pods": [
{
"desc": "Podcast interviewing Google engineers about the latest Android APIs",
"name": "Android Developers Backstage",
"url": "http://feeds.feedburner.com/blogspot/AndroidDevelopersBackstage"
},
{
"desc": "The TL;DR of last week's Android developer news",
"name": "Android Snacks",
"url": "http://androidsnacks.com/"
},
{
"desc": "Podcast that discusses on various frameworks and tools available in Android Community",
"name": "Context Podcast",
"url": "https://github.com/artem-zinnatullin/TheContext-Podcast"
},
{
"desc": "An Android Developer Podcast",
"name": "Fragmented Podcast",
"url": "http://fragmentedpodcast.com/category/episodes/"
},
{
"desc": "The iPhreaks Show is a weekly group discussion about iOS development and related technology by development veterans. We discuss Apple, tools, practices, and code",
"name": "iPhreaks",
"url": "https://devchat.tv/iphreaks"
},
{
"desc": "A show about mobile development (\u0026 for those of you driving at home.)",
"name": "More Than Just Code",
"url": "http://mtjc.fm/"
},
{
"desc": "React Native Radio is a weekly discussion of the tools, techniques, and technologies used to build mobile applications with JavaScript and React done by developers regularly using React Native",
"name": "React Native Radio",
"url": "https://devchat.tv/react-native-radio"
}
],
"subtitle": "Podcasts related to Mobile Programming"
},
{
"category": "Nix",
"pods": [
{
"desc": "A weekly show covering the latest developments in the world of the BSD family of operating systems. News, Tutorials and Interviews for new users and long time developers alike",
"name": "BSD Now",
"url": "http://www.jupiterbroadcasting.com/show/bsdnow/"
},
{
"desc": "Every 2 weeks, Jason joins Joe to share the latest developments on his journey into the Linux and Open Source world",
"name": "Choose Linux",
"url": "https://chooselinux.show"
},
{
"desc": "Destination Linux is hosted by two everyday guys who love running Linux. The discussions are down to earth and based on their real world experiences",
"name": "Destination Linux",
"url": "http://destinationlinux.org/"
},
{
"desc": "An internet audio show about GNU, Linux, UNIX, and other technical and geeky topics",
"name": "GNU World Order",
"url": "http://gnuworldorder.info/"
},
{
"desc": "Late Night Linux is a podcast that takes a look at what’s happening with Linux and the wider tech industry. Every two weeks, Joe, Jesse, Ikey and Félim discuss the latest news and releases, and the broader issues and trends in the world of free and open source software",
"name": "Late Night Linux",
"url": "http://latenightlinux.com/"
},
{
"desc": "A weekly show that covers the best in the open source and Linux world. Get a solid dose of Linux, gadgets, howto, reviews, and news every week!",
"name": "Linux Action Show",
"url": "http://www.jupiterbroadcasting.com/show/linuxactionshow/"
},
{
"desc": "The Linux Action Show with no prep, no limits, and tons of opinion. An open show powered by community LINUX Unplugged takes the best attributes of open collaboration and focuses them into a weekly lifestyle show about Linux",
"name": "Linux Unplugged",
"url": "http://www.jupiterbroadcasting.com/show/linuxun/"
}
],
"subtitle": "Podcasts related to Linux/Unix Operating Systems"
},
{
"category": "Observability",
"pods": [
{
"desc": "Exploring the observability side of software development",
"name": "O11ycast",
"url": "https://www.heavybit.com/library/podcasts/o11ycast/"
}
],
"subtitle": "Podcasts related to observability and monitoring"
},
{
"category": "Python",
"pods": [
{
"desc": "A Python Podcast for Humans",
"name": "Import This",
"url": "https://www.kennethreitz.org/import-this/"
},
{
"desc": "The Podcast About Python and the People Who Make It Great",
"name": "podcast.__init__",
"url": "https://www.podcastinit.com/"
},
{
"desc": "Python headlines delivered directly to your earbuds",
"name": "Python Bytes",
"url": "https://pythonbytes.fm/"
},
{
"desc": "A podcast on Python and related technologies",
"name": "Talk Python To Me",
"url": "https://talkpython.fm/episodes/all"
}
],
"subtitle": "Podcasts related to Python Programming Language"
},
{
"category": "Reason",
"pods": [
{
"desc": "A podcast about the ReasonML language and the community that makes it awesome",
"name": "Reason Town",
"url": "https://reason.town/"
}
],
"subtitle": "Podcasts related to ReasonML Programming Language"
},
{
"category": "Ruby",
"pods": [
{
"desc": "Rails Clips is a video series about building web applications with Ruby on Rails",
"name": "Rails Clips",
"url": "https://devchat.tv/rails-clips"
},
{
"desc": "Two Ruby devs chattin' about Ruby and Rails",
"name": "Remote Ruby",
"url": "https://remoteruby.transistor.fm/"
},
{
"desc": "The Ruby on Rails Podcast, a weekly conversation about Ruby on Rails, open source software, and the programming profession",
"name": "Ruby on Rails Podcast",
"url": "http://5by5.tv/rubyonrails"
},
{
"desc": "The latest news in the Ruby and Rails community in 5 minutes",
"name": "Ruby5",
"url": "https://ruby5.codeschool.com/"
},
{
"desc": "The Ruby Rogues podcast is a panel discussion about topics relating to programming, careers, community, and Ruby. We release a conversation with notable programmers and Rubyists each week to help programmers advance in their careers and skills",
"name": "The Ruby Rogues",
"url": "https://devchat.tv/ruby-rogues"
}
],
"subtitle": "Podcasts related to Ruby Programming Language"
},
{
"category": "Rust",
"pods": [
{
"desc": "A podcast for Rust and Servo",
"name": "Rusty Spike Podcast",
"url": "https://rusty-spike.blubrry.net/"
},
{
"desc": "A podcast about learning the programming language Rust—from scratch",
"name": "The New Rustacean",
"url": "http://www.newrustacean.com/show_notes/"
}
],
"subtitle": "Podcasts related to Rust Programming Language"
},
{
"category": "Security",
"pods": [
{
"desc": "The podcast for kids who cant appsec good and want to learn how to do other stuff good too",
"name": "Absolute AppSec",
"url": "https://absoluteappsec.com/"
},
{
"desc": "Appcanary makes sure you never run vulnerable software on your servers",
"name": "AppCanary Podcast",
"url": "http://podcast.appcanary.com/"
},
{
"desc": "Reach new people, explain the details, and leave the echo chamber in the dust",
"name": "application security podcast",
"url": "https://www.appsecpodcast.org/"
},
{
"desc": "Application Security Weekly decrypts development for the Security Professional – exploring how to inject security into their organization’s Software Development Lifecycle (SDLC) in a fluid and transparent way",
"name": "Application Security Weekly",
"url": "https://securityweekly.com/category/application-security-weekly/"
},
{
"desc": "A podcast all about the world of Security, Privacy, Compliance, and Regulatory issues that arise in today's workplace",
"name": "Brakeing Down Security",
"url": "http://www.brakeingsecurity.com/"
},
{
"desc": "True stories from the dark side of the Internet",
"name": "Darknet Diaries",
"url": "https://darknetdiaries.com/"
},
{
"desc": "A podcast on discovery and decision making through data in information security, covering all levels and aspects of data analysis \u0026 visualization, plus speaking with pioneers in the field of security data science and seasoned veterans in information security",
"name": "Data Driven Security",
"url": "http://datadrivensecurity.info/podcast/"
},
{
"desc": "The Defensive Security podcast is an attempt to look at recent security news and pick out lessons we can apply to the organizations we are charged with keeping secure",
"name": "Defensive Security Podcast",
"url": "http://www.defensivesecurity.org/"
},
{
"desc": "Developing Security Awareness",
"name": "DevelopSec",
"url": "https://developsec.libsyn.com/"
},
{
"desc": "Interesting security interviews and news analysis",
"name": "Down The Security Rabbithole",
"url": "http://podcast.wh1t3rabbit.net/"
},
{
"desc": "Weekly interviews with Information Security experts on various security topics",
"name": "Exploring Information Security",
"url": "http://www.timothydeblock.com/eis/"
},
{
"desc": "An information security podcast, from the ground up",
"name": "In-Security",
"url": "http://in-security.org/"
},
{
"desc": "A podcast about technology and security",
"name": "Mostly Security",
"url": "https://mostlysecurity.com/"
},
{
"desc": "A podcast about security with an open source slant",
"name": "Open Source Security",
"url": "http://www.opensourcesecuritypodcast.com/"
},