<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.10.0">Jekyll</generator><link href="https://culug.group/feed.xml" rel="self" type="application/atom+xml" /><link href="https://culug.group/" rel="alternate" type="text/html" /><updated>2026-02-26T16:27:56-07:00</updated><id>https://culug.group/feed.xml</id><title type="html">Central Utah Linux/Unix User Group</title><subtitle>Central Utah Linux/Unix User Group (CULUG) is a technology-focused user group supporting Linux, Unix (i.e. MacOS) or Unix-like technologies. The group is intended to serve as a casual meeting space for people interested in technology in the Central Utah area.</subtitle><entry><title type="html">Discord, Meetup.com updates</title><link href="https://culug.group/group/chat/2025/08/21/group-chat/" rel="alternate" type="text/html" title="Discord, Meetup.com updates" /><published>2025-08-21T00:00:00-06:00</published><updated>2025-08-21T00:00:00-06:00</updated><id>https://culug.group/group/chat/2025/08/21/group-chat</id><content type="html" xml:base="https://culug.group/group/chat/2025/08/21/group-chat/"><![CDATA[<h2 id="discord-updates">Discord updates</h2>

<p>Notable changes have been introduced to our Discord instance to increase accessibility:</p>
<ol>
  <li>Weekly meetings will be automatically transcribed via Scripty and saved to <code class="language-plaintext highlighter-rouge">#meeting-notes</code> channel</li>
  <li>Weekly meetings will be recorded with Craig and will be accessible with the <code class="language-plaintext highlighter-rouge">/recordings</code> subcommand</li>
  <li>Messages in meeting-notes will be publicly visible via Linen: <a href="https://www.linen.dev/s/central-utah-lug/c/meeting-notes">https://www.linen.dev/s/central-utah-lug/c/meeting-notes</a>
a. Note: usernames are set to be anonymous</li>
</ol>

<h2 id="canceling-meetupcom-membership">Canceling meetup.com membership</h2>

<p>Due to how expensive meetup.com is, we’re canceling the subscription behind the group on meetup.com and will no longer be updating the page. Please feel free to join Discord if you want to stay up-to-date on announcements: <a href="https://discord.gg/KEBCqdANz4">https://discord.gg/KEBCqdANz4</a></p>

