<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Podcast on Janik von Rotz</title>
    <link>https://janikvonrotz.ch/tags/podcast/</link>
    <description>Recent content in Podcast on Janik von Rotz</description>
    <generator>Hugo</generator>
    <language>en</language>
    <lastBuildDate>Mon, 28 Mar 2022 13:58:54 +0200</lastBuildDate>
    <atom:link href="https://janikvonrotz.ch/tags/podcast/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Download podcast episodes from Stitcher for offline usage</title>
      <link>https://janikvonrotz.ch/2022/03/28/download-podcast-episodes-from-stitcher-for-offline-usage/</link>
      <pubDate>Mon, 28 Mar 2022 13:58:54 +0200</pubDate>
      <guid>https://janikvonrotz.ch/2022/03/28/download-podcast-episodes-from-stitcher-for-offline-usage/</guid>
      <description>&lt;p&gt;I love the podcast &lt;a href=&#34;https://www.philosophizethis.org/&#34;&gt;Philosophize This!&lt;/a&gt;. It is freely available, but there is no meaningful way to download all episodes without using a third party app. As a data hoarder I want to have every episode on my hard disk. Therefore I created a simple script to download the &lt;a href=&#34;https://www.stitcher.com/show/philosophize-this&#34;&gt;episodes from Stitcher&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Here is the script:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#75715e&#34;&gt;# Get list of all episodes&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;curl &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#39;https://api.prod.stitcher.com/show/philosophize-this/latestEpisodes?count=200&amp;#39;&lt;/span&gt; | jq &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#39;.&amp;#39;&lt;/span&gt; &amp;gt; podcast.json&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#75715e&#34;&gt;# Process data and download episode if not downloaded yet&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;jq -c &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#39;.data.episodes[] | {title: .title, slug: .slug, url: .audio_url}&amp;#39;&lt;/span&gt; podcast.json | &lt;span style=&#34;color:#66d9ef&#34;&gt;while&lt;/span&gt; read e; &lt;span style=&#34;color:#66d9ef&#34;&gt;do&lt;/span&gt; &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    TITLE&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;$(&lt;/span&gt;echo &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;&lt;/span&gt;$e&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;&lt;/span&gt; | jq -r .title&lt;span style=&#34;color:#66d9ef&#34;&gt;)&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    SLUG&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;$(&lt;/span&gt;echo &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;&lt;/span&gt;$e&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;&lt;/span&gt; | jq -r .slug&lt;span style=&#34;color:#66d9ef&#34;&gt;)&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    URL&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;$(&lt;/span&gt;echo &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;&lt;/span&gt;$e&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;&lt;/span&gt; | jq -r .url&lt;span style=&#34;color:#66d9ef&#34;&gt;)&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#66d9ef&#34;&gt;if&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;[&lt;/span&gt; -f &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;&lt;/span&gt;$SLUG&lt;span style=&#34;color:#e6db74&#34;&gt;.mp3&amp;#34;&lt;/span&gt; &lt;span style=&#34;color:#f92672&#34;&gt;]&lt;/span&gt;; &lt;span style=&#34;color:#66d9ef&#34;&gt;then&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;        echo &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;File &lt;/span&gt;$SLUG&lt;span style=&#34;color:#e6db74&#34;&gt;.mp3 already exists.&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#66d9ef&#34;&gt;else&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;        echo &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;Download &lt;/span&gt;$TITLE&lt;span style=&#34;color:#e6db74&#34;&gt; ...&amp;#34;&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;        curl -L &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;&lt;/span&gt;$URL&lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;&lt;/span&gt; -o &lt;span style=&#34;color:#e6db74&#34;&gt;&amp;#34;&lt;/span&gt;$SLUG&lt;span style=&#34;color:#e6db74&#34;&gt;.mp3&amp;#34;&lt;/span&gt; --progress-bar&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    &lt;span style=&#34;color:#66d9ef&#34;&gt;fi&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#66d9ef&#34;&gt;done&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;And here it is in action:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-bash&#34; data-lang=&#34;bash&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;janikvonrotz@pop-os:~/Downloads$ ./podcast.sh                               &#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;File episode-163-the-creation-of-meaning-escape-from-evil-90885817.mp3 already exists.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;File episode-162-the-creation-of-meaning-the-denial-of-death-89963729.mp3 already exists.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;File episode-161-karl-popper-the-open-society-and-its-enemies-89711371.mp3 already exists.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;File episode-160-the-creation-of-meaning-kierkegaard-silence-obedience-and-joy-89488860.mp3 already exists.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;File episode-159-the-creation-of-meaning-nietzsche-amor-fati-88209087.mp3 already exists.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;File episode-158-the-creation-of-meaning-nietzsche-the-ascetic-ideal-87305371.mp3 already exists.&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;Download Episode &lt;span style=&#34;color:#75715e&#34;&gt;#157 ... The Creation of Meaning - Beauvoir ...&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#75715e&#34;&gt;######################################################################## 100.0%&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;Download Episode &lt;span style=&#34;color:#75715e&#34;&gt;#156 ... Emil Cioran part 2 - Failure and Suicide ...&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#75715e&#34;&gt;######################################################################## 100.0%&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;Download Episode &lt;span style=&#34;color:#75715e&#34;&gt;#155 ... Emil Cioran - Absurdity and Nothingness ...&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#75715e&#34;&gt;######################################################################## 100.0%&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;Download Episode &lt;span style=&#34;color:#75715e&#34;&gt;#154 ... Pragmatism and Truth ...&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#75715e&#34;&gt;########################################        &lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;If the download fails at some point you can restart the script and it should pickup were it failed.&lt;/p&gt;</description>
    </item>
    <item>
      <title>My favorite podcasts</title>
      <link>https://janikvonrotz.ch/2019/08/29/my-favorite-podcasts/</link>
      <pubDate>Thu, 29 Aug 2019 16:38:34 +0200</pubDate>
      <guid>https://janikvonrotz.ch/2019/08/29/my-favorite-podcasts/</guid>
      <description>&lt;p&gt;I love podcast and now spend more time than ever listening. It is a growing business and therefore there are tons of good and bad podcasts. Let&amp;rsquo;s talk about the good ones. Here are my favourites:&lt;/p&gt;&#xA;&lt;h1 id=&#34;philosophize-this&#34;&gt;Philosophize This!&lt;/h1&gt;&#xA;&lt;p&gt;No clue about philosophy, but looking for a beginner friendly educational podcast? Steven West explains everything you need to know in a genuine and comprehensible manner.&lt;/p&gt;&#xA;&lt;p&gt;Link: &lt;a href=&#34;https://philosophizethis.org/&#34;&gt;Philosophize This!&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h1 id=&#34;freakonomics&#34;&gt;Freakonomics&lt;/h1&gt;&#xA;&lt;p&gt;A book, a blog and a podcast. Based on the most readable economics blog and &lt;a href=&#34;http://freakonomics.com/books/&#34;&gt;bestseller books&lt;/a&gt; Steve Dubner and Steven Lewitt are running a radio show and talking about the hidden side of everything.&lt;/p&gt;&#xA;&lt;p&gt;Link: &lt;a href=&#34;http://freakonomics.com/&#34;&gt;Freakonomics&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h1 id=&#34;stuff-you-should-know&#34;&gt;Stuff You Should Know&lt;/h1&gt;&#xA;&lt;p&gt;This is another popular podcast where mostly science related and interesting stuff is discussed.&lt;/p&gt;&#xA;&lt;p&gt;Link: &lt;a href=&#34;https://www.stuffyoushouldknow.com/&#34;&gt;StuffYouShouldKnow&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h1 id=&#34;caliphate&#34;&gt;Caliphate&lt;/h1&gt;&#xA;&lt;p&gt;A very tense audio series following Rukmini Callimachi as she reports on the Islamic State and the fall of Mosul.&lt;/p&gt;&#xA;&lt;p&gt;Link: &lt;a href=&#34;https://www.nytimes.com/interactive/2018/podcasts/caliphate-isis-rukmini-callimachi.html&#34;&gt;New York Time - Caliphate&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h1 id=&#34;verbrechen&#34;&gt;Verbrechen&lt;/h1&gt;&#xA;&lt;p&gt;If you are German speaking and love crimes and thrillers you will love this podcast.&lt;/p&gt;&#xA;&lt;p&gt;Link: &lt;a href=&#34;https://www.zeit.de/serie/verbrechen&#34;&gt;Zeit - Verbrechen&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h1 id=&#34;servus-grüezi-hallo&#34;&gt;Servus. Grüezi. Hallo.&lt;/h1&gt;&#xA;&lt;p&gt;Again a gem for the German speakers. A Swiss, Austrian and German journalist from Zeit discussing issues and topics which they share.&lt;/p&gt;&#xA;&lt;p&gt;Link: &lt;a href=&#34;https://www.zeit.de/serie/servus-gruezi-hallo&#34;&gt;Zeit - Servus. Grüezi. Hallo&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h1 id=&#34;eine-stunde-history&#34;&gt;Eine Stunde History&lt;/h1&gt;&#xA;&lt;p&gt;Short and understandable history lessons in German. They discuss historic events in a non-chronological order with various experts.&lt;/p&gt;&#xA;&lt;p&gt;Link: &lt;a href=&#34;https://www.deutschlandfunknova.de/eine-stunde-history&#34;&gt;Deutschlandfunk Nova - Eine Stunde History&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Quote by Richard Thaler</title>
      <link>https://janikvonrotz.ch/2018/07/17/quote-by-richard-thaler/</link>
      <pubDate>Tue, 17 Jul 2018 09:01:21 +0200</pubDate>
      <guid>https://janikvonrotz.ch/2018/07/17/quote-by-richard-thaler/</guid>
      <description>&lt;blockquote&gt;&#xA;&lt;p&gt;&lt;em&gt;People Aren’t Dumb. The World Is Hard.&lt;/em&gt;&lt;br&gt;&#xA;&amp;ndash; Richard Thaler&lt;/p&gt;&#xA;&lt;/blockquote&gt;&#xA;&lt;p&gt;Richard Thaler won a nobel prize for showing that humans tend to make irrational decisions. He is the founder of behavioral economics and took an unlikely way to success.&lt;/p&gt;&#xA;&lt;p&gt;In the &lt;a href=&#34;http://freakonomics.com/podcast/richard-thaler/&#34;&gt;latest Freakonomics podcast&lt;/a&gt; Steve Dubner interviews Richard Thaler, clears some misunderstandings and gives insight on how Thaler deals with lazyness and his efforts to fix the world.&lt;/p&gt;&#xA;&lt;p&gt;I love this quote because it emphasizes my personal view point. As an individium we feel obligated to know everything and strive for perfection in every domain of live. In contrast the world has become more complex and only through collaboration people can achieve anything at all.&lt;/p&gt;&#xA;</description>
    </item>
  </channel>
</rss>
