<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
  <url>
    <loc>https://vidert.com/v/systems-programming/video/20190/date-print-or-set-date-and-time-video-man-pages</loc>
    <lastmod>2026-04-03T13:01:02.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/WZMf-fC45ak/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>&apos;date&apos; - print or set date and time - Video Man Pages</video:title>
      <video:description>The &apos;date&apos; command prints or sets the date and time.

- Print the current date/time, using the default locale&apos;s format:
  date +%c
 
- Print the current date/time in UTC, using default format:
  date -u
 
- Print the current date/time in UTC, using the ISO 8601 format:
  date -u +%Y-%m-%dT%H:%M:%S%Z

- Print the date only using the ISO 8601 format:
  date +%F
   -or- 
  date +&quot;%Y-%m-%d&quot;

- Print the date in MM/DD/YY format:
  date +%D
   -or-
  date +&quot;%m/%d/%y&quot;
  
- Print the time in HH:MM:SS format:
  date +%T
   -or-
  date +&quot;%H:%M:%S&quot;

- Print the current date as a Unix timestamp (seconds since the Unix epoch):
  date +%s
 
- Convert a Unix timestamp date (ex: 1773665635) to the default format:
  date -d @1773665635
 
- Convert a given date to the Unix timestamp format:
  date -d &quot;2020-03-01 00:00&quot; +%s -u
 
- Display the current date using the RFC-3339 format (YYYY-MM-DD hh:mm:ss TZ) and printing seconds (s):
  date --rfc-3339 s
  NOTE Instead of &apos;s&apos; for seconds, you could use &apos;n&apos; for nanoseconds of &apos;d&apos; for printing date only.
 
- Set the current date providing a full timestamp in quotes (requires sudo privileges):
  date -s &quot;2026-03-16 14:30:00&quot;
  
- Set the current time while keeping the current date (requires sudo privleges).
  date +%T -s &quot;10:15:30&quot;

REFERENCED:
► https://gitlab.com/dwt1/vidman - Video Man Pages

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox</video:description>
      <video:player_loc>https://www.youtube.com/embed/WZMf-fC45ak</video:player_loc>
      <video:publication_date>2026-04-03T13:01:02.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>396</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/19975/cal-display-a-calendar-video-man-pages</loc>
    <lastmod>2026-04-02T15:15:09.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/G9bWGPlcZmI/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>&apos;cal&apos; - display a calendar - Video Man Pages</video:title>
      <video:description>The &apos;cal&apos; command displays the calendar.

- Display the &apos;single month&apos; (current month) calendar:
  cal -1

- The &apos;single month&apos; calendar is the default:
  cal
 
- Display three months spanning the date:
  cal -3

- Display the whole calendar for the &apos;current&apos; year:
  cal -y

- Display a calendar for a specific year (4 digits):
  cal 2026

- Display the next twelve months:
  cal -Y

- Use &apos;Monday&apos; as the first day of the week and display week numbers:
  cal -m -w

- Display a calendar for a specific month and year:
  cal April 2026
  cal Apr 2026
  cal 04 2026
  
NOTE: &apos;cal 04 26&apos; would seen as April of the year &apos;0026&apos;.

- Display calendar in &apos;vertical&apos; layout using three month calendar:
  cal -v -3

- Use &apos;julian&apos; numbering (ordinal numbering) for days:
  cal -j

REFERENCED:
► https://gitlab.com/dwt1/vidman

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/G9bWGPlcZmI</video:player_loc>
      <video:publication_date>2026-04-02T15:15:09.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>226</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/19583/what-s-new-in-chrome-devtools-145-147</loc>
    <lastmod>2026-03-31T19:34:05.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/-KXwGGu23rc/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>What&apos;s new in Chrome DevTools 145-147</video:title>
      <video:description>This video highlights the latest updates in Chrome DevTools from versions 145 to 147. Learn about new performance features for single-page applications, including improved tracking for soft navigations. Discover how to debug styles more effectively for web components and explore new functionalities for the Chrome DevTools MCP server. Plus, get a bonus tip on using regular expressions in filter bars.

Chapters:
0:00 - Introduction
0:39 - Soft navigation markers in performance traces
0:58 - Improved line-level profiler timings
1:19 - Render blocking column in the Network panel
1:51 - Support for @starting-style in CSS
2:23 - Edit adopted stylesheets inline
2:36 - Grid editor checkbox for dense
2:56 - New features for the DevTools MCP server
4:00 - Bonus tip: Filter styles using RegEx
4:30 - Conclusion

Watch more What&apos;s New in DevTools → https://goo.gle/NewInDevTools  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#ChromeForDevelopers #Chrome

Speaker: Matthias Rohmer
Products Mentioned: Chrome,  Chrome DevTools,  CSS</video:description>
      <video:player_loc>https://www.youtube.com/embed/-KXwGGu23rc</video:player_loc>
      <video:publication_date>2026-03-31T19:34:05.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>314</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/19206/fuzzel-is-a-run-launcher-for-wayland-desktops</loc>
    <lastmod>2026-03-30T13:00:06.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/4am_n25wOuI/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Fuzzel Is A Run Launcher For Wayland Desktops</video:title>
      <video:description>Fuzzel is a Wayland-native application launcher and fuzzy finder, inspired by rofi and dmenu.

REFERENCED:
► https://codeberg.org/dnkl/fuzzel

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/4am_n25wOuI</video:player_loc>
      <video:publication_date>2026-03-30T13:00:06.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>697</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/18633/installation-and-first-look-at-linuxhub-prime</loc>
    <lastmod>2026-03-27T12:45:49.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/K5J4LG4detc/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Installation and First Look at LinuxHub Prime</video:title>
      <video:description>LinuxHub Prime is an Arch-based Linux distribution with a customised Openbox window manager as the default desktop environment. Its main feature is a unique installer that provides one-click installation options for several popular window managers and desktop environments.

REFERENCED:
► https://linuxhub.link/index.php

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/K5J4LG4detc</video:player_loc>
      <video:publication_date>2026-03-27T12:45:49.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1579</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/17822/create-beautiful-websites-with-hugo</loc>
    <lastmod>2026-03-24T13:01:29.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/onw826NsgWQ/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Create Beautiful Websites With Hugo</video:title>
      <video:description>Hugo is one of the most popular open-source static site generators.  With its amazing speed and flexibility, Hugo makes building websites simple and fun.  And you get to write the content using either Markdown or Org Mode.  How cool is that!

REFERENCED:
► https://gohugo.io/
► https://github.com/devcows/hugo-universal-theme

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/onw826NsgWQ</video:player_loc>
      <video:publication_date>2026-03-24T13:01:29.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>963</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/17296/taking-notes-with-emacs-org-mode-it-s-easy</loc>
    <lastmod>2026-03-21T13:00:44.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/NebhEVR44Jc/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Taking Notes With Emacs Org Mode (It&apos;s Easy!)</video:title>
      <video:description>Some people are &quot;note takers.&quot;  And most of these people are forever searching for the ultimate note taking app.  Well, look no further.  Emacs Org Mode has been the de facto standard for note taking for decades!

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/NebhEVR44Jc</video:player_loc>
      <video:publication_date>2026-03-21T13:00:44.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>935</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/16755/cachyos-dethrones-arch-as-top-gaming-distro</loc>
    <lastmod>2026-03-18T12:57:18.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/CPsMqjjsyhI/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>CachyOS Dethrones Arch As Top Gaming Distro</video:title>
      <video:description>In a recent survey, CachyOS was the most popular distro for gamers using protondb, overtaking Arch Linux.  Why has CachyOS become so popular so fast?   

REFERENCED:
► https://www.xda-developers.com/cachyos-dethrones-arch-as-the-top-desktop-distro-for-linux-gamers-on-protondb/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/CPsMqjjsyhI</video:player_loc>
      <video:publication_date>2026-03-18T12:57:18.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>645</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13021/wc-count-words-lines-and-bytes-video-man-pages</loc>
    <lastmod>2026-03-17T07:04:36.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/ODkPRwd3l8w/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>&apos;wc&apos; - count words lines and bytes - Video Man Pages</video:title>
      <video:description>The &apos;wc&apos; command counts the number of lines, words or bytes in a file.

- Count lines (-l) in a file:
  wc -l path/to/file

- Count words (-w) in a file:
  wc -w path/to/file

- Count bytes in a file:
  wc -c path/to/file

- Count characters (-m) in a file, taking multi-byte characters into account:
  wc -m path/to/file

- Count lines, words, and bytes in a file:
  wc path/to/file
  
- Count lines, words, and bytes from stdin:
  cat path/to/file | wc
  NOTE This is NOT a &quot;useless use of cat&quot; since the output is slightly different than &apos;wc file&apos;.
 
- Get character length of the longest line in a file:
  wc -L path/to/file

REFERENCED:
► https://gitlab.com/dwt1/vidman - Video Man Pages

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/ODkPRwd3l8w</video:player_loc>
      <video:publication_date>2026-03-17T07:04:36.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>212</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13020/xargs-execute-command-lines-from-standard-input-video-man-pages</loc>
    <lastmod>2026-03-17T07:04:23.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/tUkQcvytVtw/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>&apos;xargs&apos; - execute command lines from standard input - Video Man Pages</video:title>
      <video:description>&apos;xargs&apos; takes the output of one command (or contents of a file), converts it into a list of arguments, and passes that list to another command to execute. 

- Run a command using the input data as arguments:
  command1 | xargs command2
  
- Count lines in multiple files:
  ls *.txt | xargs wc -l

- Cat a file and use the input data as an argument:
  cat file | xargs
  NOTE If no xargs command is given, xargs uses &apos;echo&apos; as the command.

- The same as above except it executes the command once per argument (-n 1):
  cat file | xargs -n 1

- Create 10 sequential .txt files.  The &apos;-I {}&apos; symbolizes all the input:
  seq 10 | xargs -I {} touch {}.txt

- Delete files with &apos;.log&apos; extension found by &apos;find&apos;.  The -print0 in &apos;find&apos; and -0 in &apos;xargs&apos; use a null character as a delimiter, ensuring filenames with spaces or special characters are handled correctly.
  find . -name &quot;*.log&quot; -print0 | xargs -0 rm -f
  
- Find and delete all backup files (.bak).  The &apos;-p&apos; option is useful for destructive operations, as it displays the command to be executed and asks for user confirmation (y/n).
  find . -type f -name &quot;*.bak&quot; | xargs -p rm

- The &apos;-d&apos; option sets the delimiter (spaces by default):
  ls | xargs -n 1        (Files/directories with spaces are a problem.)
  ls | xargs -n 1 -d \n  (Uses new line as delimiter and problem solved!)
  
- xargs can print (-a) the contents of a file to stdout.  We can use &apos;-p&apos; to prompt for &apos;y/n&apos; before executing.  We can use &apos;-r&apos; to only execute if stdin is not empty.
  xargs -a 1.txt
  xargs -p -a 1.txt
  xargs -r -p -a 1.txt

REFERENCED:
► https://gitlab.com/dwt1/vidman

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Ody</video:description>
      <video:player_loc>https://www.youtube.com/embed/tUkQcvytVtw</video:player_loc>
      <video:publication_date>2026-03-17T07:04:23.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>589</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13019/pacman-slow-in-arch-linux-here-s-the-fix</loc>
    <lastmod>2026-03-17T07:03:43.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/KcHcQHl8U8k/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Pacman Slow In Arch Linux? Here&apos;s The Fix!</video:title>
      <video:description>The &apos;pacman&apos; package manager is one of the major distinguishing features of Arch Linux, but it does have issues on occasion, such as becoming really slow when installing software or updating the system.  But these issues are easily fixed.

REFERENCED:
► https://wiki.archlinux.org/title/Pacman

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/KcHcQHl8U8k</video:player_loc>
      <video:publication_date>2026-03-17T07:03:43.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>371</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13018/an-arch-linux-installation-guide-2026</loc>
    <lastmod>2026-03-17T07:02:57.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/BUYFe5ejxfo/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>An Arch Linux Installation Guide (2026)</video:title>
      <video:description>How to install Arch Linux via the command line installation process.  I will use UEFI, btrfs, zram, and install a popular Wayland compositor (niri).  

NOTE:
This video was re-uploaded in order to correct a major mistake (by omission) made in the first version of this video.  I did not run the command to create the &apos;fstab&apos; file.  Oops!  The solution is to make the /mnt/etc directory (mkdir -p /mnt/etc) and then run the &apos;gensftab&apos; command (full command in the pinned comment below).