<p>Or, checkout alternative ways to chat on our <a href="https://culug.group/contact">Contact page</a></p>]]></content><author><name></name></author><category term="group" /><category term="chat" /><summary type="html"><![CDATA[Discord updates Notable changes have been introduced to our Discord instance to increase accessibility: Weekly meetings will be automatically transcribed via Scripty and saved to #meeting-notes channel Weekly meetings will be recorded with Craig and will be accessible with the /recordings subcommand Messages in meeting-notes will be publicly visible via Linen: https://www.linen.dev/s/central-utah-lug/c/meeting-notes a. Note: usernames are set to be anonymous Canceling meetup.com membership Due to how expensive meetup.com is, we’re canceling the subscription behind the group on meetup.com and will no longer be updating the page. Please feel free to join Discord if you want to stay up-to-date on announcements: https://discord.gg/KEBCqdANz4 Or, checkout alternative ways to chat on our Contact page]]></summary></entry><entry><title type="html">Chat with us on Matrix</title><link href="https://culug.group/group/chat/2024/07/25/group-chat/" rel="alternate" type="text/html" title="Chat with us on Matrix" /><published>2024-07-25T00:00:00-06:00</published><updated>2024-07-25T00:00:00-06:00</updated><id>https://culug.group/group/chat/2024/07/25/group-chat</id><content type="html" xml:base="https://culug.group/group/chat/2024/07/25/group-chat/"><![CDATA[<p>In addition to Discord and sshchat, we have bridged a Matrix room for our group to chat in:</p>

<p><a href="https://matrix.to/#/#central-utah-lug:matrix.org">https://matrix.to/#/#central-utah-lug:matrix.org</a></p>

<p>Discord, sshchat and Matrix are all bridged to the same <code class="language-plaintext highlighter-rouge">#general</code> channel in our Discord instance. We are using [Matterbridge] to facilitate the bridging of the separate services.</p>

<h2 id="matterbridge-config">Matterbridge config</h2>

<p>For anyone curious, at the time of writing this is how Matterbridge is configured to bridge these separate services (with sensitive values scrubbed):</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>[sshchat.culug]
Server="&lt;snip&gt;:22"
Nick="matterbridge"
RemoteNickFormat="[{PROTOCOL}] &lt;{NICK}&gt; "

[discord.culug]
Token="&lt;snip&gt;"
Server="&lt;snip&gt;"
AutoWebhooks=true
RemoteNickFormat="[{PROTOCOL}] &lt;{NICK}&gt; "
PreserveThreading=true

[matrix.matrix-org]
Server="https://matrix.org"
Login="&lt;snip&gt;"
Password="&lt;snip&gt;"
RemoteNickFormat="[{PROTOCOL}] &lt;{NICK}&gt; "
NoHomeServerSuffix=false

[[gateway]]
name="ssh-chat-discord-matrix-gateway"
enable=true

  [[gateway.inout]]
  account="discord.culug"
  channel="general"

  [[gateway.inout]]
  account="sshchat.culug"
  channel="sshchat"

  [[gateway.inout]]
  account="matrix.matrix-org"
  channel="#central-utah-lug:matrix.org"
</code></pre></div></div>

<h2 id="bonus-sshchat">Bonus: SSHchat</h2>

<p>This is the snippet with how we’re running <code class="language-plaintext highlighter-rouge">sshchat</code>:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>docker run -v ./motd.txt:/opt/motd.txt -v ./ssh:/root/.ssh -p 22:2022 -d --name=sshchat --restart=unless-stopped docker.io/heywoodlh/ssh-chat:daf4677 /usr/local/bin/ssh-chat --identity=/root/.ssh/id_rsa --admin=/root/.ssh/admin_authorized_keys --motd=/opt/motd.txt
</code></pre></div></div>]]></content><author><name></name></author><category term="group" /><category term="chat" /><summary type="html"><![CDATA[In addition to Discord and sshchat, we have bridged a Matrix room for our group to chat in: https://matrix.to/#/#central-utah-lug:matrix.org Discord, sshchat and Matrix are all bridged to the same #general channel in our Discord instance. We are using [Matterbridge] to facilitate the bridging of the separate services. Matterbridge config For anyone curious, at the time of writing this is how Matterbridge is configured to bridge these separate services (with sensitive values scrubbed): [sshchat.culug] Server="&lt;snip&gt;:22" Nick="matterbridge" RemoteNickFormat="[{PROTOCOL}] &lt;{NICK}&gt; " [discord.culug] Token="&lt;snip&gt;" Server="&lt;snip&gt;" AutoWebhooks=true RemoteNickFormat="[{PROTOCOL}] &lt;{NICK}&gt; " PreserveThreading=true [matrix.matrix-org] Server="https://matrix.org" Login="&lt;snip&gt;" Password="&lt;snip&gt;" RemoteNickFormat="[{PROTOCOL}] &lt;{NICK}&gt; " NoHomeServerSuffix=false [[gateway]] name="ssh-chat-discord-matrix-gateway" enable=true [[gateway.inout]] account="discord.culug" channel="general" [[gateway.inout]] account="sshchat.culug" channel="sshchat" [[gateway.inout]] account="matrix.matrix-org" channel="#central-utah-lug:matrix.org" Bonus: SSHchat This is the snippet with how we’re running sshchat: docker run -v ./motd.txt:/opt/motd.txt -v ./ssh:/root/.ssh -p 22:2022 -d --name=sshchat --restart=unless-stopped docker.io/heywoodlh/ssh-chat:daf4677 /usr/local/bin/ssh-chat --identity=/root/.ssh/id_rsa --admin=/root/.ssh/admin_authorized_keys --motd=/opt/motd.txt]]></summary></entry><entry><title type="html">Weekly meetup information page at meetup.com</title><link href="https://culug.group/group/chat/2023/05/18/group-chat/" rel="alternate" type="text/html" title="Weekly meetup information page at meetup.com" /><published>2023-05-18T00:00:00-06:00</published><updated>2023-05-18T00:00:00-06:00</updated><id>https://culug.group/group/chat/2023/05/18/group-chat</id><content type="html" xml:base="https://culug.group/group/chat/2023/05/18/group-chat/"><![CDATA[<blockquote>
  <p>Note: the meetup.com subscription has been discontinued and we will no longer be updating the page</p>
</blockquote>

<p>We have a meetup.com page for each of our weekly events at the following URL:</p>

<p>https://www.meetup.com/central-utah-linux-unix-user-group/</p>

<p>Any information specific to each meetup will be posted there.</p>]]></content><author><name></name></author><category term="group" /><category term="chat" /><summary type="html"><![CDATA[Note: the meetup.com subscription has been discontinued and we will no longer be updating the page We have a meetup.com page for each of our weekly events at the following URL: https://www.meetup.com/central-utah-linux-unix-user-group/ Any information specific to each meetup will be posted there.]]></summary></entry><entry><title type="html">Weekly Meetup Venue Announced</title><link href="https://culug.group/group/chat/2023/04/26/group-chat/" rel="alternate" type="text/html" title="Weekly Meetup Venue Announced" /><published>2023-04-26T00:00:00-06:00</published><updated>2023-04-26T00:00:00-06:00</updated><id>https://culug.group/group/chat/2023/04/26/group-chat</id><content type="html" xml:base="https://culug.group/group/chat/2023/04/26/group-chat/"><![CDATA[<blockquote>
  <p>Note: the meetup.com subscription has been discontinued and we will no longer be updating the page</p>
</blockquote>

<p>We will be meeting at 6:00 p.m. to 8:00 p.m. weekly on Thursday in Room 122 of the Graham Science Center at Snow College in Ephraim, UT.</p>

<p>Checkout our Meetup page: https://www.meetup.com/central-utah-linux-unix-user-group/events/</p>]]></content><author><name></name></author><category term="group" /><category term="chat" /><summary type="html"><![CDATA[Note: the meetup.com subscription has been discontinued and we will no longer be updating the page We will be meeting at 6:00 p.m. to 8:00 p.m. weekly on Thursday in Room 122 of the Graham Science Center at Snow College in Ephraim, UT. Checkout our Meetup page: https://www.meetup.com/central-utah-linux-unix-user-group/events/]]></summary></entry><entry><title type="html">Group Chat Now Available</title><link href="https://culug.group/group/chat/2023/04/19/group-chat/" rel="alternate" type="text/html" title="Group Chat Now Available" /><published>2023-04-19T00:00:00-06:00</published><updated>2023-04-19T00:00:00-06:00</updated><id>https://culug.group/group/chat/2023/04/19/group-chat</id><content type="html" xml:base="https://culug.group/group/chat/2023/04/19/group-chat/"><![CDATA[<p>If you are interested in joining the Central Utah Linux/Unix User Group chat, there are multiple options that are bridged together:</p>
<ul>
  <li>ssh-chat</li>
  <li>Discord</li>
</ul>

<p>If there are other messaging platforms you’d like added, please make it known in one of the existing communications channels.</p>

<h2 id="ssh-chat">ssh-chat:</h2>

<p>We have an <a href="https://github.com/shazow/ssh-chat">ssh-chat</a> instance available to login assuming you have an SSH key configured:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>ssh chat.culug.group
</code></pre></div></div>

<h2 id="discord">Discord:</h2>

<p>Use the following invite to join the CULUG Discord instance:</p>

<p>https://discord.gg/uU7KxrRe</p>]]></content><author><name></name></author><category term="group" /><category term="chat" /><summary type="html"><![CDATA[If you are interested in joining the Central Utah Linux/Unix User Group chat, there are multiple options that are bridged together: ssh-chat Discord If there are other messaging platforms you’d like added, please make it known in one of the existing communications channels. ssh-chat: We have an ssh-chat instance available to login assuming you have an SSH key configured: ssh chat.culug.group Discord: Use the following invite to join the CULUG Discord instance: https://discord.gg/uU7KxrRe]]></summary></entry><entry><title type="html">Hello, World!</title><link href="https://culug.group/intro/hello/2023/04/17/hello-world/" rel="alternate" type="text/html" title="Hello, World!" /><published>2023-04-17T00:00:00-06:00</published><updated>2023-04-17T00:00:00-06:00</updated><id>https://culug.group/intro/hello/2023/04/17/hello-world</id><content type="html" xml:base="https://culug.group/intro/hello/2023/04/17/hello-world/"><![CDATA[<p>Thank you for visiting and welcome to the Central Utah Linux/Unix User Group’s website!</p>

<p>Central Utah Linux/Unix User Group (CULUG) is a technology-focused user group supporting Linux, Unix (i.e. MacOS) or Unix-like technologies.
The group is intended to serve as a casual meeting space for people interested in technology in the Central Utah area.</p>

<p>TBD: stay tuned for the announcement on when and where we will be meeting as a group.</p>

<p><a href="https://culug.group/feed.xml">Subscribe to our feed for announcements</a></p>]]></content><author><name></name></author><category term="intro" /><category term="hello" /><summary type="html"><![CDATA[Thank you for visiting and welcome to the Central Utah Linux/Unix User Group’s website! Central Utah Linux/Unix User Group (CULUG) is a technology-focused user group supporting Linux, Unix (i.e. MacOS) or Unix-like technologies. The group is intended to serve as a casual meeting space for people interested in technology in the Central Utah area. TBD: stay tuned for the announcement on when and where we will be meeting as a group. Subscribe to our feed for announcements]]></summary></entry></feed>