Merge pull request #106 from safing/feature/podcast-026

Feature/podcast 026
This commit is contained in:
Dave Gson 2020-11-10 15:23:58 +01:00 committed by GitHub
commit 223dd02f9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 57 additions and 1 deletions

View file

@ -1,3 +1,7 @@
<audio preload="none" style="width: 100%;" controls="controls">
{% if page.asset_server %}
<source type="audio/mp3" src="{{ site.assets_server_url }}{{ page.podcast_link }}" />
{% else %}
<source type="audio/mp3" src="{{ site.url }}{{ page.podcast_link }}" />
{% endif %}
</audio>

View file

@ -0,0 +1,48 @@
---
# ⚠️ ALWAYS follow this format: "#001 - Some sweet title"
# when displaying only the episode number or the title this has to be constant
# -> view cast.html
title: "#026 - The Crux with Payment Methods"
keywords: community spn portmaster
date: 2020-11-10
tags:
- privacy
- payments
- spn
asset_server: true
podcast_link: /podcast/026-the-crux-with-payment-methods.mp3
podcast_file_size: 40.3 MB
podcast_duration: "42:00"
# actual byte size
podcast_length: 40331308
summary: "
<p>Accepting payments as a privacy company is not as straightforward as it might seem. Instead of ignoring privacy issues as most companies do, we feel the best way to protect any user data is to not collect it in the first place. On the other hand we have legal requirements we need to fulfill. Finding the best solution requires a lot of thought. Additionally, being a privacy company means that many payment vendors are not too keen to provide us with their services. Raphael and David sit down and have an extensive talk about all of these aspects.</p>
<h4>Participate</h4>
<p>What could we do better? Let us know how we can improve our podcast on reddit:</p>
- r/safing: <a href='https://reddit.com/r/safing'>https://reddit.com/r/safing</a><br/>
<h4>Links</h4>
- Check out the full AMA: <a href='https://www.reddit.com/iv6mca/'>https://www.reddit.com/iv6mca/</a></br>
- You can always contact us at: <a href='mailto:hello@safing.io'>hello@safing.io</a>
<h4>Raphtys Handles</h4>
- <a href='https://twitter.com/Raphty101/'>https://twitter.com/Raphty101/</a><br/>
- <a href='https://reddit.com/u/Raphty101'>https://reddit.com/u/Raphty101</a><br/>
<h4>Davids Handles</h4>
- <a href='https://twitter.com/davegson/'>https://twitter.com/davegson/</a><br/>
- <a href='https://github.com/davegson/'>https://github.com/davegson/</a><br/>
- <a href='https://reddit.com/u/davegson/'>https://reddit.com/u/davegson/</a><br/>
"
hosts:
- davegson
- raphty
---
{% include audio.html %}

View file

@ -60,7 +60,11 @@ layout: null
<description>
<![CDATA[{{ episode.summary | expand_urls: site.url | cdata_escape }}]]>
</description>
<enclosure url="{{ site.url }}{{ episode.podcast_link }}" length="{{ episode.podcast_length }}" type="audio/mpeg" />
{% if episode.asset_server %}
<enclosure url="{{ site.assets_server_url }}{{ episode.podcast_link }}" length="{{ episode.podcast_length }}" type="audio/mpeg" />
{% else %}
<enclosure url="{{ site.url }}{{ episode.podcast_link }}" length="{{ episode.podcast_length }}" type="audio/mpeg" />
{% endif %}
<itunes:subtitle><![CDATA[{{ episode.summary | strip_html | truncatewords: 50 | expand_urls: site.url | cdata_escape }}]]></itunes:subtitle>
<itunes:summary><![CDATA[{{ episode.summary | expand_urls: site.url | cdata_escape }}]]></itunes:summary>
<itunes:author>{{ site.podcast_author }}</itunes:author>