REFERENCED:
► https://wiki.archlinux.org/title/Installation_guide

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/BUYFe5ejxfo</video:player_loc>
      <video:publication_date>2026-03-17T07:02:57.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1440</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13017/transform-arch-linux-into-xerolinux</loc>
    <lastmod>2026-03-17T07:02:36.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/eJag0014isw/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Transform Arch Linux Into XeroLinux</video:title>
      <video:description>Introducing the new Xero Arch Installer, which is a beautiful, streamlined Arch Linux installer with a easy-to-use, modern TUI interface.

REFERENCED:
► https://github.com/xerolinux/XeroInstall

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/eJag0014isw</video:player_loc>
      <video:publication_date>2026-03-17T07:02:36.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>908</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13016/the-dank-material-shell-a-wayland-desktop-suite</loc>
    <lastmod>2026-03-17T07:01:38.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/1ILZevPGgJw/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>The Dank Material Shell - A Wayland Desktop Suite</video:title>
      <video:description>DankMaterialShell is a complete desktop shell for niri, Hyprland, MangoWC, Sway, labwc, Scroll, and other Wayland compositors. It replaces waybar, swaylock, swayidle, mako, fuzzel, polkit, and everything else you&apos;d normally stitch together to make a desktop.

REFERENCED:
► https://github.com/AvengeMedia/DankMaterialShell

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/1ILZevPGgJw</video:player_loc>
      <video:publication_date>2026-03-17T07:01:38.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>876</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13015/a-quick-first-look-at-the-niri-window-manager</loc>
    <lastmod>2026-03-17T07:01:04.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/uiXiD5foFCI/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>A Quick First Look At The Niri Window Manager</video:title>
      <video:description>I&apos;m taking a quick first look at Niri, which is a scrollable-tiling Wayland compositor.

REFERENCED:
► https://github.com/YaLTeR/niri/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/uiXiD5foFCI</video:player_loc>
      <video:publication_date>2026-03-17T07:01:04.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1004</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13014/qtile-on-wayland-it-kinda-works</loc>
    <lastmod>2026-03-17T07:00:35.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/8YdBCIqhzs8/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Qtile On Wayland...It Kinda Works!</video:title>
      <video:description>I&apos;ve been using Qtile on-and-off again for probably a decade or longer.  Qtile is a full-featured, hackable tiling window manager written and configured in Python.  It was originally written for X11 but it does have a Wayland session.  Let&apos;s try it out!

REFERENCED:
► https://qtile.org/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/8YdBCIqhzs8</video:player_loc>
      <video:publication_date>2026-03-17T07:00:35.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1049</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13013/awk-a-programming-language-for-working-on-files-video-man-pages</loc>
    <lastmod>2026-03-17T07:00:07.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/cK1JMK7Ckq0/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>&apos;awk&apos; - a programming language for working on files - Video Man Pages</video:title>
      <video:description>The &apos;awk command&apos; is really an entire programming language used for working with files and text.

- Print a file (similar to &apos;cat&apos;):
  awk &apos;{print}&apos; path/to/file
    OR
  awk &apos;{print $0}&apos; path/to/file

- Print the 2nd field of each line:
  awk &apos;{print $2}&apos; path/to/file

- Print the last field of each line:
  awk &apos;{print $NF}&apos; path/to/file

- Search for lines containing &apos;string&apos; and print the second field of those lines:
  awk &apos;/string/ {print $2}&apos; path/to/file

- Use a different field separator (instead of space) and print 1st and 7th fields with a TAB in between:
  awk -F &quot;:&quot; &apos;{print $1 &quot;\t&quot; $7}&apos; /etc/passwd

- Find a specific string in any column:
  ps -ef | awk &apos;{ if($NF == &quot;/usr/bin/pipewire&quot;) print $0};&apos;
  NOTE We search if the last field is &apos;/usr/bin/pipewire&apos; and print the line.

- Search 1st field if it starts with &apos;b&apos; or &apos;c&apos;, then prints the line:
  awk &apos;$1 ~ /^[b,c]/ {print $0}&apos; .bashrc
  NOTE The &apos;~&apos; character is the regex match operator.

- Use the &apos;substr&apos; function to print each record from the 2nd character onward:
  awk &apos;{print substr($0, 2)}&apos; .bashrc
  NOTE It essentially prints the document but omits the first character of each line.

REFERENCED:
► https://gitlab.com/dwt1/vidman

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/cK1JMK7Ckq0</video:player_loc>
      <video:publication_date>2026-03-17T07:00:07.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>491</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13012/a-fresh-new-terminal-text-editor-better-than-nano</loc>
    <lastmod>2026-03-17T06:59:30.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/dspEVA8eoUg/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>A &quot;Fresh&quot; New Terminal Text Editor (Better Than Nano!)</video:title>
      <video:description>Fresh is a terminal text editor you can just use.  It&apos;s lightweight, fast and easy to learn.  It includes features such as tabs, splits, LSP support and a file tree!

REFERENCED:
► https://sinelaw.github.io/fresh/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/dspEVA8eoUg</video:player_loc>
      <video:publication_date>2026-03-17T06:59:30.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>664</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13011/linux-and-open-source-software-in-2025</loc>
    <lastmod>2026-03-17T06:59:16.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/cQ3auCVzfrA/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Linux and Open Source Software In 2025</video:title>
      <video:description>A quick look back at 2025 for Linux, FOSS, A.I. and YouTube.  Also...Merry Christmas and Happy New Year!  :D

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/cQ3auCVzfrA</video:player_loc>
      <video:publication_date>2026-03-17T06:59:16.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>969</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13010/xonsh-is-a-modern-shell-powered-by-python-windows-mac-linux</loc>
    <lastmod>2026-03-17T06:59:04.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/s5ujjhWrGQI/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Xonsh Is A Modern Shell Powered By Python (Windows, Mac &amp; Linux)</video:title>
      <video:description>Xonsh is a modern, full-featured and cross-platform python shell. The language is a superset of Python 3.6+ with additional shell primitives that you are used to from Bash and IPython. It works on all major systems including Linux, OSX, and Windows. Xonsh is meant for the daily use of experts and novices.

REFERENCED:
► https://xon.sh/

MY XONSH CONFIG:
► https://gitlab.com/dwt1/dotfiles/-/blob/master/.config/xonsh/rc.d/rc.py?ref_type=heads

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/s5ujjhWrGQI</video:player_loc>
      <video:publication_date>2026-03-17T06:59:04.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1228</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13009/setting-up-virt-manager-on-linux</loc>
    <lastmod>2026-03-17T06:58:40.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/B6Dbvs-q1zw/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Setting Up Virt-Manager On Linux</video:title>
      <video:description>Virt-Manager (Virtual Machine Manager) is a popular graphical desktop application for managing virtual machines and containers on Linux, acting as a user-friendly frontend for the libvirt virtualization API.  It allows users to easily create, run, and manage VMs without complex command-line work. 

REFERENCED:
► https://virt-manager.org/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/B6Dbvs-q1zw</video:player_loc>
      <video:publication_date>2026-03-17T06:58:40.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>595</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13008/two-simple-bash-scripts-append-and-prepend</loc>
    <lastmod>2026-03-17T06:58:25.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/cTmvp0tnUmY/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Two Simple Bash Scripts (&apos;append&apos; and &apos;prepend&apos;)</video:title>
      <video:description>Let&apos;s create a couple of simple Bash scripts, one for appending a line of text to a file, and one for prepending a line of text to a file.

REFERENCED:
► https://gitlab.com/dwt1/miniutils

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/cTmvp0tnUmY</video:player_loc>
      <video:publication_date>2026-03-17T06:58:25.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1293</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13007/tac-concatenate-and-print-in-reverse-video-man-pages</loc>
    <lastmod>2026-03-17T06:57:59.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/sbGetz7R_nY/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>&apos;tac&apos; - concatenate and print in reverse - Video Man Pages</video:title>
      <video:description>The &apos;tac&apos; command is used to concatenate files and print them in reverse.

- Print the contents of a file in reverse (by line) to stdout:
  tac path/to/file

- Concatenate specific files in reverse:
  tac file1 path/to/file2 ...

- Display stdin in reversed order:
  printf &quot;one\ntwo\nthree\n&quot; | tac

- Use a specific separator rather than the new line:
  tac -s separator path/to/file1 path/to/file2 ...

- Use a specific regex as a separator:
  tac -r -s &apos;regex&apos; path/to/file1 path/to/file2 ...

  EXAMPLE: tac -r -s &apos;x\|[^x]&apos; file1
  This matches either the character &apos;x&apos; OR any character that is not &apos;x&apos;, effectively matching every character in the file.

- Use a separator (new line by default) before each file:
  tac -b file1 file2 ...

REFERENCED:
► https://gitlab.com/dwt1/vidman

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/sbGetz7R_nY</video:player_loc>
      <video:publication_date>2026-03-17T06:57:59.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>265</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13006/cat-concatenate-and-print-files-video-man-pages</loc>
    <lastmod>2026-03-17T06:57:45.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/HKuP4UjG9_U/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>&apos;cat&apos; - concatenate and print files - Video Man Pages</video:title>
      <video:description>The &apos;cat&apos; command is used to concatenate and print files.

NOTE: The commands used in this video could not be printed in the show description because YouTube does not allow angle brackets to be used in show descriptions.  Go to the &apos;vidman&apos; repo to view the commands used in this video.

REFERENCED:
► https://gitlab.com/dwt1/vidman

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/HKuP4UjG9_U</video:player_loc>
      <video:publication_date>2026-03-17T06:57:45.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>424</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13005/the-fragmentation-problem-within-linux-is-it-real-or-fake-news</loc>
    <lastmod>2026-03-17T06:55:53.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/Tu_pKh51kcM/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>The Fragmentation Problem Within Linux - Is It Real Or Fake News?</video:title>
      <video:description>Does Linux have a &quot;fragmentation&quot; problem?  Are their too many Linux distros?  Too many package managers?  Too much choice in free and open source software?

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/Tu_pKh51kcM</video:player_loc>
      <video:publication_date>2026-03-17T06:55:53.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>582</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13004/fsearch-is-an-amazing-file-searcher-for-linux</loc>
    <lastmod>2026-03-17T06:54:01.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/x68o5o1l1Ms/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Fsearch Is An Amazing File Searcher For Linux</video:title>
      <video:description>FSearch is a fast file search utility for Unix-like operating systems.  It is inspired by Everything Search Engine and written in C and GTK3.

REFERENCED:
► https://github.com/cboxdoerfer/fsearch

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/x68o5o1l1Ms</video:player_loc>
      <video:publication_date>2026-03-17T06:54:01.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>605</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13003/omarchy-is-beautiful-modern-and-opinionated</loc>
    <lastmod>2026-03-17T06:53:11.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/lPEHoc3fDlM/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Omarchy Is Beautiful, Modern and Opinionated</video:title>
      <video:description>Omarchy is an opinionated Linux distribution for developers, created by Ruby on Rails creator David Heinemeier Hansson (DHH), that combines the power of Arch Linux with the Hyprland tiling window manager to provide a polished, productive, and immediately usable desktop experience. 

REFERENCED:
► https://omarchy.org/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/lPEHoc3fDlM</video:player_loc>
      <video:publication_date>2026-03-17T06:53:11.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1133</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/13002/webassembly-backend-for-scala-js-with-s-bastien-doeraene</loc>
    <lastmod>2026-03-17T06:51:31.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/HuPG-4ayXQM/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>WebAssembly Backend for Scala.js with Sébastien Doeraene</video:title>
      <video:description>The JVM-to-Web journey continues! In this episode, Thomas Steiner welcomes the original author of Scala.js, Sébastien Doeraene, to discuss the major, experimental leap to WebAssembly. You’ll learn why the team decided to target Wasm now and how it complements the existing JavaScript emission. This episode offers a technical deep-dive into how Scala’s powerful, nominal type system maps its objects and classes onto Wasm GC, and examines the critical details of interoperability, including what happens when a Scala object crosses the boundary to a JavaScript function. Finally, Sébastien covers the current status of the Wasm ecosystem for Scala.js, and the key limitations you need to know before you flip the `withExperimentalUseWebAssembly(true)` switch. Tune in to discover how a mature typed language is laying a fast, new foundation on the web!

