<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">
  <channel>
    <title>Community &amp;mdash; TechZerker</title>
    <link>https://techzerker.com/tag:Community</link>
    <description>*A Tech Professional With Occasional Sanity*</description>
    <pubDate>Tue, 14 Apr 2026 07:06:48 +0000</pubDate>
    <image>
      <url>https://i.snap.as/70voD6rF.png</url>
      <title>Community &amp;mdash; TechZerker</title>
      <link>https://techzerker.com/tag:Community</link>
    </image>
    <item>
      <title>Personal Blogs and Community Support</title>
      <link>https://techzerker.com/personal-blogs-and-community-support?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[My love for small, personal blogs and writing that is not SEO or advertising focused has always been strong, mostly calling back to my 90&#39;s internet roots. From the era before the big central platforms like Facebook, when we all had independant sites, free GeoCities blogs, and the like. In that world, which still exists today, albeit smaller, easy quick sharing and likes did not exist. This meant that in most cases, as far as any specific blog author knew, you were writing into a void that no one was reading, which can still be the case.&#xA;!--more--&#xA;&#xA;The inspiration for this little commentary was the recent events as I started returning to some writing (and coding) plans. This site is built with the Hugo framework, and hosted via GitHub Pages. When I returned to start writing a bit of a history and way forward artcile on trying to get back into Coding, and tackling a #100DaysofCode challenge, I found my GitHub Actions tasks that publish these posts were failing. Hours of searching and mucking about, and the action workflow that had previously worked just kept failing, and every element of documentation I could find for the most common workflow scripts, pointed to the same failing solutions. Because these most common solutions relied on importing other components/scripts, I was not getting decent or useful error logs to explain why the failure was occuring. I know there are methods to further pull those workflows and components apart to troubleshoot, but I wanted to keep searching, and that&#39;s where another personal blog, more or less shouting into the void of the internet, solved my problem. &#xA;&#xA;In my searching, results came up pointing to a personal blog Matt Harrison, a fellow advertising free, Hugo built and GitHub Pages hosted blog. Like myself, the writing is sometimes sporadic because it&#39;s not designed as a source of income directly, and it&#39;s not built to encourage agressive likes/favorites/shares. The article itself was Automating this Hugo Blog with GitHub Actions. Matt gave a well written summary of GitHub actions, and then provided his own actions workflow script. The main script was followed by a nice breakout summary of the key stages of the script and what they were doing, which solidified by understanding of the process. Because it did not rely on other pre-build actions, beyond the standard git checkout action, it was easy to understand what was going on, and it solved my own problems perfectly!&#xA;&#xA;For my use case, the only change I had to select a different Hugo version required for my theme, as well as update the curl download to pull Hugo Extended, also required for my theme:&#xA;&#xA;    steps:&#xA;      name: Install Hugo&#xA;        env:&#xA;          HUGOVERSION: 0.86.1&#xA;        run: |&#xA;          mkdir ~/hugo&#xA;          cd ~/hugo&#xA;          curl -L &#34;https://github.com/gohugoio/hugo/releases/download/v${HUGOVERSION}/hugoextended${HUGOVERSION}Linux-64bit.tar.gz&#34; --output hugo.tar.gz&#xA;          tar -xvzf hugo.tar.gz&#xA;          sudo mv hugo /usr/local/bin&#xA;&#xA;Once I realized this solved my problems, and I could get back to writing, I was excited. I reached out to Matt to give a quick Thank You for his posted solution, and recieved a pleasant response back equally agreeing that often this type of writing feels like shouting into the void. So hey, if you&#39;re reading a small site like this, especially one not pushing advertising and tracking, and you find it useful, reach out to the author and let them know it helped, it&#39;s always appreciated. &#xA;&#xA;If you are looking for more reading, I maintain my own Blogroll listing here on the site, mostly generated from my MiniFlux RSS Feed. Some of the entries in other categories are larger sites with tracking and advertising, but first on the list is personal Blogs that I like to follow, and I occasionaly update the list when I find new entries. In the next few days, I&#39;ll get onto that planned article (now that everything is working) on my development history/education, and my plans for the future. &#xA;&#xA;#Blogs #Community #Hugo #Github&#xA;&#xA;--Scott]]&gt;</description>
      <content:encoded><![CDATA[<p>My love for small, personal blogs and writing that is not SEO or advertising focused has always been strong, mostly calling back to my 90&#39;s internet roots. From the era before the big central platforms like Facebook, when we all had independant sites, free GeoCities blogs, and the like. In that world, which still exists today, albeit smaller, easy quick sharing and <em>likes</em> did not exist. This meant that in most cases, as far as any specific blog author knew, you were writing into a void that no one was reading, which can still be the case.
</p>

<p>The inspiration for this little commentary was the recent events as I started returning to some writing (and coding) plans. This site is built with the <a href="https://gohugo.io/">Hugo</a> framework, and hosted via <strong>GitHub Pages</strong>. When I returned to start writing a bit of a history and way forward artcile on trying to get back into Coding, and tackling a <a href="https://techzerker.com/tag:100DaysofCode" class="hashtag"><span>#</span><span class="p-category">100DaysofCode</span></a> challenge, I found my <em>GitHub Actions</em> tasks that publish these posts were failing. Hours of searching and mucking about, and the action workflow that had previously worked just kept failing, and every element of documentation I could find for the most common workflow scripts, pointed to the same failing solutions. Because these most common solutions relied on importing other components/scripts, I was not getting decent or useful error logs to explain why the failure was occuring. I know there are methods to further pull those workflows and components apart to troubleshoot, but I wanted to keep searching, and that&#39;s where another personal blog, more or less shouting into the void of the internet, solved my problem.</p>

<p>In my searching, results came up pointing to a personal blog <a href="https://matt-harrison.com/">Matt Harrison</a>, a fellow advertising free, Hugo built and GitHub Pages hosted blog. Like myself, the writing is sometimes sporadic because it&#39;s not designed as a source of income directly, and it&#39;s not built to encourage agressive likes/favorites/shares. The article itself was <a href="https://matt-harrison.com/posts/github-actions-hugo/">Automating this Hugo Blog with GitHub Actions</a>. Matt gave a well written summary of GitHub actions, and then provided his own actions workflow script. The main script was followed by a nice breakout summary of the key stages of the script and what they were doing, which solidified by understanding of the process. Because it did not rely on other pre-build actions, beyond the standard git checkout action, it was easy to understand what was going on, and it solved my own problems perfectly!</p>

<p>For my use case, the only change I had to select a different Hugo version required for my theme, as well as update the curl download to pull Hugo Extended, also required for my theme:</p>

<pre><code>    steps:
      - name: Install Hugo
        env:
          HUGO_VERSION: 0.86.1
        run: |
          mkdir ~/hugo
          cd ~/hugo
          curl -L &#34;https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz&#34; --output hugo.tar.gz
          tar -xvzf hugo.tar.gz
          sudo mv hugo /usr/local/bin
</code></pre>

<p>Once I realized this solved my problems, and I could get back to writing, I was excited. I reached out to Matt to give a quick Thank You for his posted solution, and recieved a pleasant response back equally agreeing that often this type of writing feels like shouting into the void. So hey, if you&#39;re reading a small site like this, especially one not pushing advertising and tracking, and you find it useful, reach out to the author and let them know it helped, it&#39;s always appreciated.</p>

<p>If you are looking for more reading, I maintain my own <a href="https://techzerker.com/blogroll/">Blogroll listing</a> here on the site, mostly generated from my MiniFlux RSS Feed. Some of the entries in other categories are larger sites with tracking and advertising, but first on the list is personal Blogs that I like to follow, and I occasionaly update the list when I find new entries. In the next few days, I&#39;ll get onto that planned article (now that everything is working) on my development history/education, and my plans for the future.</p>

<p><a href="https://techzerker.com/tag:Blogs" class="hashtag"><span>#</span><span class="p-category">Blogs</span></a> <a href="https://techzerker.com/tag:Community" class="hashtag"><span>#</span><span class="p-category">Community</span></a> <a href="https://techzerker.com/tag:Hugo" class="hashtag"><span>#</span><span class="p-category">Hugo</span></a> <a href="https://techzerker.com/tag:Github" class="hashtag"><span>#</span><span class="p-category">Github</span></a></p>

<h2 id="scott" id="scott">—<em>Scott</em></h2>
]]></content:encoded>
      <guid>https://techzerker.com/personal-blogs-and-community-support</guid>
      <pubDate>Thu, 21 Oct 2021 19:09:15 +0000</pubDate>
    </item>
    <item>
      <title>Toxicity in Linux Community (Link)</title>
      <link>https://techzerker.com/toxicity-in-linux-community-link?pk_campaign=rss-feed</link>
      <description>&lt;![CDATA[The Linux For Everyone channel, founded by Jason Evangelho today posted an excellent commentary, written by Alan Diggs on the recurring challenges of the toxicity in the Linux community.&#xA;!--more--&#xA;While there are some amazing and supportive groups throughout the Linux community, it is easy to agree with this commentary that the toxicity is a scar that consistently hurts the overall image of Linux and Open Source. &#xA;&#xA;Working in enterprise IT, I personally know a selection of working IT folks who at my encouragement have tried Linux, and if they couldn&#39;t reach me, gone to a forum for questions, and then texted me quitting Linux because of how agressivly they were berated. &#xA;&#xA;My core approach with Linux and encouraging adoption has been to talk about my own system and what works (and what does not) and show it off a little. If anyone reaches out and shows some interest, I will gadly answer what questions I can, understand their needs, and attempt to help and steer them in the right direction. However, the core philosphy is:&#xA;&#xA;  Use what works for you. Period.&#xA;&#xA;If your Windows 10 system is getting the job (or game) done for you, and anything the community has shown in Linux (or BSD) has not grabbed your attention, that&#39;s fine, live and let live. If your interested in the systems the positive users in the community talk about and demonstrate, reach out with questions. If you&#39;ve tried before and hit a &#34;Wall of Toxicity&#34;, then here are a few great places to join and ask questions where we&#39;ll be friendly and helpful, regardless of your experience level:&#xA;&#xA;Fosstodon (Mastodon Instance) &#xA;&#xA;Telegram: Linux For Everyone&#xA;&#xA;#Linux #Community&#xA;&#xA;--Scott]]&gt;</description>
      <content:encoded><![CDATA[<p>The <a href="https://medium.com/linuxforeveryone"><em>Linux For Everyone</em></a> channel, founded by <a href="https://layer8.space/@killyourfm">Jason Evangelho</a> today posted an excellent commentary, written by <a href="https://schykle.medium.com">Alan Diggs</a> on the recurring challenges of the <a href="https://medium.com/linuxforeveryone/windows-is-sh-t-linux-users-and-the-technical-superiority-problem-196a597aa860">toxicity in the Linux community</a>.

While there are some amazing and supportive groups throughout the Linux community, it is easy to agree with this commentary that the toxicity is a scar that consistently hurts the overall image of Linux and Open Source.</p>

<p>Working in enterprise IT, I personally know a selection of working IT folks who at my encouragement have <em>tried</em> Linux, and if they couldn&#39;t reach me, gone to a forum for questions, and then texted me <em>quitting Linux</em> because of how agressivly they were berated.</p>

<p>My core approach with Linux and encouraging adoption has been to talk about my own system and what works (and what does not) and show it off a little. If anyone reaches out and shows some interest, I will gadly answer what questions I can, understand their needs, and attempt to help and steer them in the right direction. However, the core philosphy is:</p>

<blockquote><p><em>Use what works for you. Period.</em></p></blockquote>

<p>If your Windows 10 system is getting the job (or game) done for you, and anything the community has shown in Linux (or BSD) has not grabbed your attention, that&#39;s fine, live and let live. If your interested in the systems the positive users in the community talk about and demonstrate, reach out with questions. If you&#39;ve tried before and hit a <em>“Wall of Toxicity”</em>, then here are a few great places to join and ask questions where we&#39;ll be friendly and helpful, regardless of your experience level:</p>

<p><a href="https://fosstodon.org"><strong>Fosstodon</strong></a> (Mastodon Instance)</p>

<p><a href="https://t.me/linux4everyone"><strong>Telegram: Linux For Everyone</strong></a></p>

<p><a href="https://techzerker.com/tag:Linux" class="hashtag"><span>#</span><span class="p-category">Linux</span></a> <a href="https://techzerker.com/tag:Community" class="hashtag"><span>#</span><span class="p-category">Community</span></a></p>

<h2 id="scott" id="scott">—<em>Scott</em></h2>
]]></content:encoded>
      <guid>https://techzerker.com/toxicity-in-linux-community-link</guid>
      <pubDate>Thu, 11 Feb 2021 20:05:18 +0000</pubDate>
    </item>
  </channel>
</rss>