Podcasts
These are the podcasts I have loaded in my Overcast app. I don't listen to them all every day but its a idea of the variety of subjects I like to listen to in the car and during quiet work periods.
- TED Talks Daily
- In Our Headphones
- The Winding Stairs Freemasonry Podcast
- The Incomparable Mothership
- Oh No, Ross and Carrie
- Total Party Kill
- Slate Money
- The Masonic Roundtable - Freemasonry Today for Today's Freemasons
- You Are Not So Smart
- Don Diablo Presents Hexagon Radio
- The Incomparable Game Show
- Robot or Not?
- This American Life
- Reconcilable Differences
- Top Four
- Thoroughly Considered
- Shmanners
- Still Buffering
- Wonderful!
- Ungeniused
- Superhero Ethics
- The Changelog: Software Development, Open Source
- Knowledge Fight
- The Infinite Monkey Cage
- Wake Up to Money
- Lizard People: Comedy and Conspiracy Theories
- Simplify
- Ologies with Alie Ward
- Bamf Radio - Lofi and Chill
- No Such Thing As A Fish
- Twenty Thousand Hertz
- Things Police See: Firsthand Accounts
- Political Gabfest
- Opening Arguments
- Dr. Death
- QAA Podcast
- Two Headed Girl
- Endless Thread
- The Numberphile Podcast
- Marvel Movie Minute
- Pueblo Vista // Lofi & Chill Mixtapes π§βπ»βΊοΈπ§π΄
- The Homecoming Podcast with Dr. Thema
- Reply All
- We Got The Chocolates
- Left, Right & Center
- The Stack Overflow Podcast
- Vulcan Hello (Star Trek Discovery, Picard, Strange New Worlds)
- Sawbones: A Marital Tour of Misguided Medicine
- You're Wrong About
- Live Like the World is Dying
- Judge John Hodgman
- Planet Money
- Up First from NPR
- Short Wave
- The Indicator from Planet Money
- Wait Wait... Don't Tell Me!
- Consider This from NPR
- The New LoFi Mixtape
- California King
- Rocky Mountain Mason
- Jon Richardson and the Futurenauts - The Book of Revelations
- The Scaredy Cats Horror Show
- Rationally Speaking Podcast
- Talking Bugs
- Red Web
- CLUBLIFE
- On the reg
- Madigan's Pubcast
- Lofi-Sky
- Inside of You with Michael Rosenbaum
- Newbie Star Trek
- Dear Hank & John
- The New Abnormal
- Something Rhymes with Purple
- William Cooper's Mystery Babylon
- The Allusionist
- Strange Indeed a Fancast for Sweet Tooth
- We've Got Issues
- Rational Security
- Wow in the World
- I Want My M(CU)TV: Talking Marvel's New TV Shows
- Do By Friday
- What Roman Mars Can Learn About Con Law
- The Lawfare Podcast
- The National Security Law Podcast
- The LoFi & ChillHop Radio by Ol Wallace
- Lower Dorks: A Star Trek Lower Decks Fan Podcast
- Shots Fired Podcast
- The Daily Stoic
- SmartLess
- Rule Of Three
- Downstream
- Comedy Bang Bang: The Podcast
- How to Fix the Internet
- Hidden Brain
- The Daily Dad
- Deconstructed
- Web Crawlers
- Katherine Ryan: Telling Everybody Everything
- The Influence Continuum with Dr. Steven Hassan
- Trivia for Kids
- Life After MLM
- Last Podcast On The Left
- Behind the Bastards
- It Could Happen Here
- Stuff They Don't Want You To Know
- This Podcast Will Kill You
- My Momma Told Me
- The Daily Show: Ears Edition
- American Hysteria
- Cool People Who Did Cool Stuff
- What A Day
- Mo News
- Serious Trouble
- Securing Sexuality
- The Security Repo
- Song Exploder
- Fast Politics with Molly Jong-Fast
- The Q-Dropped Podcast
- Outrage Overload
- I've Had It
- The Alex-Free Zone
- Jordan Klepper Fingers the Conspiracy
- House Podcastica: House of the Dragon, Interview with the Vampire, Dead Boy Detectives, and more!
- Fossified
- Normal Gossip
- Scamanda
- Search Engine
- I Love My Kid, But...
- On Brand
- Malicious Life
- The Lord of Spirits
- Sixteenth Minute (of Fame)
- Weird Little Guys
This page was generated from the Overcast OPML file and converted by this terrible ChatGPT-generated code:
# The structure is similar, so let's parse and handle it accordingly.
# Parse the new OPML file
tree_new = ET.parse(file_path_new)
root_new = tree_new.getroot()
# Check if there are any categories or just a flat list of feeds
body_element = root_new.find('body')
category_element = body_element.find('outline')
# Initialize markdown content
markdown_content_new = ""
if category_element is None:
# Flat list of feeds, no categories
feeds = [
(feed.get('title', feed.get('text')), feed.get('htmlUrl'))
for feed in body_element.findall('outline')
if feed.get('htmlUrl') is not None
]
for feed_title, feed_link in feeds:
markdown_content_new += f"- [{feed_title}]({feed_link})\n"
else:
# Categories exist, handle similar to the previous file
categories = []
for category in body_element.findall('outline'):
category_title = category.get('title', category.get('text'))
feeds = [
(feed.get('title', feed.get('text')), feed.get('htmlUrl'))
for feed in category.findall('outline')
if feed.get('htmlUrl') is not None
]
if feeds:
categories.append((category_title, feeds))
# Sort categories alphabetically
categories.sort(key=lambda x: x[0])
for category_title, feeds in categories:
markdown_content_new += f"## {category_title}\n\n"
for feed_title, feed_link in feeds:
markdown_content_new += f"- [{feed_title}]({feed_link})\n"
markdown_content_new += "\n"
# Save the markdown content to a file
markdown_file_path_new = '/mnt/data/overcast_subscriptions.md'
with open(markdown_file_path_new, 'w') as markdown_file_new:
markdown_file_new.write(markdown_content_new)
markdown_file_path_new