Chapters:
0:00 -  Commonalities between composing music and composing compilers
1:38 - Scala, Scala.js, Scala Native, and the Scala Center
11:01 - The &quot;elevator pitch&quot; for Scala.js
14:59 - Is Scala.js competing with TypeScript?
20:31 - What motivated the decision to target Wasm?
26:40 -  How Scala.js utilizes Wasm GC
31:24 - What&apos;s actually crossing the boundary between JS and Scala.js?
37:37 - BigInt support in Scala.js
38:38 - The status of the library ecosystem for the Wasm target
41:40 - Sébastien&apos;s hobby project ported to Scala.js
44:02 -  Is the Wasm backend purely a Scala.js thing for browsers?
52:38 - What developers should be aware of before flipping that `withExperimentalUseWebAssembly(true)` switch
58:28 -  What Wasm proposals are you waiting for to unlock new features in Scala.js?
59:57 - Wasm, but not 

Resources:
Sébastien Doeraene on GitHub → https://goo.gle/4pMPufo 
Sébastien Doeraene at EPFL → https://goo.gle/3KTZZhu  
Ensemble vocal Évohé → https://goo.gle/4pApQu5 
Scala → https://goo.gle/4iYZwY1 
Scala.js → https://goo.gle/4oYze9E 
Scala Native → https://goo.gle/4rX4hp0 
Scala Center → https://goo.gle/44uffZ8 
Scala to TypeScript → https://goo.gle/4j37ZcM 
</video:description>
      <video:player_loc>https://www.youtube.com/embed/HuPG-4ayXQM</video:player_loc>
      <video:publication_date>2026-03-17T06:51:31.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>3971</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/11539/origami-linux-is-both-elegant-and-opinionated-and-i-like-it</loc>
    <lastmod>2026-03-17T00:33:18.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/1STCtfTNKvk/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Origami Linux Is Both Elegant And Opinionated (And I Like It!)</video:title>
      <video:description>Origami is a next-generation Linux distribution built on Fedora Atomic.  It uses the Cosmic Desktop that was developed by PopOS.  It also uses the CachyOS kernel.  Oh...and it replaces a lot of the standard shell utilities with modern Rust alternatives! 

REFERENCED:
► https://gitlab.com/origami-linux

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/1STCtfTNKvk</video:player_loc>
      <video:publication_date>2026-03-17T00:33:18.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1556</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/11122/head-print-the-beginning-of-files-video-man-pages</loc>
    <lastmod>2026-03-16T22:51:01.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/2bI-HlSG3_I/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>&apos;head&apos;- print the beginning of files - Video Man Pages</video:title>
      <video:description>The &apos;head&apos; command is used to print the beginning lines of a file.

- Print first 10 lines in a file:
  head path/to/file

- Print first 10 lines of multiple files:
  head path/to/file1 path/to/file2 ...

- Print the first 5 lines (-n 5) of a file:
  head -n 5 path/to/file

- Print everything but the last 5 lines (-n -5) of a file:
  head -n -5 path/to/file

- Print the first 12 bytes (-c) of a file:
  head -c 12 path/to/file

- Print everything but the last few bytes of a file:
  head -c -12 path/to/file

- Use verbose mode (-v) to print headers giving file names:
  head -v file1
  NOTE When running &apos;head&apos; on multiple files, verbose is the default mode.

- Use quiet mode (-q) to suppress the printing of headers giving file names:
  head -q file1 file2
  NOTE When running &apos;head&apos; on a single file, quiet is the default mode.

REFERENCED:
► https://gitlab.com/dwt1/vidman - Video Man Pages

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/2bI-HlSG3_I</video:player_loc>
      <video:publication_date>2026-03-16T22:51:01.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>240</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/11051/tail-print-the-ending-of-files-video-man-pages</loc>
    <lastmod>2026-03-16T22:35:20.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/Ug5u1OT1sxQ/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>&apos;tail&apos; - print the ending of files - Video Man Pages</video:title>
      <video:description>The &apos;tail&apos; command is used to print the ending lines of a file.

- Print last 10 lines in a file:
  tail path/to/file

- Print last 10 lines of multiple files:
  tail path/to/file1 path/to/file2 ...

- Print last 5 lines (-n 5) in file:
  tail -n 5 path/to/file

- Print a file starting from line number 5 (-n +5):
  tail -n +5 path/to/file

- Print the first 12 bytes (-c 12) from the end of a given file:
  tail -c 12 path/to/file

- Print the last lines of a given file and keep reading it (following it) until CTRL-C:
  tail -f path/to/file
  NOTE Useful if running &apos;tail&apos; on a file that is being appended constantly.

- Show last 5 lines (-n 5) in a file, follow for changes (-f), and check every 5 seconds (-s 5):
  tail -n 5 -s 5 -f path/to/file

- Use verbose mode (-v) to print headers giving file names:
  head -v file1
  NOTE When running &apos;tail&apos; on multiple files, verbose is the default mode.

- Use quiet mode (-q) to suppress the printing of headers giving file names:
  head -q file1 file2
  NOTE When running &apos;tail&apos; on a single file, quiet is the default mode.

REFERENCED:
► https://gitlab.com/dwt1/vidman - Video Man Pages

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/Ug5u1OT1sxQ</video:player_loc>
      <video:publication_date>2026-03-16T22:35:20.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>301</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/9468/replacing-native-apps-with-snaps-and-flatpaks-don-t-do-it</loc>
    <lastmod>2026-03-09T12:48:13.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/58jkfpJ3j0E/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Replacing Native Apps With Snaps And Flatpaks? (Don&apos;t Do It!)</video:title>
      <video:description>Since doing a fresh Linux installation on my office workstation three months ago, I&apos;ve been doing a little experiment.  I&apos;ve only installed native Arch packages on this machine.  That&apos;s right!  No snaps or flatpaks or any of that sort of thing.  And it&apos;s been GREAT!

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/58jkfpJ3j0E</video:player_loc>
      <video:publication_date>2026-03-09T12:48:13.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>506</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8282/litert-js-google-s-high-performance-webai-runtime</loc>
    <lastmod>2025-11-21T22:26:06.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/HAjotVloAvI/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>LiteRT.js, Google’s high performance WebAI runtime</video:title>
      <video:description>Harness the power of LiteRT on the web! This talk introduces LiteRT.js, Google&apos;s new WebAI runtime that runs your custom .tflite models with WebGPU. Matthew Soulanille, ODML Software Engineer, and Chintan Parikh, Product Manager, cover features of the library, its best-in-class performance, how it complements Google&apos;s existing Web AI ecosystem, and what&apos;s coming next.

Resources:
Docs → https://goo.gle/47tIuNH 
Github →  https://goo.gle/4oo3201   
NPM → https://goo.gle/47LLvb1 


See more Web AI talks →  https://goo.gle/web-ai  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs


Event: Web AI Summit 2025

Speaker: Matthew Soulanille, Chintan Parikh
Products Mentioned: AI for the web, LiteRT.js, WebGPU

