<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" encoding="UTF-8" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/" xmlns:atom="http://www.w3.org/2005/Atom/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:fireside="http://fireside.fm/modules/rss/fireside">
  <channel>
    <fireside:hostname>app03</fireside:hostname>
    <fireside:genDate>Thu, 25 Jun 2026 02:55:08 +0000</fireside:genDate>
    <generator>Fireside (https://fireside.fm)</generator>
    <title>The Opinion Dominion - Episodes Tagged with “Feedback”</title>
    <link>https://www.theopiniondominion.org/tags/feedback</link>
    <pubDate>Mon, 15 Mar 2021 00:00:00 -0400</pubDate>
    <description>Two old Linux/Unix/OpenSource guys talk about the past and future of *nix, Open Source and other Tech related things.</description>
    <language>en-us</language>
    <itunes:type>episodic</itunes:type>
    <itunes:subtitle>The Opinions of two open source greybeards</itunes:subtitle>
    <itunes:author>JT Pennington</itunes:author>
    <itunes:summary>Two old Linux/Unix/OpenSource guys talk about the past and future of *nix, Open Source and other Tech related things.</itunes:summary>
    <itunes:image href="https://media24.fireside.fm/file/fireside-images-2024/podcasts/images/5/53fe604f-ed50-491e-81f2-4693e68381bb/cover.jpg?v=1"/>
    <itunes:explicit>no</itunes:explicit>
    <itunes:keywords>linux, unix, opensource, posix, developer, sysadmin, gnu, bsd</itunes:keywords>
    <itunes:owner>
      <itunes:name>JT Pennington</itunes:name>
      <itunes:email>jt@minddripmedia.com</itunes:email>
    </itunes:owner>
<itunes:category text="Technology"/>
<item>
  <title>Episode 32: Jeff's Spygames... and more...</title>
  <link>https://www.theopiniondominion.org/32</link>
  <guid isPermaLink="false">34b55c60-f7c3-4e86-b072-b10eee62a014</guid>
  <pubDate>Mon, 15 Mar 2021 00:00:00 -0400</pubDate>
  <author>JT Pennington</author>
  <enclosure url="https://aphid.fireside.fm/d/1437767933/53fe604f-ed50-491e-81f2-4693e68381bb/34b55c60-f7c3-4e86-b072-b10eee62a014.mp3" length="51250128" type="audio/mpeg"/>
  <itunes:episodeType>full</itunes:episodeType>
  <itunes:author>JT Pennington</itunes:author>
  <itunes:subtitle>Jeff finds a spycam in his house...</itunes:subtitle>
  <itunes:duration>50:57</itunes:duration>
  <itunes:explicit>no</itunes:explicit>
  <itunes:image href="https://media24.fireside.fm/file/fireside-images-2024/podcasts/images/5/53fe604f-ed50-491e-81f2-4693e68381bb/cover.jpg?v=1"/>
  <description>&lt;p&gt;Jeff finds a spycam in his house... &lt;br&gt;
 Pics:&lt;br&gt;
&lt;a href="https://photos.smugmug.com/photos/i-3TNJDdR/0/7a1c0f79/4K/i-3TNJDdR-4K.jpg" rel="nofollow noopener"&gt;https://photos.smugmug.com/photos/i-3TNJDdR/0/7a1c0f79/4K/i-3TNJDdR-4K.jpg&lt;/a&gt;&lt;br&gt;
&lt;a href="https://photos.smugmug.com/photos/i-2XkJcGL/0/a4e69b53/4K/i-2XkJcGL-4K.jpg" rel="nofollow noopener"&gt;https://photos.smugmug.com/photos/i-2XkJcGL/0/a4e69b53/4K/i-2XkJcGL-4K.jpg&lt;/a&gt;&lt;br&gt;
&lt;a href="https://photos.smugmug.com/photos/i-kf4ngmC/0/413f7fb1/4K/i-kf4ngmC-4K.jpg" rel="nofollow noopener"&gt;https://photos.smugmug.com/photos/i-kf4ngmC/0/413f7fb1/4K/i-kf4ngmC-4K.jpg&lt;/a&gt;&lt;br&gt;
&lt;a href="https://photos.smugmug.com/photos/i-W7H5TwT/0/ae6d64ab/4K/i-W7H5TwT-4K.jpg" rel="nofollow noopener"&gt;https://photos.smugmug.com/photos/i-W7H5TwT/0/ae6d64ab/4K/i-W7H5TwT-4K.jpg&lt;/a&gt;&lt;br&gt;
&lt;a href="https://photos.smugmug.com/photos/i-QFBh738/0/00fd0296/4K/i-QFBh738-4K.jpg" rel="nofollow noopener"&gt;https://photos.smugmug.com/photos/i-QFBh738/0/00fd0296/4K/i-QFBh738-4K.jpg&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Ulfnic's JS Code information:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;What is 0.1 + 0.2? Wrong! It's 0.30000000000000004.
Getting JS to evaluate basic decimal math is a StackOverflow greasy rabbit hole of hacky solutions guaranteed to work for at least a week.
JavaScript needs a 3rd-party 24KB library to accomplish basic decimal math(1), alternatively you can use the new (and not well supported) BigInt() to pretend you're doing decimal math by
string hacking decimal points into super long integers.

(1) https://github.com/MikeMcl/big.js/blob/master/big.js
(2) https://dustinpfister.github.io/2019/09/06/js-bigint/
(3) https://javascriptinfo.com/view/3760151/native-bigint-and-intl-numberformat-for-accurate-currency-calculations-and-display

Steps to to reproduce 0.1 + 0.2:

# Option 1: https://jsconsole.com/
console.log(0.1 + 0.2)

# Option 2: In browser
# ctrl + shift + j # Chromium
# ctrl + shift + k # Firefox
# click on "Console" tab
console.log(0.1 + 0.2)

# Option 3: NodeJS
nodejs -e "console.log(0.1 + 0.2)"
&lt;/code&gt;&lt;/pre&gt;
</description>
  <itunes:keywords>spy camera, surveillance, javascript, feedback, 386, 486, 286, pentium, old hardware, ecmascript, retro, electron, vscode, open source, linux, bsd, unix, dec, alpha, sparc, sun</itunes:keywords>
  <content:encoded>
    <![CDATA[<p>Jeff finds a spycam in his house... <br>
 Pics:<br>
<a href="https://photos.smugmug.com/photos/i-3TNJDdR/0/7a1c0f79/4K/i-3TNJDdR-4K.jpg" rel="nofollow noopener">https://photos.smugmug.com/photos/i-3TNJDdR/0/7a1c0f79/4K/i-3TNJDdR-4K.jpg</a><br>
<a href="https://photos.smugmug.com/photos/i-2XkJcGL/0/a4e69b53/4K/i-2XkJcGL-4K.jpg" rel="nofollow noopener">https://photos.smugmug.com/photos/i-2XkJcGL/0/a4e69b53/4K/i-2XkJcGL-4K.jpg</a><br>
<a href="https://photos.smugmug.com/photos/i-kf4ngmC/0/413f7fb1/4K/i-kf4ngmC-4K.jpg" rel="nofollow noopener">https://photos.smugmug.com/photos/i-kf4ngmC/0/413f7fb1/4K/i-kf4ngmC-4K.jpg</a><br>
<a href="https://photos.smugmug.com/photos/i-W7H5TwT/0/ae6d64ab/4K/i-W7H5TwT-4K.jpg" rel="nofollow noopener">https://photos.smugmug.com/photos/i-W7H5TwT/0/ae6d64ab/4K/i-W7H5TwT-4K.jpg</a><br>
<a href="https://photos.smugmug.com/photos/i-QFBh738/0/00fd0296/4K/i-QFBh738-4K.jpg" rel="nofollow noopener">https://photos.smugmug.com/photos/i-QFBh738/0/00fd0296/4K/i-QFBh738-4K.jpg</a></p>

<p>Ulfnic's JS Code information:</p>

<pre><code>What is 0.1 + 0.2? Wrong! It's 0.30000000000000004.
Getting JS to evaluate basic decimal math is a StackOverflow greasy rabbit hole of hacky solutions guaranteed to work for at least a week.
JavaScript needs a 3rd-party 24KB library to accomplish basic decimal math(1), alternatively you can use the new (and not well supported) BigInt() to pretend you're doing decimal math by
string hacking decimal points into super long integers.

(1) https://github.com/MikeMcl/big.js/blob/master/big.js
(2) https://dustinpfister.github.io/2019/09/06/js-bigint/
(3) https://javascriptinfo.com/view/3760151/native-bigint-and-intl-numberformat-for-accurate-currency-calculations-and-display

Steps to to reproduce 0.1 + 0.2:

# Option 1: https://jsconsole.com/
console.log(0.1 + 0.2)

# Option 2: In browser
# ctrl + shift + j # Chromium
# ctrl + shift + k # Firefox
# click on "Console" tab
console.log(0.1 + 0.2)

# Option 3: NodeJS
nodejs -e "console.log(0.1 + 0.2)"
</code></pre>]]>
  </content:encoded>
  <itunes:summary>
    <![CDATA[<p>Jeff finds a spycam in his house... <br>
 Pics:<br>
<a href="https://photos.smugmug.com/photos/i-3TNJDdR/0/7a1c0f79/4K/i-3TNJDdR-4K.jpg" rel="nofollow noopener">https://photos.smugmug.com/photos/i-3TNJDdR/0/7a1c0f79/4K/i-3TNJDdR-4K.jpg</a><br>
<a href="https://photos.smugmug.com/photos/i-2XkJcGL/0/a4e69b53/4K/i-2XkJcGL-4K.jpg" rel="nofollow noopener">https://photos.smugmug.com/photos/i-2XkJcGL/0/a4e69b53/4K/i-2XkJcGL-4K.jpg</a><br>
<a href="https://photos.smugmug.com/photos/i-kf4ngmC/0/413f7fb1/4K/i-kf4ngmC-4K.jpg" rel="nofollow noopener">https://photos.smugmug.com/photos/i-kf4ngmC/0/413f7fb1/4K/i-kf4ngmC-4K.jpg</a><br>
<a href="https://photos.smugmug.com/photos/i-W7H5TwT/0/ae6d64ab/4K/i-W7H5TwT-4K.jpg" rel="nofollow noopener">https://photos.smugmug.com/photos/i-W7H5TwT/0/ae6d64ab/4K/i-W7H5TwT-4K.jpg</a><br>
<a href="https://photos.smugmug.com/photos/i-QFBh738/0/00fd0296/4K/i-QFBh738-4K.jpg" rel="nofollow noopener">https://photos.smugmug.com/photos/i-QFBh738/0/00fd0296/4K/i-QFBh738-4K.jpg</a></p>

<p>Ulfnic's JS Code information:</p>

<pre><code>What is 0.1 + 0.2? Wrong! It's 0.30000000000000004.
Getting JS to evaluate basic decimal math is a StackOverflow greasy rabbit hole of hacky solutions guaranteed to work for at least a week.
JavaScript needs a 3rd-party 24KB library to accomplish basic decimal math(1), alternatively you can use the new (and not well supported) BigInt() to pretend you're doing decimal math by
string hacking decimal points into super long integers.

(1) https://github.com/MikeMcl/big.js/blob/master/big.js
(2) https://dustinpfister.github.io/2019/09/06/js-bigint/
(3) https://javascriptinfo.com/view/3760151/native-bigint-and-intl-numberformat-for-accurate-currency-calculations-and-display

Steps to to reproduce 0.1 + 0.2:

# Option 1: https://jsconsole.com/
console.log(0.1 + 0.2)

# Option 2: In browser
# ctrl + shift + j # Chromium
# ctrl + shift + k # Firefox
# click on "Console" tab
console.log(0.1 + 0.2)

# Option 3: NodeJS
nodejs -e "console.log(0.1 + 0.2)"
</code></pre>]]>
  </itunes:summary>
</item>
<item>
  <title>Episode 31: Rogue Feedback</title>
  <link>https://www.theopiniondominion.org/31</link>
  <guid isPermaLink="false">cef5fc0a-36cb-412d-96b6-1355966594c8</guid>
  <pubDate>Mon, 08 Mar 2021 00:00:00 -0500</pubDate>
  <author>JT Pennington</author>
  <enclosure url="https://aphid.fireside.fm/d/1437767933/53fe604f-ed50-491e-81f2-4693e68381bb/cef5fc0a-36cb-412d-96b6-1355966594c8.mp3" length="52890288" type="audio/mpeg"/>
  <itunes:episodeType>full</itunes:episodeType>
  <itunes:author>JT Pennington</itunes:author>
  <itunes:subtitle>Jeff and JT go over feedback from the community about our Red Hat Rogue Podcast.</itunes:subtitle>
  <itunes:duration>53:56</itunes:duration>
  <itunes:explicit>no</itunes:explicit>
  <itunes:image href="https://media24.fireside.fm/file/fireside-images-2024/podcasts/images/5/53fe604f-ed50-491e-81f2-4693e68381bb/cover.jpg?v=1"/>
  <description>&lt;h3&gt;Links&lt;/h3&gt;

&lt;p&gt;Eon Storage:&lt;br&gt;
&lt;a href="https://eonstorage.blogspot.com/2008/11/eon-storage-embeddable-onopensolaris.html" rel="nofollow noopener"&gt;https://eonstorage.blogspot.com/2008/11/eon-storage-embeddable-onopensolaris.html&lt;/a&gt;&lt;br&gt;
&lt;a href="https://sites.google.com/site/eonstorage/" rel="nofollow noopener"&gt;https://sites.google.com/site/eonstorage/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Oracle $39 Billion in 2020 &lt;a href="https://www.macrotrends.net/stocks/charts/ORCL/oracle/revenue" rel="nofollow noopener"&gt;https://www.macrotrends.net/stocks/charts/ORCL/oracle/revenue&lt;/a&gt;&lt;br&gt;
Google $171 Billion &lt;a href="https://www.macrotrends.net/stocks/charts/GOOG/alphabet/revenue" rel="nofollow noopener"&gt;https://www.macrotrends.net/stocks/charts/GOOG/alphabet/revenue&lt;/a&gt;&lt;br&gt;
Facebook $85 Billion &lt;a href="https://www.macrotrends.net/stocks/charts/FB/facebook/revenue" rel="nofollow noopener"&gt;https://www.macrotrends.net/stocks/charts/FB/facebook/revenue&lt;/a&gt;&lt;br&gt;
Apple $274 Billion &lt;a href="https://www.macrotrends.net/stocks/charts/AAPL/apple/revenue" rel="nofollow noopener"&gt;https://www.macrotrends.net/stocks/charts/AAPL/apple/revenue&lt;/a&gt;&lt;/p&gt;
</description>
  <itunes:keywords>feedback, RedHat, Linux, sysadmin, software, FOSS, FLOSS, CentOS, feedback, gpl, oracle, Canonical, SuSe, community, development, docker, podman, lxd, oraclefanfic</itunes:keywords>
  <content:encoded>
    <![CDATA[<h3>Links</h3>

<p>Eon Storage:<br>
<a href="https://eonstorage.blogspot.com/2008/11/eon-storage-embeddable-onopensolaris.html" rel="nofollow noopener">https://eonstorage.blogspot.com/2008/11/eon-storage-embeddable-onopensolaris.html</a><br>
<a href="https://sites.google.com/site/eonstorage/" rel="nofollow noopener">https://sites.google.com/site/eonstorage/</a></p>

<p>Oracle $39 Billion in 2020 <a href="https://www.macrotrends.net/stocks/charts/ORCL/oracle/revenue" rel="nofollow noopener">https://www.macrotrends.net/stocks/charts/ORCL/oracle/revenue</a><br>
Google $171 Billion <a href="https://www.macrotrends.net/stocks/charts/GOOG/alphabet/revenue" rel="nofollow noopener">https://www.macrotrends.net/stocks/charts/GOOG/alphabet/revenue</a><br>
Facebook $85 Billion <a href="https://www.macrotrends.net/stocks/charts/FB/facebook/revenue" rel="nofollow noopener">https://www.macrotrends.net/stocks/charts/FB/facebook/revenue</a><br>
Apple $274 Billion <a href="https://www.macrotrends.net/stocks/charts/AAPL/apple/revenue" rel="nofollow noopener">https://www.macrotrends.net/stocks/charts/AAPL/apple/revenue</a></p>]]>
  </content:encoded>
  <itunes:summary>
    <![CDATA[<h3>Links</h3>

<p>Eon Storage:<br>
<a href="https://eonstorage.blogspot.com/2008/11/eon-storage-embeddable-onopensolaris.html" rel="nofollow noopener">https://eonstorage.blogspot.com/2008/11/eon-storage-embeddable-onopensolaris.html</a><br>
<a href="https://sites.google.com/site/eonstorage/" rel="nofollow noopener">https://sites.google.com/site/eonstorage/</a></p>

<p>Oracle $39 Billion in 2020 <a href="https://www.macrotrends.net/stocks/charts/ORCL/oracle/revenue" rel="nofollow noopener">https://www.macrotrends.net/stocks/charts/ORCL/oracle/revenue</a><br>
Google $171 Billion <a href="https://www.macrotrends.net/stocks/charts/GOOG/alphabet/revenue" rel="nofollow noopener">https://www.macrotrends.net/stocks/charts/GOOG/alphabet/revenue</a><br>
Facebook $85 Billion <a href="https://www.macrotrends.net/stocks/charts/FB/facebook/revenue" rel="nofollow noopener">https://www.macrotrends.net/stocks/charts/FB/facebook/revenue</a><br>
Apple $274 Billion <a href="https://www.macrotrends.net/stocks/charts/AAPL/apple/revenue" rel="nofollow noopener">https://www.macrotrends.net/stocks/charts/AAPL/apple/revenue</a></p>]]>
  </itunes:summary>
</item>
<item>
  <title>Episode 25: What if RedHat goes Rogue?</title>
  <link>https://www.theopiniondominion.org/25</link>
  <guid isPermaLink="false">8be209b4-f3a4-4a94-aa70-076cdad7fc93</guid>
  <pubDate>Mon, 25 Jan 2021 00:00:00 -0500</pubDate>
  <author>JT Pennington</author>
  <enclosure url="https://aphid.fireside.fm/d/1437767933/53fe604f-ed50-491e-81f2-4693e68381bb/8be209b4-f3a4-4a94-aa70-076cdad7fc93.mp3" length="61966776" type="audio/mpeg"/>
  <itunes:episodeType>full</itunes:episodeType>
  <itunes:author>JT Pennington</itunes:author>
  <itunes:subtitle>JT raises a concern he has over Red Hat's future and what it means for the rest of Open Source and Linux Community. </itunes:subtitle>
  <itunes:duration>1:00:36</itunes:duration>
  <itunes:explicit>no</itunes:explicit>
  <itunes:image href="https://media24.fireside.fm/file/fireside-images-2024/podcasts/images/5/53fe604f-ed50-491e-81f2-4693e68381bb/cover.jpg?v=1"/>
  <description>&lt;p&gt;JT raises a concern he has over Red Hat's future and what it means for the rest of Open Source and Linux Community. &lt;/p&gt;

&lt;p&gt;Feedback can be sent using the fireside contact form at the bottom of the podcast page, or by emailing directly to jt [at] minddripmedia.com&lt;br&gt;
Our Telegram channel is here: &lt;a href="https://t.me/TheOpinionDominion" rel="nofollow noopener"&gt;https://t.me/TheOpinionDominion&lt;/a&gt;&lt;br&gt;
Our Matrix channel is here: TheOpinionDominion:linuxdelta.org &lt;/p&gt;
</description>
  <itunes:keywords>RedHat, Linux, sysadmin, software, FOSS, FLOSS, CentOS, feedback, gpl, oracle, Canonical, SuSe, community, development, docker, podman, buildah, scopeo, oraclefanfic</itunes:keywords>
  <content:encoded>
    <![CDATA[<p>JT raises a concern he has over Red Hat's future and what it means for the rest of Open Source and Linux Community. </p>

<p>Feedback can be sent using the fireside contact form at the bottom of the podcast page, or by emailing directly to jt [at] minddripmedia.com<br>
Our Telegram channel is here: <a href="https://t.me/TheOpinionDominion" rel="nofollow noopener">https://t.me/TheOpinionDominion</a><br>
Our Matrix channel is here: TheOpinionDominion:linuxdelta.org</p>]]>
  </content:encoded>
  <itunes:summary>
    <![CDATA[<p>JT raises a concern he has over Red Hat's future and what it means for the rest of Open Source and Linux Community. </p>

<p>Feedback can be sent using the fireside contact form at the bottom of the podcast page, or by emailing directly to jt [at] minddripmedia.com<br>
Our Telegram channel is here: <a href="https://t.me/TheOpinionDominion" rel="nofollow noopener">https://t.me/TheOpinionDominion</a><br>
Our Matrix channel is here: TheOpinionDominion:linuxdelta.org</p>]]>
  </itunes:summary>
</item>
<item>
  <title>Episode 22: Community Feedback! Part Deux</title>
  <link>https://www.theopiniondominion.org/22</link>
  <guid isPermaLink="false">cbc85bc8-f925-453d-b531-f7803a068d36</guid>
  <pubDate>Mon, 04 Jan 2021 03:00:00 -0500</pubDate>
  <author>JT Pennington</author>
  <enclosure url="https://aphid.fireside.fm/d/1437767933/53fe604f-ed50-491e-81f2-4693e68381bb/cbc85bc8-f925-453d-b531-f7803a068d36.mp3" length="61378560" type="audio/mpeg"/>
  <itunes:episodeType>full</itunes:episodeType>
  <itunes:author>JT Pennington</itunes:author>
  <itunes:subtitle>Jeff and JT cover more community feedback</itunes:subtitle>
  <itunes:duration>42:37</itunes:duration>
  <itunes:explicit>no</itunes:explicit>
  <itunes:image href="https://media24.fireside.fm/file/fireside-images-2024/podcasts/images/5/53fe604f-ed50-491e-81f2-4693e68381bb/cover.jpg?v=1"/>
  <description>&lt;p&gt;Jeff and JT cover more community feedback.&lt;/p&gt;

&lt;p&gt;Feedback can be sent using the fireside contact form at the bottom of the podcast page, or by emailing directly to jt [at] minddripmedia.com&lt;br&gt;
Our Telegram channel is here: &lt;a href="https://t.me/TheOpinionDominion" rel="nofollow noopener"&gt;https://t.me/TheOpinionDominion&lt;/a&gt;&lt;br&gt;
Our Matrix channel is here: TheOpinionDominion:linuxdelta.org &lt;/p&gt;
</description>
  <itunes:keywords>Patents, copyrights, licenses, own your labor, FOSS, OSS, Linux, Kernel, Development, Open Development, feedback, community engagement </itunes:keywords>
  <content:encoded>
    <![CDATA[<p>Jeff and JT cover more community feedback.</p>

<p>Feedback can be sent using the fireside contact form at the bottom of the podcast page, or by emailing directly to jt [at] minddripmedia.com<br>
Our Telegram channel is here: <a href="https://t.me/TheOpinionDominion" rel="nofollow noopener">https://t.me/TheOpinionDominion</a><br>
Our Matrix channel is here: TheOpinionDominion:linuxdelta.org</p>]]>
  </content:encoded>
  <itunes:summary>
    <![CDATA[<p>Jeff and JT cover more community feedback.</p>

<p>Feedback can be sent using the fireside contact form at the bottom of the podcast page, or by emailing directly to jt [at] minddripmedia.com<br>
Our Telegram channel is here: <a href="https://t.me/TheOpinionDominion" rel="nofollow noopener">https://t.me/TheOpinionDominion</a><br>
Our Matrix channel is here: TheOpinionDominion:linuxdelta.org</p>]]>
  </itunes:summary>
</item>
<item>
  <title>Episode 21: Listeners give us their two cents on CentOS</title>
  <link>https://www.theopiniondominion.org/21</link>
  <guid isPermaLink="false">47a670e9-7abc-49c8-afde-14e313138b63</guid>
  <pubDate>Mon, 28 Dec 2020 00:00:00 -0500</pubDate>
  <author>JT Pennington</author>
  <enclosure url="https://aphid.fireside.fm/d/1437767933/53fe604f-ed50-491e-81f2-4693e68381bb/47a670e9-7abc-49c8-afde-14e313138b63.mp3" length="55377792" type="audio/mpeg"/>
  <itunes:episodeType>full</itunes:episodeType>
  <itunes:author>JT Pennington</itunes:author>
  <itunes:subtitle>JT and Jeff go over the community feedback about our RedHat/CentOS episode.</itunes:subtitle>
  <itunes:duration>38:27</itunes:duration>
  <itunes:explicit>no</itunes:explicit>
  <itunes:image href="https://media24.fireside.fm/file/fireside-images-2024/podcasts/images/5/53fe604f-ed50-491e-81f2-4693e68381bb/cover.jpg?v=1"/>
  <description>&lt;p&gt;JT and Jeff go over the community feedback about our RedHat/CentOS episode.&lt;/p&gt;

&lt;p&gt;Feedback can be sent using the fireside contact form at the bottom of the podcast page, or by emailing directly to jt [at] minddripmedia.com&lt;br&gt;
Our Telegram channel is here: &lt;a href="https://t.me/TheOpinionDominion" rel="nofollow noopener"&gt;https://t.me/TheOpinionDominion&lt;/a&gt;&lt;br&gt;
Our Matrix channel is here: TheOpinionDominion:linuxdelta.org &lt;/p&gt;
</description>
  <itunes:keywords>RedHat, Linux, sysadmin, software, FOSS, FLOSS, CentOS, feedback, gpl, community, development, stable, debian, sid, bullseye, fedora, rawhide, archlinux, entitlement, </itunes:keywords>
  <content:encoded>
    <![CDATA[<p>JT and Jeff go over the community feedback about our RedHat/CentOS episode.</p>

<p>Feedback can be sent using the fireside contact form at the bottom of the podcast page, or by emailing directly to jt [at] minddripmedia.com<br>
Our Telegram channel is here: <a href="https://t.me/TheOpinionDominion" rel="nofollow noopener">https://t.me/TheOpinionDominion</a><br>
Our Matrix channel is here: TheOpinionDominion:linuxdelta.org</p>]]>
  </content:encoded>
  <itunes:summary>
    <![CDATA[<p>JT and Jeff go over the community feedback about our RedHat/CentOS episode.</p>

<p>Feedback can be sent using the fireside contact form at the bottom of the podcast page, or by emailing directly to jt [at] minddripmedia.com<br>
Our Telegram channel is here: <a href="https://t.me/TheOpinionDominion" rel="nofollow noopener">https://t.me/TheOpinionDominion</a><br>
Our Matrix channel is here: TheOpinionDominion:linuxdelta.org</p>]]>
  </itunes:summary>
</item>
  </channel>
</rss>