#ChromeforDevelopers #WebAI</video:description>
      <video:player_loc>https://www.youtube.com/embed/HAjotVloAvI</video:player_loc>
      <video:publication_date>2025-11-21T22:26:06.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>769</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8273/building-ai-xr-apps-faster-with-xr-blocks</loc>
    <lastmod>2025-11-26T20:58:11.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/24Lb5zTLsm4/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Building AI + XR apps faster with XR Blocks</video:title>
      <video:description>Prototyping novel AI-driven XR interactions is a high-friction process, requiring low-level integration of on-device models, XR, and AI APIs. Ruofei Du, Interactive Perception &amp; Graphics Lead at Google, presents XR Blocks (https://xrblocks.github.io), a cross-platform framework to accelerate human-centered AI + XR innovation. With the mission of &quot;&quot;minimizing code from idea to reality&quot;&quot;, XR Blocks provides core abstractions and samples that empower creators to move from concept to interactive WebAI + WebXR prototypes with Gemini Canvas.

Resources:
XR Blocks → http://goo.gle/4hiSi08
GitHub → http://goo.gle/472KFaJ


See more Web AI talks →  https://goo.gle/web-ai  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs


Event: Web AI Summit 2025

Speaker: Ruofei Du
Products Mentioned: AI for the web, WebXR, Gemini Canvas, Gemini

#ChromeforDevelopers #WebAI</video:description>
      <video:player_loc>https://www.youtube.com/embed/24Lb5zTLsm4</video:player_loc>
      <video:publication_date>2025-11-26T20:58:11.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>859</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8274/it-doesn-t-need-to-be-a-chatbot-unlocking-the-product-value-of-smaller-ai-models</loc>
    <lastmod>2025-11-26T20:56:35.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/Tq-pEVM8u7c/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>It doesn’t need to be a chatbot: Unlocking the product value of smaller AI models</video:title>
      <video:description>That new AI feature in your product doesn’t need to be a massive chatbot. Smaller language models can reduce friction, automate workflows, and create moments of delight. In this talk, Dr. Janna Lipenkova, CEO of Anacode, shows how to uncover organic AI opportunities in existing products and progress from low-risk wins to more complex, ambitious architectures.

Resources:


See more Web AI talks →  https://goo.gle/web-ai  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs


Event: Web AI Summit 2025

Speaker: Janna Lipenkova
Products Mentioned: AI for the web

#ChromeforDevelopers #WebAI</video:description>
      <video:player_loc>https://www.youtube.com/embed/Tq-pEVM8u7c</video:player_loc>
      <video:publication_date>2025-11-26T20:56:35.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>878</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8275/running-google-s-gemma-llms-in-the-browser-with-mediapipe-web</loc>
    <lastmod>2025-11-26T20:54:19.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/UC5jUqNBVkI/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Running Google&apos;s Gemma LLMs in the browser with MediaPipe Web</video:title>
      <video:description>Google&apos;s Gemma 3 and Gemma 3n large language model (LLM) families offer some of the most powerful LLMs yet for their respective sizes. Moreover, they are multilingual and multimodal by design—Gemma 3 models can handle up to 140 languages, while Gemma 3n supports arbitrary combinations of text, audio, and image inputs by default. In this talk, Tyler Mullen, Staff Software Engineer on the MediaPipe team at Google, discusses how his team leveraged the same technology powering Chrome Built-in AI to bring these model families to the web. He walks through some of the challenges they overcame in order to achieve top speeds while running fully on the user&apos;s device. Then, he covers their straightforward API for running these models with only a few lines of code, allowing anyone to quickly and easily build powerful WebAI applications. He concludes by showcasing several practical (and fun) examples of this tech in action.

Resources:
Docs → https://goo.gle/mediapipe-llm-inference-web
HuggingFace Spaces →https://goo.gle/4hLN39H


See more Web AI talks →  https://goo.gle/web-ai  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs


Event: Web AI Summit 2025

Speaker: Tyler Mullen
Products Mentioned: AI for the web, Gemma 3, Gemma 3n

#ChromeforDevelopers #WebAI</video:description>
      <video:player_loc>https://www.youtube.com/embed/UC5jUqNBVkI</video:player_loc>
      <video:publication_date>2025-11-26T20:54:19.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>907</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8276/kotlin-wasm-with-zalim-bashorov-wasmassembly-podcast</loc>
    <lastmod>2025-11-25T17:00:15.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/ArP-h7ahcVY/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Kotlin/Wasm with Zalim Bashorov - WasmAssembly Podcast</video:title>
      <video:description>Join WasmAssembly host Thomas Steiner for a deep dive into the world of Kotlin/Wasm with Zalim Bashorov from JetBrains! This episode of WasmAssembly explores how Kotlin, known for being concise, multiplatform, and fun, became the recommended language for Android, and why JetBrains decided to expand its reach to WebAssembly. They discuss how people are currently using Kotlin on the Web, the power of Kotlin Multiplatform, and the future of Kotlin/Wasm, covering exciting recent and new proposals like Garbage Collection, Exception Handling, and Shared-Everything Threads. Tune in to hear about the tooling, next milestones, and the evolving landscape of Kotlin development.

Chapters:
0:00 - Introducing Zalim from JetBrains
2:19 - Kotlin: Concise. Multiplatform. Fun. But what does this mean?
9:05 - How did Kotlin become the recommended programming language for Android?
16:17 - Why did JetBrains decide to support WebAssembly?
25:36 - People use Kotlin on the Web, but how?
31:15 -  What is Kotlin Multiplatform?
37:48 - Understanding canvas-rendered apps
41:17 - Could the HTML-in-Canvas proposal help?
43:59 - New Wasm proposals Zalim is excited about
54:29 - What about Kotlin on the server?

Resources:
Zalim Basharov on LinkedIn → https://goo.gle/4pis0y2 
StackOverflow 2025 developer survey results → https://goo.gle/3WZuchN 
Kotlin Programming Language → https://goo.gle/4ifxZkU 
Google I/O 2019: Empowering developers to build the best experiences on Android + Play → https://goo.gle/3LLwpen 
Kotlin Is Everywhere: https://goo.gle/4rlvdPc 
Kotlin/Native → https://goo.gle/3LNk1KM 
Kotlin/JavaScript → https://goo.gle/3XxkDH0 
Kotlin/Wasm → https://goo.gle/4r53NwP 
Kotlinx.browser → https://goo.gle/4o9WRvJ 
Kotlin/Wasm browser template → https://goo.gle/49tzl9c 
Get started with Kotlin/Wasm and Compose Multiplatform → https://goo.gle/3X8cmsW 
Get started with Kotlin Multiplatform → https://goo.gle/48njI20 
HTML-in-Canvas proposal → https://goo.gle/48sy8wX  
Garbage collection proposal → https://goo.gle/4i4CgHw 
Exception handlin</video:description>
      <video:player_loc>https://www.youtube.com/embed/ArP-h7ahcVY</video:player_loc>
      <video:publication_date>2025-11-25T17:00:15.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>4347</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8277/answering-your-questions-about-chrome-web-store-discoverability</loc>
    <lastmod>2025-11-24T17:00:59.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/WkhlIiqDfRI/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Answering your questions about Chrome Web Store discoverability</video:title>
      <video:description>By far the most common question developers have about building Chrome Extensions is how to find an audience in the Chrome Web Store. In this episode, Oliver answers some of your questions from Reddit.

Chapters:
00:00 - Intro
01:07 - What are users searching for?
02:56 - How can you get visibility in the Chrome Web Store?
04:25 - How are extensions categorized?
05:11 - How are search results ordered?
05:56 - Why ratings are important
06:38 - Conclusion

Resources:
More on discovery in the Chrome Web Store → https://goo.gle/4opJF69 

Watch more Developer Mode → https://goo.gle/dev-mode
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#ChromeForDevelopers #Chrome


Speaker: Oliver Dunk
Products Mentioned: Chrome</video:description>
      <video:player_loc>https://www.youtube.com/embed/WkhlIiqDfRI</video:player_loc>
      <video:publication_date>2025-11-24T17:00:59.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>494</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8278/built-in-ai-the-next-frontier-for-web-experiences-presented-by-miravia</loc>
    <lastmod>2025-11-21T22:31:59.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/ED-IYEzKrsM/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Built-in AI: The next frontier for web experiences presented by Miravia</video:title>
      <video:description>Discover how leading websites like Miravia are leveraging Chrome&apos;s built-in AI APIs to create smarter, more engaging user experiences. In this talk, Cecilia Cong, Web Ecosystem Consultant at Google, showcases the real-world use cases and share data on the significant business impact and ROI achieved by integrating these powerful, on-device AI capabilities. Learn how you can use built-in AI to drive business growth and innovation on your own site.

See more Web AI talks →  https://goo.gle/web-ai  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs


Event: Web AI Summit 2025

Speaker: Cecilia Cong
Products Mentioned: AI for the web, Chrome

#ChromeforDevelopers #WebAI</video:description>
      <video:player_loc>https://www.youtube.com/embed/ED-IYEzKrsM</video:player_loc>
      <video:publication_date>2025-11-21T22:31:59.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>585</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8279/real-time-video-upscaling-using-cnns-and-webgpu</loc>
    <lastmod>2025-11-21T22:30:20.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/CozLYpZ5i1c/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Real-time video upscaling using CNNs and WebGPU</video:title>
      <video:description>WebGPU delivers a more modern GPU API over the familiar OpenGL ES 2.0 based WebGL that was introduced in 2011. In this talk, James Hurley, Principal Software Engineer at Twitch, discusses how his team leverages WebGPU to build a neural network to upscale video to 1080p and 1440p at 60 frames per second on end user devices. 

Resources:
Learn more →  https://goo.gle/3JChXVi 

See more Web AI talks →  https://goo.gle/web-ai  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs


Event: Web AI Summit 2025

Speaker: James Hurley
Products Mentioned: AI for the web, WebGPU

#ChromeforDevelopers #WebAI</video:description>
      <video:player_loc>https://www.youtube.com/embed/CozLYpZ5i1c</video:player_loc>
      <video:publication_date>2025-11-21T22:30:20.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>886</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8280/bangle-js-an-open-source-smartwatch</loc>
    <lastmod>2025-11-21T22:29:23.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/FVbeWO8HBjQ/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Bangle.js - an Open Source Smartwatch</video:title>
      <video:description>In this talk, Gordon Williams, Founder &amp; Lead Developer of Espurino, showcases an amazing smartwatch that runs JS and is the perfect pairing with custom Web AI models that leverage the sensor data from the device! 

Resources:
Learn more → https://goo.gle/3JRbZjp 

See more Web AI talks →  https://goo.gle/web-ai  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs


Event: Web AI Summit 2025

Speaker: Gordon Williams
Products Mentioned: AI for the web

#ChromeforDevelopers #WebAI</video:description>
      <video:player_loc>https://www.youtube.com/embed/FVbeWO8HBjQ</video:player_loc>
      <video:publication_date>2025-11-21T22:29:23.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>876</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8281/inferencejs-real-time-computer-vision-in-your-browser</loc>
    <lastmod>2025-11-21T22:27:54.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/eI3rY2iEp6Y/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>InferenceJS: Real-time computer vision in your browser</video:title>
      <video:description>Build AI that runs where your users are—directly in the browser. Max Schridde, Full Stack Engineer at Roboflow, explores dataset curation, training, and deploying with InferenceJS, then showcases a live scavenger hunt game. Scan a QR code, play along, and compete for Roboflow swag while experiencing computer vision on the web.

Resources:
InferenceJS → https://goo.gle/4qJMDop 

See more Web AI talks →  https://goo.gle/web-ai  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs


Event: Web AI Summit 2025

Speaker: Max Schridde
Products Mentioned: AI for the web, InferenceJS

#ChromeforDevelopers #WebAI</video:description>
      <video:player_loc>https://www.youtube.com/embed/eI3rY2iEp6Y</video:player_loc>
      <video:publication_date>2025-11-21T22:27:54.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>887</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8283/transformers-js-building-next-generation-webai-applications</loc>
    <lastmod>2025-11-21T22:24:15.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/gJMiWw_5-us/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Transformers.js: Building Next-Generation WebAI Applications</video:title>
      <video:description>Learn how to create stunning AI-powered web applications with Transformers.js, an innovative JavaScript library for running state-of-the-art machine learning models 100% locally in your browser. In this talk, Joshua Lochner, Open Source ML Engineer at Hugging Face, explores how to leverage emerging web technologies like WebGPU and WebNN to create interactive, privacy-preserving, and scalable web experiences.

Resources:
GitHub →  https://goo.gle/43YnFHP 


See more Web AI talks →  https://goo.gle/web-ai  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs


Event: Web AI Summit 2025

Speaker: Joshua Lochner
Products Mentioned: AI for the web, WebGPU, WebNN

#ChromeforDevelopers #WebAI</video:description>
      <video:player_loc>https://www.youtube.com/embed/gJMiWw_5-us</video:player_loc>
      <video:publication_date>2025-11-21T22:24:15.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>1510</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8284/web-ai-leaps-forward-on-intel-ai-pcs</loc>
    <lastmod>2025-11-21T22:21:26.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/xlDMsvqXI1I/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Web AI leaps forward on Intel AI PCs</video:title>
      <video:description>Moh Haghighat, Intel Fellow, showcases the latest performance advancements in WebGPU and WebNN on Intel AI PCs. Tune in for a sneak peek of Panther Lake, Intel’s next-generation client processor, designed to unleash new AI experiences and expected to launch in early 2026, elevating the web into a premier platform for AI.

Resources:
GitHub →  https://goo.gle/49Ennth 
API reference → https://goo.gle/4nJbYvN 
Installation → https://goo.gle/4owITF8   

See more Web AI talks →  https://goo.gle/web-ai  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

Event: Web AI Summit 2025

Speaker: Moh Haghighat
Products Mentioned: AI for the web, WebGPU, WebNN

#ChromeforDevelopers #WebAI</video:description>
      <video:player_loc>https://www.youtube.com/embed/xlDMsvqXI1I</video:player_loc>
      <video:publication_date>2025-11-21T22:21:26.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>871</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8285/what-if-you-lose-the-device-with-a-passkey</loc>
    <lastmod>2025-11-21T18:08:29.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/JMG0xRG7cXo/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>What if you lose the device with a passkey?</video:title>
      <video:description>In this video, Oliver talks about how passkeys make it easier for users to keep access to their account across all of their devices.

Chapters:
0:00 - Intro
0:12 - Benefits of passkeys
1:14 - Cross-device synchronization
1:30 - Account recovery
2:00 - Conclusion

Resources:
More on Passkeys / Passkeys week → http://goo.gle/passkeys-web

Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#ChromeForDevelopers #Chrome


Speaker: Oliver Dunk
Products Mentioned: Chrome</video:description>
      <video:player_loc>https://www.youtube.com/embed/JMG0xRG7cXo</video:player_loc>
      <video:publication_date>2025-11-21T18:08:29.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>147</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8286/hangar-css-debugging-devtoolstips</loc>
    <lastmod>2025-11-20T17:00:20.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/BsDeWl7ZGcM/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Hangar CSS debugging #DevToolsTips</video:title>
      <video:description>Join Matthias and explore how AI assistance in Chrome DevTools streamlines CSS debugging. Discover how to troubleshoot common styling problems around Flexbox and Animations and learn to leverage Gemini for quick solutions and apply changes directly to your codebase for a seamless debugging experience.

Chapters:
0:00 - Intro
1:05 - Wheels
1:51 - Position lights
2:33 - Engine 

Resources:
DevTools Hangar → https://goo.gle/devtools-hangar 
Set up workspaces to save changes to source files → http://goo.gle/devtools-workspace-ai 

Watch more DevTools Tips → https://goo.gle/DevToolsTips 
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#ChromeForDevelopers #Chrome

Speaker: Matthias Rohmer
Products Mentioned: Chrome,  Chrome DevTools</video:description>
      <video:player_loc>https://www.youtube.com/embed/BsDeWl7ZGcM</video:player_loc>
      <video:publication_date>2025-11-20T17:00:20.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>230</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8269/built-in-ai-how-mastodon-uses-translation-apis</loc>
    <lastmod>2025-11-26T21:02:53.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/-l2BUUdBDS8/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Built-in AI: how Mastodon uses translation APIs</video:title>
      <video:description>Mastodon posts mislabeled with the wrong language as well as costly translations that depend on a server: Those are common problems for many Mastodon instances. In this talk, Thomas Steiner from Chrome&apos;s Built-in AI team details how he integrated the Language Detector and Translator APIs into the popular Mastodon client Elk.zone. This isn&apos;t a textbook success story—you&apos;ll hear about what initially went wrong, the technical hurdles encountered, and how they were overcome to build a feature that now runs reliably in production.

Resources:
add support for the Language Detector API  →  https://goo.gle/47vgzNt 
add support for the Translation API→  https://goo.gle/3WFV0U9 
 Elk Zone→  https://goo.gle/49ERpx1 
Chrome built-in AI docs →  https://goo.gle/3JHSWIi 
 Join the early preview program →   https://goo.gle/49GPFU6 


See more Web AI talks →  https://goo.gle/web-ai  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs


Event: Web AI Summit 2025

Speaker: Thomas Steiner
Products Mentioned: AI for the web

#ChromeforDevelopers #WebAI</video:description>
      <video:player_loc>https://www.youtube.com/embed/-l2BUUdBDS8</video:player_loc>
      <video:publication_date>2025-11-26T21:02:53.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>724</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8272/how-to-control-drones-with-your-mind-the-black-swan-bci-headset</loc>
    <lastmod>2025-11-26T20:59:44.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/y_UOFZJogVM/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>How to control drones with your mind: The Black Swan BCI headset</video:title>
      <video:description>Dara Tumenbayeva, Founder &amp; CEO of Black Swan, demonstrates how brain signals captured from a non-invasive headset can control drones in real time. Powered by WebAI and TensorFlow, this dual-use technology showcases the future of human–machine collaboration across e-sports, defense, and robotics.

Resources:
Learn more → https://goo.gle/4hRCstK 

See more Web AI talks →  https://goo.gle/web-ai  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs


Event: Web AI Summit 2025

Speaker: Dara Tumenbayeva
Products Mentioned: AI for the web, TensorFlow

#ChromeforDevelopers #WebAI</video:description>
      <video:player_loc>https://www.youtube.com/embed/y_UOFZJogVM</video:player_loc>
      <video:publication_date>2025-11-26T20:59:44.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>490</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8271/offline-vector-search-with-sqlite-and-embeddinggemma</loc>
    <lastmod>2025-11-26T21:01:14.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/sobPBztQTtU/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Offline vector search with SQLite and EmbeddingGemma</video:title>
      <video:description>Learn from Rody Davis, Senior Developer Relations Engineer at Google, how to query and embed documents using SQLite and embeddings with EmbeddingGemma and Gemma3. Create an offline RAG system that runs in the browser offline.

Resources:
Github → https://goo.gle/4p2b3b1 

See more Web AI talks →  https://goo.gle/web-ai  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs


Event: Web AI Summit 2025

Speaker: Rody Davis
Products Mentioned: AI for the web, Gemma 3

#ChromeforDevelopers #WebAI</video:description>
      <video:player_loc>https://www.youtube.com/embed/sobPBztQTtU</video:player_loc>
      <video:publication_date>2025-11-26T21:01:14.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>605</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8270/how-to-build-ai-powered-vs-code-extensions-with-local-models</loc>
    <lastmod>2025-11-26T21:02:14.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/Ruz9YcuEEAM/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>How to build AI-powered VS Code extensions with local models</video:title>
      <video:description>In this talk, Hugo Zanini, Product Lead at Nubank, walks you through a case study on building Cursor Extensions with JavaScript and Running Models Locally.

Resources:
Connect with Hugo → https://goo.gle/4qOJR10 

See more Web AI talks →  https://goo.gle/web-ai  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs


Event: Web AI Summit 2025

Speaker: Hugo Zanini
Products Mentioned: AI for the web

#ChromeforDevelopers #WebAI</video:description>
      <video:player_loc>https://www.youtube.com/embed/Ruz9YcuEEAM</video:player_loc>
      <video:publication_date>2025-11-26T21:02:14.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>796</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8268/re-imagine-the-web-with-scoped-view-transitions</loc>
    <lastmod>2025-12-03T17:03:33.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/LaRA-zBubsE/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Re-imagine the web with Scoped View Transitions</video:title>
      <video:description>With Scoped View Transitions ✨, you can finally unlock the full power of motion by creating multiple, fluid, simultaneous transitions. Isolate and animate various, distinct page areas at once to deliver a seamless user experience with just a few lines of CSS and no JavaScript.  This feature is ready for testing in Chrome 140 with the &quot;Experimental Web Platform features&quot; flag enabled in chrome://flags

Gain more control over complex motion and say goodbye to choppy sequential animations with Scoped View Transitions! 

Resources 📖
Scoped View Transitions, ready for developer testing → https://goo.gle/3XuZMUX 

View Transition API → https://goo.gle/3MzVngY 

What’s new in Web UI (Google I/O 2025 recap) → https://goo.gle/443ZkAE 


Watch more “Re-imagine the power of the web” →  https://goo.gle/re-imagine-the-web 

Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#Chrome #WebDev #ViewTransitions #CSS #WebUX #Frontend #DeveloperTools #ChromeForDevs #WebAnimations #animations #ui #webui

Products Mentioned: Chrome, web platform, View Transition API</video:description>
      <video:player_loc>https://www.youtube.com/embed/LaRA-zBubsE</video:player_loc>
      <video:publication_date>2025-12-03T17:03:33.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>85</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8248/how-to-become-a-computer-power-user-in-5-steps</loc>
    <lastmod>2025-10-15T11:00:52.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/OxkSchTT-DE/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>How To Become A Computer Power User (In 5 Steps!)</video:title>
      <video:description>How can you--the computer noob--become a power user?!  Well, it&apos;s easy.  Just follow these five steps!

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/OxkSchTT-DE</video:player_loc>
      <video:publication_date>2025-10-15T11:00:52.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>749</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8250/debug-storage-apis</loc>
    <lastmod>2026-02-26T18:05:56.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/ESZX18Ty5V0/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Debug Storage APIs</video:title>
      <video:description>Learn how to inspect and debug various Storage APIs using the Application panel in Chrome DevTools. Matthias shares how to view and modify data for Cookies, Local Storage, Session Storage, and IndexedDB. 

Chapters:
0:00 - Intro
0:30 - Storage APIs
1:20 - Demo: Application panel 
2:20 - Demo: Sensors panel

Resources:
Check out the demo → http://goo.gle/storage-kittens  
Documentation → https://goo.gle/4kVLI1r
                                    
Watch more DevTools Tips → https://goo.gle/DevToolsTips 
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs
Subscribe to @ChromeDevTools → https://x.com/ChromeDevTools

#ChromeForDevelopers #Chrome

Speaker: Matthias Rohmer
Products Mentioned: Chrome,  Chrome DevTools,</video:description>
      <video:player_loc>https://www.youtube.com/embed/ESZX18Ty5V0</video:player_loc>
      <video:publication_date>2026-02-26T18:05:56.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>217</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8251/building-a-profitable-chrome-extension-lessons-from-pretty-prompt</loc>
    <lastmod>2026-02-25T16:09:41.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/7i2N7Hqyqyg/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Building a profitable Chrome extension | Lessons from Pretty Prompt</video:title>
      <video:description>Monetizing a Chrome extension can feel complex, but co-founders Charlie and Eli share their journey to success with PrettyPrompt. Learn how they grew to 15,000 users, integrated payments, and built a product users are eager to pay for. This video provides practical advice on validating ideas, supporting customers, and strategically evolving your monetization approach.

Chapters:
0:00 - Introduction
0:43 - Explaining the product functionality
3:05 - Validating if users are willing to pay
4:09 - Implementing the payment flow
6:00 - Designing the upgrade user experience
8:28 - Early growth stages and organic traction
13:00 - Analyzing annual versus monthly subscriptions
15:00 - Zero-spend marketing and customer advocacy
18:40 - The freemium model and conversion tactics
23:35 - Handling internationalization and languages
25:42 - Addressing client-side security concerns
29:20 - Prioritizing problems and earning the right to monetize
33:30 - Future opportunities in the B2B market
37:15 - Conclusion

Resources:

Watch more Developer Mode → https://goo.gle/dev-mode 
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#ChromeForDevelopers #Chrome

Speaker: Oliver Dunk, Charlie Day, Ilai Szpiezak 
Products Mentioned: Chrome</video:description>
      <video:player_loc>https://www.youtube.com/embed/7i2N7Hqyqyg</video:player_loc>
      <video:publication_date>2026-02-25T16:09:41.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>2299</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8252/how-to-understand-chrome-extension-ids-and-the-key-field</loc>
    <lastmod>2026-02-11T16:00:00.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/cHzsNU84u6g/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>How to understand Chrome extension IDs and the key field</video:title>
      <video:description>Learn the fundamentals of Chrome Extension IDs, from their generation to their critical role in security and resource management. Oliver clarifies the difference between IDs for unpacked extensions (based on file path hash) and published extensions (derived from public keys). Understand how to work with deterministic IDs for development, the importance of ID uniqueness, and the security implications of using an ID as an extension&apos;s origin.


Chapters:
0:00 - Introduction
0:36 - Understanding extension ID structure
1:00 - Using the ID as an origin
1:24 - Unpacked extension ID generation
1:49 - Public key cryptography explanation
2:52 - The public key manifest field
3:07 - Demo: Replicating an extension ID
3:47 - Security in development vs. production
4:23 - Generating consistent IDs with OpenSSL
5:07 - Conclusion

Watch more Developer Mode → https://goo.gle/dev-mode 
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#ChromeForDevelopers #Chrome

Speaker: Oliver Dunk
Products Mentioned: Chrome</video:description>
      <video:player_loc>https://www.youtube.com/embed/cHzsNU84u6g</video:player_loc>
      <video:publication_date>2026-02-11T16:00:00.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>331</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8253/how-to-use-web-frameworks-with-chrome-extensions</loc>
    <lastmod>2026-01-28T23:40:20.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/XfsXCfv7wKM/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>How to use web frameworks with Chrome extensions</video:title>
      <video:description>Explore the benefits and considerations of using web frameworks for Chrome Extension development in this technical guide. Oliver addresses the core question of framework compatibility with extensions and gives advice on when frameworks like React and Svelte can be a good fit. Learn about essential practices like bundling your code locally and adapting to different browser environments, enabling you to confidently build powerful and performant extensions with your preferred tools.


Chapters:
0:00 - Introduction
0:45 - Can you use a framework to build a Chrome Extension?
1:26 - What to consider when choosing a framework 
4:25 - Conclusion

Watch more Developer Mode → https://goo.gle/dev-mode 
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs
Patrick&apos;s video on Remote Hosted Code → https://www.youtube.com/watch?v=aYxzHUX_elo

#ChromeForDevelopers #Chrome

Speaker: Oliver Dunk
Products Mentioned: Chrome, Chrome Extensions</video:description>
      <video:player_loc>https://www.youtube.com/embed/XfsXCfv7wKM</video:player_loc>
      <video:publication_date>2026-01-28T23:40:20.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>295</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8254/how-to-use-the-devtools-mcp-server-for-ai-debugging-devtoolstips</loc>
    <lastmod>2026-01-22T22:56:08.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/-bxbeOBdmyE/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>How to use the DevTools MCP server for AI debugging #DevToolsTips</video:title>
      <video:description>Chrome DevTools now has a Model Context Protocol (MCP) server that lets AI agents interact directly with your browser. Learn how to connect tools like Gemini and VS Code to Chrome for real-time debugging. Matthias covers how to set up the server and use it to fix performance issues and bugs.

Chapters:
0:00 - Intro
0:46  What is MCP? 
2:04 - Example: INP 
3:10 - Example: Multi-step interactions
4:19 - Available tools

Resources:
Chrome DevTools (MCP) for your AI agent - Blog post → https://goo.gle/4jSWS6C
Chrome DevTools (MCP) for your AI agent - Github → https://goo.gle/46c1vmz
The DevTools Times article → https://goo.gle/4qD1oZq

Watch more DevTools Tips → https://goo.gle/DevToolsTips 
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#ChromeForDevelopers #Chrome

Speaker: Matthias Rohmer
Products Mentioned: Chrome,  Chrome DevTools,</video:description>
      <video:player_loc>https://www.youtube.com/embed/-bxbeOBdmyE</video:player_loc>
      <video:publication_date>2026-01-22T22:56:08.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>363</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8255/extension-update-testing-tool-in-action</loc>
    <lastmod>2026-01-21T18:00:27.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/Lpz6nFy7PQo/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Extension Update Testing Tool in action</video:title>
      <video:description>Oliver walks through how to test an update for yourself using the Extension Update Testing Tool. For more information on permissions, check out the related video.

Watch more Developer Mode → https://goo.gle/dev-mode 

#ChromeForDevelopers #Chrome

Speaker: Oliver Dunk
Products Mentioned: Chrome</video:description>
      <video:player_loc>https://www.youtube.com/embed/Lpz6nFy7PQo</video:player_loc>
      <video:publication_date>2026-01-21T18:00:27.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>139</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8256/how-to-know-if-permissions-are-safe-to-request-in-your-chrome-extension</loc>
    <lastmod>2026-01-14T19:30:12.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/gO0TRIYO5v4/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>How to know if permissions are safe to request in your Chrome Extension</video:title>
      <video:description>Learn how Chrome handles permission updates for extensions, a crucial aspect for maintaining user trust and ensuring smooth deployments. Oliver shares the mechanics behind permissions and how you can test an update to see what impact it will have on your users.

Resources:
Permissions list → https://goo.gle/48MkdDb  
Extension Update Testing Tool → https://goo.gle/4pLjat6 

Chapters:
0:00 - Introduction
0:34 - What are permissions?
2:11 - How multiple permission warnings interact
3:03 - Demo
4:30 - Conclusion

Watch more Developer Mode → https://goo.gle/dev-mode 
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#ChromeForDevelopers #Chrome

Speaker: Oliver Dunk
Products Mentioned: Chrome, Chrome Extensions</video:description>
      <video:player_loc>https://www.youtube.com/embed/gO0TRIYO5v4</video:player_loc>
      <video:publication_date>2026-01-14T19:30:12.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>306</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8258/what-s-new-in-chrome-extensions-and-the-chrome-web-store-in-2025</loc>
    <lastmod>2025-12-29T17:01:26.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/nOfyMlIu4jc/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>What&apos;s new in Chrome extensions and the Chrome Web Store in 2025?</video:title>
      <video:description>Dive into the major advancements that shaped Chrome Extensions and the Chrome Web Store throughout 2025. Oliver covers a year of innovation, detailing the full transition to Manifest V3, the introduction of powerful new platform APIs, and the robust integration of built-in AI capabilities like the Prompt, Summarizer, Translator, and Language Detector APIs. Learn about the evolution of user script management, improvements to the Side Panel API, and how these changes are fostering a more innovative and secure extension ecosystem.

Chapters:
0:00 - Introduction 
1:29 - January
1:50 - February 
2:12 - March 
2:31 - April
2:47 - May
3:00 - June 
3:42 - July 
4:01 - August 
4:18 - September 
4:40 - October 
5:01 - November 
5:38 - December 

Watch more Developer Mode → https://goo.gle/dev-mode
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#ChromeForDevelopers #Chrome


Speaker: Oliver Dunk
Products Mentioned: Chrome</video:description>
      <video:player_loc>https://www.youtube.com/embed/nOfyMlIu4jc</video:player_loc>
      <video:publication_date>2025-12-29T17:01:26.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>371</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8260/re-imagine-the-web-with-css-carousels</loc>
    <lastmod>2025-12-22T18:00:22.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/MpG0oDiC5Bg/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Re-imagine the web with CSS Carousels</video:title>
      <video:description>Stop battling heavy JavaScript libraries and &apos;content chaos.&apos; Turn the tightest layouts into an expansive canvas using new CSS primitives: stylable fragmentation, scroll markers, scroll buttons, and scroll snap. Create rich, dynamic, and performant carousels in minutes with just a few lines of CSS.
Available in Chrome now, and coming soon to the broader web platform.

📚Resources:
Make accessible carousels → https://goo.gle/4aTpGtc 

Carousels with CSS → https://goo.gle/3YuWhOv 

What’s new in Web UI (Google I/O 2025 recap) → https://goo.gle/4rZERY1 

Watch more “Re-imagine the power of the web” →  https://goo.gle/re-imagine-the-web 

Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#Chrome #WebDev #CSS #WebUX #Frontend #DeveloperTools #ChromeForDevs #ui #webui #CSSCarousel #WebDevelopment #UXDesign #CSSPrimitives

Products Mentioned: Chrome, web platform, carousels</video:description>
      <video:player_loc>https://www.youtube.com/embed/MpG0oDiC5Bg</video:player_loc>
      <video:publication_date>2025-12-22T18:00:22.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>87</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8261/what-s-new-in-devtools-142-144</loc>
    <lastmod>2025-12-18T17:01:42.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/2rOeZ98AOb8/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>What’s new in DevTools 142 - 144</video:title>
      <video:description>Enhance your development experience with the exciting updates in Chrome DevTools 142-144. This video demonstrates Code suggestions from Gemini, integrated into DevTools for a smoother and more efficient workflow. Learn about the Chrome DevTools MCP server for AI agents, advanced AI features for full trace debugging, improved trace exports for collaborative analysis, and granular network request throttling.

Resources:
DevTools MCP → https://goo.gle/devtools-mcp 
Save and share performance traces → https://goo.gle/devtools-save-trace
Request conditions → https://goo.gle/devtools-request-conditions 

What’s New blog posts:
142 → https://goo.gle/new-in-chrome-142 
143 → https://goo.gle/new-in-chrome-143 

Chapters:
0:00 - Introduction
0:45 - DevTools MCP
1:42 - Performance: Full trace debugging 
2:03 - Performance: Improved trace exports 
2:37 - Request conditions
3:09 - Code suggestions
3:43 - Bonus tip

Watch more What&apos;s New in DevTools → https://goo.gle/NewInDevTools  
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#ChromeForDevelopers #Chrome

Speaker: Matthias Rohmer
Products Mentioned: Chrome,  Chrome DevTools,   CSS</video:description>
      <video:player_loc>https://www.youtube.com/embed/2rOeZ98AOb8</video:player_loc>
      <video:publication_date>2025-12-18T17:01:42.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>282</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8262/custom-functions-csswrapped-2025</loc>
    <lastmod>2025-12-17T22:00:00.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/JDSc9ZozhQo/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Custom functions #CSSWrapped 2025</video:title>
      <video:description>Discover custom functions, one of Una’s favorite features from CSS Wrapped 2025. Functions make it alot easier to architect your CSS in a clean and expressive way. Join Una as she shares an example of a CSS custom function for a conditionally rounded border radius.

See all of the UI features that Chrome shipped this year → goo.gle/css-wrapped-2025 

Speaker:  Una Kravets
Products Mentioned: Chrome,  CSS</video:description>
      <video:player_loc>https://www.youtube.com/embed/JDSc9ZozhQo</video:player_loc>
      <video:publication_date>2025-12-17T22:00:00.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>111</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8263/how-to-pick-the-right-ai-model-for-your-web-app</loc>
    <lastmod>2025-12-15T23:23:36.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/Zx_nHeBxZjw/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>How to pick the right AI model for your web app</video:title>
      <video:description>Ali Spivak, from Chrome Developer Relations, breaks down how to select the best generative AI model for your specific needs by focusing on your project&apos;s requirements, data characteristics, and model types. Understand the trade-offs between client-side and server-side processing, discover the benefits of SLMs and expert models, and see how Chrome&apos;s Built-in AI features can empower your web applications.

Resources:
Learn more about Built-in AI → https://goo.gle/built-in-ai-docs 

Chapters:
0:00 - Introduction: Choosing an AI model
0:57 - Step 1: Define your use case, audience, and constraints 
4:00 - Step 2: Assessing your data
6:09 - Step 3: Exploring AI model types and locations 
14:59 - Recap

Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#ChromeForDevelopers #Chrome

Speaker: Ali Spivak
Products Mentioned: Chrome</video:description>
      <video:player_loc>https://www.youtube.com/embed/Zx_nHeBxZjw</video:player_loc>
      <video:publication_date>2025-12-15T23:23:36.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>987</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8264/create-scroll-triggered-animations-with-css</loc>
    <lastmod>2025-12-15T17:00:54.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/d8J0vs-bEPE/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Create Scroll-Triggered Animations with CSS</video:title>
      <video:description>Bring your web stories to life with Scroll-Triggered Animations. Animate elements as they enter the viewport, transforming any website into an immersive narrative that is performant by default and unmissable by design. Go from complex JavaScript to a few lines of CSS. 
This feature is ready for testing in Chrome 144 with the &quot;Experimental Web Platform features&quot; flag enabled in chrome://flags

📚Resources: 
Get started with scroll-triggered animations → https://goo.gle/3MvDBvA 

Animate elements on a scroll with scroll-driven animations →  https://goo.gle/4qeuLAY 

Discover new powerful CSS features → https://goo.gle/3XO7iKz 

What’s new in Web UI (Google I/O 2025 recap) →https://goo.gle/4a9Sj53 

Watch more “Re-imagine the power of the web” →  https://goo.gle/re-imagine-the-web 

Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs


#Chrome #WebDev #CSS #WebUX #Frontend #DeveloperTools #ChromeForDevs #ui #webui #WebAnimations #animations #scroll-triggeredanimations #scrollytelling #cssanimation #web-nativeapis

Products Mentioned: Chrome, web platform, scroll-triggered animations</video:description>
      <video:player_loc>https://www.youtube.com/embed/d8J0vs-bEPE</video:player_loc>
      <video:publication_date>2025-12-15T17:00:54.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>90</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8265/one-codebase-all-browsers-building-cross-browser-manifest-v3-extensions</loc>
    <lastmod>2025-12-12T15:00:54.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/PW2u2IZWjtk/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>One Codebase, All Browsers: Building Cross-Browser Manifest V3 Extensions</video:title>
      <video:description>Explore the possibilities of creating a single Chrome Extension codebase that works seamlessly across multiple browsers. Oliver covers the evolving landscape of Manifest V3, explains how to manage runtime APIs, and discusses strategies for network filtering, empowering you to develop efficient and widely compatible extensions.

WebExtensions Community Group →  https://goo.gle/w3c-extensions-community 

Chapters:
0:00  - Introduction
0:30  - Manifest V3 and browser compatibility 
2:41  - API namespace differences 
4:45  - Network filtering 
5:41 - Recap

Watch more Developer Mode → https://goo.gle/dev-mode
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#ChromeForDevelopers #Chrome


Speaker: Oliver Dunk
Products Mentioned: Chrome</video:description>
      <video:player_loc>https://www.youtube.com/embed/PW2u2IZWjtk</video:player_loc>
      <video:publication_date>2025-12-12T15:00:54.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>394</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8266/css-wrapped-2025-all-the-new-css-and-web-ui-features-that-landed-in-chrome-in-20</loc>
    <lastmod>2025-12-08T17:01:28.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/rnT1XBZWHMk/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>CSS Wrapped 2025: All the new CSS and Web UI features that landed in Chrome in 2025</video:title>
      <video:description>We’re excited to look back at all the amazing UI features that Chrome shipped in 2025. Let’s have a look at how the web took shape this year from customizable select to nested view transition groups, and so much more. 

See all of the UI features that Chrome shipped this year → https://goo.gle/css-wrapped-2025 

Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#ChromeForDevelopers #Chrome

Products Mentioned: Chrome,  CSS</video:description>
      <video:player_loc>https://www.youtube.com/embed/rnT1XBZWHMk</video:player_loc>
      <video:publication_date>2025-12-08T17:01:28.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>89</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8267/how-to-protect-chrome-extension-code-and-api-keys</loc>
    <lastmod>2025-12-03T20:09:07.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/pl4pz4nWa3w/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>How to protect Chrome extension code and API keys</video:title>
      <video:description>Concerned about keeping your API keys in a Chrome Extension? Oliver explores why JavaScript source code is inherently easy to inspect and how Chrome Web Store policies address code obfuscation versus minification. We also discuss leveraging cloud functions or server-side APIs to handle authenticated requests, ensuring your API keys remain secure and protected from extraction.

Resources:
Join the mailing list → https://goo.gle/4oiYgQy 

Watch more Developer Mode → https://goo.gle/dev-mode
Subscribe to Chrome for Developers → https://goo.gle/ChromeDevs

#ChromeForDevelopers #Chrome


Speaker: Oliver Dunk
Products Mentioned: Chrome</video:description>
      <video:player_loc>https://www.youtube.com/embed/pl4pz4nWa3w</video:player_loc>
      <video:publication_date>2025-12-03T20:09:07.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>343</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8259/customizable-select-csswrapped-2025</loc>
    <lastmod>2025-12-26T17:00:18.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/6yFm0BLI2hk/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Customizable select #CSSWrapped 2025</video:title>
      <video:description>You can finally style drop downs in CSS! Learn about the new customizable select, one of Una&apos;s top features from CSS Wrapped 2025.

See all of the UI features that Chrome shipped this year → https://goo.gle/css-wrapped-2025 

Speaker:  Una Kravets
Products Mentioned: Chrome,  CSS</video:description>
      <video:player_loc>https://www.youtube.com/embed/6yFm0BLI2hk</video:player_loc>
      <video:publication_date>2025-12-26T17:00:18.000Z</video:publication_date>
      <video:uploader>Chrome for Developers</video:uploader>
      <video:duration>97</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8226/open-source-apps-so-good-i-d-pay-for-them</loc>
    <lastmod>2025-12-16T14:01:15.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/f5_JlqPkmWc/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Open Source Apps So Good, I&apos;d Pay For Them!</video:title>
      <video:description>It&apos;s that time of year when many open source projects ask for your donations.    If you depend on free and open source software, please give a few bucks to those projects.

REFERENCED:
https://www.makeuseof.com/open-source-apps-so-good-happily-pay/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/f5_JlqPkmWc</video:player_loc>
      <video:publication_date>2025-12-16T14:01:15.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>802</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8222/chat-with-patrons-dec-28-2025</loc>
    <lastmod>2025-12-29T06:49:08.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/EN1x-WFt9Lw/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Chat With Patrons (Dec 28, 2025)</video:title>
      <video:description>This Video Chat will be for my Patrons!  Patrons can join the video call via Zoom which is available on Linux, Mac and Windows.  For those wishing to join the chat but are not a Patron, consider joining my Patreon ( https://www.patreon.com/distrotube ).  I will post a link to the Zoom chat on my Patreon page a few minutes prior to the stream.  Hope to see you guys there!

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.youtube.com/redirect?event=channel_banner&amp;redir_token=QUFFLUhqbFF3eGpGSzM5Vk1PMGlENllqckpHeERYWWRld3xBQ3Jtc0tuUVNSYno2bjFGSG1MTGdfYkJnanhhU1o3ODdxejVWZzNTeHhLX0p4VUIwR01PMmF1MEtpdWVYMnppVXBuTmluSU16OFhHUmIyQ2Qyc3Z5MElJSkdMTExSRlRUUm9zZUhoLVVwcmxFdDlhZFhKNnpNZw&amp;q=https%3A%2F%2Fwww.paypal.com%2Fcgi-bin%2Fwebscr%3Fcmd%3D_donations%26business%3Dderek%2540distrotube%252ecom%26lc%3DUS%26item_name%3DDistroTube%26no_note%3D0%26currency_code%3DUSD%26bn%3DPP%252dDonationsBF%253abtn_donateCC_LG%252egif%253aNonHostedGuest
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

SOCIAL PLATFORMS: 
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ LBRY/Odysee: https://odysee.com/$/invite/@DistroTu...

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  

FREE AND OPEN SOURCE SOFTWARE THAT I USE:
🌐 Brave Browser - https://brave.com/dis872 
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
🎵 Ardour: https://ardour.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/EN1x-WFt9Lw</video:player_loc>
      <video:publication_date>2025-12-29T06:49:08.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>7298</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8221/cut-cut-sections-from-lines-of-text-video-man-pages</loc>
    <lastmod>2025-12-30T14:00:16.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/9hoTL0GP2uQ/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>&apos;cut&apos; - cut sections from lines of text - Video Man Pages</video:title>
      <video:description>The &apos;cut&apos; command is used to cut sections from lines of text.

- Print the third character (-c) on each line:
  cut -c 3 /path/to/file
  command | cut -c 3

- Print characters 5-10 of each line of a file:
  cut -c 5-10 path/to/file

- Split each line using a delimiter into fields, and print fields (-f) 2 and 5:
  cut -f 2,5 path/to/file
  NOTE The default delimiter is the TAB.

- Split each line using a specified delimiter (-d) and print field 4 and all fields after:
  cut -d &quot;:&quot; -f 4- /etc/passwd
  NOTE The /etc/passwd file uses colons to separate fields of information.

- Split each line using a specified delimiter (-d) and print field 4 and all fields previous:
  cut -d &quot;:&quot; -f -4 /etc/passwd

- Do not print lines that do not contain the delimiter (-s):
  cut -d &quot; &quot; -f -4 -s .bashrc

REFERENCED:
► https://gitlab.com/dwt1/vidman

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/9hoTL0GP2uQ</video:player_loc>
      <video:publication_date>2025-12-30T14:00:16.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>283</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8219/vibe-coding-is-the-evolution-of-programming</loc>
    <lastmod>2026-01-04T14:00:07.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/2wfs0A94_T4/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Vibe Coding Is The Evolution Of Programming</video:title>
      <video:description>We have entered a new age of programming.  It is the age of &quot;vibe coding,&quot; which is using A.I. tools like ChatGPT or Gemini to write your programs.

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/2wfs0A94_T4</video:player_loc>
      <video:publication_date>2026-01-04T14:00:07.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>870</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8217/fair-source-software-is-incredibly-unfair</loc>
    <lastmod>2026-01-12T14:01:02.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/V_L0MNy8Mpg/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Fair Source Software Is Incredibly Unfair</video:title>
      <video:description>There is a new &quot;software movement&quot; that seems to be gaining ground.  It&apos;s the &quot;fair source&quot; movement, and it&apos;s quite discriminatory in nature.  Sadly, I see some within the FOSS community actually advocating for &quot;fair source.&quot;

REFERENCED:
► https://fair.io/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/V_L0MNy8Mpg</video:player_loc>
      <video:publication_date>2026-01-12T14:01:02.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>929</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8215/the-kensington-orbit-trackball-mouse-will-it-solve-my-hand-pain</loc>
    <lastmod>2026-01-19T14:00:18.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/BZqHn8w0MGg/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>The Kensington Orbit Trackball Mouse (Will It Solve My Hand Pain?)</video:title>
      <video:description>I switched to the Kensington Expert trackball about 5 years ago.  I even did a video about it (https://www.youtube.com/watch?v=VaG4sCXTkrw).  But recently I have been having a bit of hand pain, and I suspected that the mouse was the problem.  So...I decided to try a different Kensington trackball--the Orbit! 

REFERENCED:
► https://amzn.to/45eSLvF - Kensington Orbit Trackball Mouse

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/BZqHn8w0MGg</video:player_loc>
      <video:publication_date>2026-01-19T14:00:18.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>701</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8213/my-xonsh-shell-experiment-failed-kind-of</loc>
    <lastmod>2026-01-26T14:00:25.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/Iif4GpL6yrQ/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>My Xonsh Shell Experiment Failed! (...Kind Of)</video:title>
      <video:description>Xonsh (sounds like &quot;consh&quot;) is a modern, full-featured and cross-platform python shell.  I recently switched to using Xonsh as my default user shell, but I ran into a big problem with it, mainly because I installed it the wrong way!

REFERENCED:
► https://xon.sh/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/Iif4GpL6yrQ</video:player_loc>
      <video:publication_date>2026-01-26T14:00:25.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>364</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8212/not-bald-boomer-rants-about-bad-weather</loc>
    <lastmod>2026-01-30T14:01:13.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/iN-J51qDzpk/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Not Bald Boomer Rants About Bad Weather</video:title>
      <video:description>A quick update after the ice storm that has left me without power for several days.

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/iN-J51qDzpk</video:player_loc>
      <video:publication_date>2026-01-30T14:01:13.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>217</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8211/digital-detox-and-being-self-sufficient</loc>
    <lastmod>2026-02-02T14:00:44.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/RQppXZ6H-J0/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Digital Detox And Being Self Sufficient</video:title>
      <video:description>After a severe winter storm, I&apos;ve spent the last 8 days without power.  And that got me thinking...

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/RQppXZ6H-J0</video:player_loc>
      <video:publication_date>2026-02-02T14:00:44.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1068</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8208/hey-dt-you-re-not-bald-but-you-are-wide-plus-other-comments</loc>
    <lastmod>2026-02-13T14:01:26.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/uGJ1Nao0E1Q/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Hey, DT! You&apos;re Not Bald...But You Are Wide! (Plus Other Comments)</video:title>
      <video:description>On this episode of Hey DT:

0:00 Intro
0:18 What do you think about Niri?
3:00 I know that you&apos;re not bald, but why are you wider now?
5:41 How do I properly erase everything on my SSD? Complete wipe.
7:43 Are you really editing videos in one take?
9:25 It&apos;s been 5 years since your last Guix video.
11:52 Do you have any footage of you using it (Kensington Orbit Trackball)?
12:44 Why don&apos;t you mount your /home separately? Like from a btrfs subvolume?
14:55 Don&apos;t you think you make linux more complicated and elitist?
23:44 Thanks to Patrons

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/uGJ1Nao0E1Q</video:player_loc>
      <video:publication_date>2026-02-13T14:01:26.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1500</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8207/a-quick-first-look-at-ideal-os</loc>
    <lastmod>2026-02-16T14:00:11.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/7HW1c-_mrrg/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>A Quick First Look AT iDeal OS</video:title>
      <video:description>Today, I&apos;m taking a look at the latest release of iDeal OS, based on MX Linux 25.1 and Debian 13.3 Trixie, with KDE Plasma 6 desktop environment.

REFERENCED:
► https://ideal-os.xyz/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/7HW1c-_mrrg</video:player_loc>
      <video:publication_date>2026-02-16T14:00:11.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1457</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8205/kaos-ditches-kde-plasma-for-niri</loc>
    <lastmod>2026-02-23T14:00:50.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/XOmc0Q_NX-o/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>KaOS Ditches KDE Plasma For Niri</video:title>
      <video:description>KaOS is an independent, built from-scratch Linux distribution, that for many years was built using KDE Plasma, but they&apos;ve now dropped Plasma in favor of Niri wth the Noctalia shell.

REFERENCED:
► https://kaosx.us/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/XOmc0Q_NX-o</video:player_loc>
      <video:publication_date>2026-02-23T14:00:50.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1243</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8204/cheap-fix-for-sinking-computer-chairs-and-office-chairs</loc>
    <lastmod>2026-02-26T14:00:25.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/I_urqL2bEX8/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Cheap Fix For Sinking Computer Chairs And Office Chairs</video:title>
      <video:description>Ever had a computer chair or office chair that was no longer able to maintain its height?  There&apos;s a few DIY fixes that involve cutting PVC pipe and using metal clamps, but if you&apos;re like me, you probably would prefer a ready-made, out-of-the-box fix.  I found a cheap product that works!

► https://amzn.to/3ZWguh4 - Office Chair Hero Clamps

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/I_urqL2bEX8</video:player_loc>
      <video:publication_date>2026-02-26T14:00:25.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>213</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8200/mediocrity-is-destroying-everything-including-our-software</loc>
    <lastmod>2026-03-07T14:01:03.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/fjI0IRsjizA/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Mediocrity Is Destroying Everything...Including Our Software</video:title>
      <video:description>I see nothing but mediocrity in the world.  Mediocrity is in our music, movies, sports, culture, software, etc.  And it frustrates the hell out of me.

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/fjI0IRsjizA</video:player_loc>
      <video:publication_date>2026-03-07T14:01:03.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>653</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8201/a-first-look-at-nebios-ubuntu-based-linux-with-wayfire</loc>
    <lastmod>2026-03-05T14:00:30.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/J_PfMreLxA0/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>A First Look At NebiOS (Ubuntu-Based Linux With Wayfire)</video:title>
      <video:description>NebiOS is a new Linux distribution based on Ubuntu.  It uses its own NebiDE desktop environment based on the Wayfire compositor.

REFERENCED:
► https://nebios.org/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/J_PfMreLxA0</video:player_loc>
      <video:publication_date>2026-03-05T14:00:30.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1187</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8229/tweaking-the-look-of-the-qtile-panel</loc>
    <lastmod>2025-12-07T14:01:19.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/lzSvFAGV3ms/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Tweaking The Look Of The Qtile Panel</video:title>
      <video:description>Recently, I had to do a fresh install on my office workstation.  I moved from Arch over to CachyOS.  And along the way, my qtile config seems a bit messy.  So let&apos;s clean it up!

REFERENCED:
► https://gitlab.com/dwt1/dotfiles/-/tree/master/.config/qtile?ref_type=heads

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/lzSvFAGV3ms</video:player_loc>
      <video:publication_date>2025-12-07T14:01:19.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>882</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8232/chat-with-patrons-nov-30-2025</loc>
    <lastmod>2025-12-01T06:25:17.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/SJiT4Xz3StI/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Chat With Patrons (Nov 30, 2025)</video:title>
      <video:description>This Video Chat will be for my Patrons!  Patrons can join the video call via Zoom which is available on Linux, Mac and Windows.  For those wishing to join the chat but are not a Patron, consider joining my Patreon ( https://www.patreon.com/distrotube ).  I will post a link to the Zoom chat on my Patreon page a few minutes prior to the stream.  Hope to see you guys there!

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.youtube.com/redirect?event=channel_banner&amp;redir_token=QUFFLUhqbFF3eGpGSzM5Vk1PMGlENllqckpHeERYWWRld3xBQ3Jtc0tuUVNSYno2bjFGSG1MTGdfYkJnanhhU1o3ODdxejVWZzNTeHhLX0p4VUIwR01PMmF1MEtpdWVYMnppVXBuTmluSU16OFhHUmIyQ2Qyc3Z5MElJSkdMTExSRlRUUm9zZUhoLVVwcmxFdDlhZFhKNnpNZw&amp;q=https%3A%2F%2Fwww.paypal.com%2Fcgi-bin%2Fwebscr%3Fcmd%3D_donations%26business%3Dderek%2540distrotube%252ecom%26lc%3DUS%26item_name%3DDistroTube%26no_note%3D0%26currency_code%3DUSD%26bn%3DPP%252dDonationsBF%253abtn_donateCC_LG%252egif%253aNonHostedGuest
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

SOCIAL PLATFORMS: 
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ LBRY/Odysee: https://odysee.com/$/invite/@DistroTu...

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  

FREE AND OPEN SOURCE SOFTWARE THAT I USE:
🌐 Brave Browser - https://brave.com/dis872 
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
🎵 Ardour: https://ardour.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/SJiT4Xz3StI</video:player_loc>
      <video:publication_date>2025-12-01T06:25:17.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>7230</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8233/i-use-cachyos-btw</loc>
    <lastmod>2025-11-27T14:01:18.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/hQsQJ7uhDGA/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>I use CachyOS, btw!</video:title>
      <video:description>So I&apos;ve had the same installation of Arch running for about 2-3 years now, I was experiencing some serious issues, especially with recording audio.  So I decided to hop away from Arch and move to CachyOS.  And...I still had issues. 

REFERENCED:
► https://cachyos.org/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/hQsQJ7uhDGA</video:player_loc>
      <video:publication_date>2025-11-27T14:01:18.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1091</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8234/cavalier-is-an-audio-visualizer-for-linux</loc>
    <lastmod>2025-11-24T14:00:07.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/2g-ceq7Jwc0/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Cavalier Is An Audio Visualizer For Linux</video:title>
      <video:description>Cavalier is a neat little app that is an audio visualizer.  In other words, when you play music or video or anything with audio...it draws some fancy visualizations as eye candy.

REFERENCED:
► https://github.com/NickvisionApps/Cavalier

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/2g-ceq7Jwc0</video:player_loc>
      <video:publication_date>2025-11-24T14:00:07.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>320</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8235/touch-change-file-timestamps-video-man-pages</loc>
    <lastmod>2025-11-21T14:00:26.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/JMIQwysKk1c/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>&apos;touch&apos; - change file timestamps - Video Man Pages</video:title>
      <video:description>The &apos;touch&apos; command is used to change file timestamps or to create empty files.

- Create empty files:
  touch file1 file2 ...

- Set file [a]ccess or [m]odification times to the current one:
  touch -a|m file1 file2 ...

- Set file [a]ccess or [m]odification times to the current one but &quot;don&apos;t create&quot; files if they don&apos;t exist:
  touch -c -a|m file1 file2 ...
  NOTE Use &apos;stat file1&apos; to view file info.

- Set the file [t]ime to a specific value and don&apos;t create file if it doesn&apos;t exist:
  touch -c -t YYYYMMDDHHMM.SS file1
  NOTE: touch -c -t 202511160813.00 file1

- Set the files&apos; timestamp to the reference file&apos;s timestamp:
  touch -r reference_file file1 file2 ...

- Set the timestamp by parsing a string:
  touch -d &quot;last year|5 hours|next thursday|nov 14|...&quot; file1

- Create multiple files with an increasing number:
  touch file{1..10}

- Create multiple files with a letter range:
  touch file{a..z}

- Cat a file that containts a list of filenames into touch:
  NOTE The file named &quot;list&quot; contains the following...
  #+begin_example
  file1.txt
  file2.txt
  file3.txt
  #+end_example
  cat list | xargs touch
    -OR-
  touch $(cat list)

REFERENCED:
► https://gitlab.com/dwt1/vidman

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/JMIQwysKk1c</video:player_loc>
      <video:publication_date>2025-11-21T14:00:26.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>572</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8236/hey-dt-it-s-nice-to-see-you-screw-things-up</loc>
    <lastmod>2025-11-18T14:01:39.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/vH-iCfqfLU8/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Hey, DT! It&apos;s Nice To See You Screw Things Up...</video:title>
      <video:description>On this edition of HEY DT:
0:00 Intro
0:20 It&apos;s nice to see someone that actually shows when things dont go according to the plans sometimes. Have been holding off on modernizing my sources list for some weeks now...
1:51 I feel the answer is one of those Yes AND No.  I think choice is great...it becomes a deficit when developers claim this as to why they won&apos;t make apps for Linux.  The truth, as in most cases, is this is NOT really a valid excuse.  Devs could decide to package their apps in a format like Flatpak...
4:36 A Hey DT podcast would be great, except ffmpeg already makes podcasts for me.
6:34 Since a lot of your viewers are people who sit in front of computers alot, it should be a good idea to make a video about all of diseases that come with such a life style...
9:34 Feature request. It would be awesome if you made a video series on how to become a YouTuber using only Linux software. Preferably FOSS only...
12:49 What are you using now that Arco is no more? Did you move to Kiro to stay with Erik?
15:07 Something that has caught my interest as of late is the idea of installing Debian &quot;the Arch way&quot; by using debootstrap...
21:19 I am completely redoing my system and have decided to give emacs a real go instead of vim/neovim.  I am not using doom or evil mode though..I want to use emacs, not vim/emacs.

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️</video:description>
      <video:player_loc>https://www.youtube.com/embed/vH-iCfqfLU8</video:player_loc>
      <video:publication_date>2025-11-18T14:01:39.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>1337</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8237/send-files-over-local-network-with-localsend</loc>
    <lastmod>2025-11-15T14:00:02.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/0jqPu31ZvOc/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Send Files Over Local Network With LocalSend</video:title>
      <video:description>LocalSend is a free, open-source app that allows you to securely share files and messages with nearby devices over your local network without needing an internet connection.  LocalSend is available on Windows, Mac, Linux, Android and iOS.

REFERENCED:
► https://github.com/localsend/localsend

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/0jqPu31ZvOc</video:player_loc>
      <video:publication_date>2025-11-15T14:00:02.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>470</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8238/these-linux-apps-keep-me-from-going-back-to-windows</loc>
    <lastmod>2025-11-12T14:00:28.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/H7W4k9YXKGM/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>These Linux Apps Keep Me From Going Back To Windows</video:title>
      <video:description>Windows users sometimes claim that they can&apos;t switch to Linux because they would miss their Windows apps.  I agree!  In fact, as a longtime Linux user, I could NEVER go back to Windows now that I&apos;ve grown accustomed to all these fantastic Linux apps!

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/H7W4k9YXKGM</video:player_loc>
      <video:publication_date>2025-11-12T14:00:28.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>251</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8239/a-quick-first-look-at-fedora-43</loc>
    <lastmod>2025-11-09T14:01:18.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/p9dmUn4IeT4/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>A Quick First Look At Fedora 43</video:title>
      <video:description>In this video, I&apos;m going to run through a quick installation and first look at Fedora 43 with the GNOME desktop.  

REFERENCED:
► https://fedoraproject.org/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/p9dmUn4IeT4</video:player_loc>
      <video:publication_date>2025-11-09T14:01:18.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>919</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8241/trmnl-is-an-open-source-e-ink-display</loc>
    <lastmod>2025-11-03T14:00:18.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/7OSUgn0f6VU/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>TRMNL Is An Open Source E Ink Display</video:title>
      <video:description>TRMNL is an open source e-ink display that helps you stay focused.  It has a variety of plugins to display a variety of information, including: calendar, weather, todo lists, github actions, stock quotes, youtube analytics, motivation quotes, bible verses, and much more.

REFERENCED:
► https://usetrmnl.com/

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/7OSUgn0f6VU</video:player_loc>
      <video:publication_date>2025-11-03T14:00:18.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>782</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8242/it-s-rarely-black-or-white-it-s-usually-gray</loc>
    <lastmod>2025-10-31T13:00:01.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/-Y6h-VK4hSo/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>It&apos;s Rarely Black Or White...It&apos;s Usually Gray!</video:title>
      <video:description>Rarely is there only two sides to an argument.  Usually there&apos;s at least a third choice that you haven&apos;t even considered!

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/-Y6h-VK4hSo</video:player_loc>
      <video:publication_date>2025-10-31T13:00:01.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>455</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8243/arch-the-clown-he-s-terrifying-btw</loc>
    <lastmod>2025-10-29T13:01:49.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/lmPu_Nk67VY/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Arch, The Clown (he&apos;s terrifying, btw!)</video:title>
      <video:description>Coming to theaters this Halloween....

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/lmPu_Nk67VY</video:player_loc>
      <video:publication_date>2025-10-29T13:01:49.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>74</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8244/chat-with-patrons-oct-26-2025</loc>
    <lastmod>2025-10-27T05:16:27.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/UDTuuQFCkOg/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Chat With Patrons (Oct 26, 2025)</video:title>
      <video:description>This Video Chat will be for my Patrons!  Patrons can join the video call via Zoom which is available on Linux, Mac and Windows.  For those wishing to join the chat but are not a Patron, consider joining my Patreon ( https://www.patreon.com/distrotube ).  I will post a link to the Zoom chat on my Patreon page a few minutes prior to the stream.  Hope to see you guys there!

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.youtube.com/redirect?event=channel_banner&amp;redir_token=QUFFLUhqbFF3eGpGSzM5Vk1PMGlENllqckpHeERYWWRld3xBQ3Jtc0tuUVNSYno2bjFGSG1MTGdfYkJnanhhU1o3ODdxejVWZzNTeHhLX0p4VUIwR01PMmF1MEtpdWVYMnppVXBuTmluSU16OFhHUmIyQ2Qyc3Z5MElJSkdMTExSRlRUUm9zZUhoLVVwcmxFdDlhZFhKNnpNZw&amp;q=https%3A%2F%2Fwww.paypal.com%2Fcgi-bin%2Fwebscr%3Fcmd%3D_donations%26business%3Dderek%2540distrotube%252ecom%26lc%3DUS%26item_name%3DDistroTube%26no_note%3D0%26currency_code%3DUSD%26bn%3DPP%252dDonationsBF%253abtn_donateCC_LG%252egif%253aNonHostedGuest
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

SOCIAL PLATFORMS: 
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ LBRY/Odysee: https://odysee.com/$/invite/@DistroTu...

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  

FREE AND OPEN SOURCE SOFTWARE THAT I USE:
🌐 Brave Browser - https://brave.com/dis872 
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
🎵 Ardour: https://ardour.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/UDTuuQFCkOg</video:player_loc>
      <video:publication_date>2025-10-27T05:16:27.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>7700</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8246/diablo-2-resurrected-live-leveling-up-and-magic-finding</loc>
    <lastmod>2025-10-21T12:41:38.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/8b7b4qVjmV0/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Diablo 2 Resurrected LIVE - Leveling Up And Magic Finding</video:title>
      <video:description>So today, I&apos;m going to be playing a bit of D2R live on stream.  I may do some Baal runs to level up some characters.  Or I may do some magic finding.  Or I may just die repeatedly because I suck at gaming (but probably not).  :D

MY VIDEO ON INSTALLING D2R ON LINUX:
► https://www.youtube.com/watch?v=sHK6DS178Q8

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/8b7b4qVjmV0</video:player_loc>
      <video:publication_date>2025-10-21T12:41:38.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>5471</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
  <url>
    <loc>https://vidert.com/v/systems-programming/video/8247/do-i-do-any-real-work-on-my-linux-pc</loc>
    <lastmod>2025-10-18T13:02:00.000Z</lastmod>
    <changefreq>weekly</changefreq>
    <priority>0.5</priority>
    <video:video>
      <video:thumbnail_loc>https://i.ytimg.com/vi/zKhL3FRMW0c/maxresdefault.jpg</video:thumbnail_loc>
      <video:title>Do I Do Any &quot;Real Work&quot; On My Linux PC?</video:title>
      <video:description>SPOILER ALERT: The answer is &quot;yes.&quot;

WANT TO SUPPORT THE CHANNEL? 
💰 Patreon: https://www.patreon.com/distrotube 
💳 Paypal: https://www.paypal.com/donate/?hosted_button_id=MW3ZFGS8Q9JGW
🛍️ Amazon: https://amzn.to/2RotFFi
👕 Teespring: https://teespring.com/stores/distrotube

DT ON THE WEB:
🕸️ Website: http://distro.tube
📁 GitLab: https://gitlab.com/dwt1  
🗨️ Mastodon: https://fosstodon.org/@distrotube
👫 Reddit: https://www.reddit.com/r/DistroTube/
📽️ Odysee: https://odysee.com/@DistroTube:2

FREE AND OPEN SOURCE SOFTWARE THAT I LIKE:
🌐 Brave Browser - https://brave.com/
📽️ Open Broadcaster Software: https://obsproject.com/
🎬 Kdenlive: https://kdenlive.org
🎨 GIMP: https://www.gimp.org/
💻 VirtualBox: https://www.virtualbox.org/
🗒️ Doom Emacs: https://github.com/hlissner/doom-emacs

Your support is very much appreciated. Thanks, guys!</video:description>
      <video:player_loc>https://www.youtube.com/embed/zKhL3FRMW0c</video:player_loc>
      <video:publication_date>2025-10-18T13:02:00.000Z</video:publication_date>
      <video:uploader>DistroTube</video:uploader>
      <video:duration>728</video:duration>
      <video:family_friendly>yes</video:family_friendly>
      <video:live>no</video:live>
    </video:video>
  </url>
</urlset>