

<feed xmlns="http://www.w3.org/2005/Atom">
  <id>http://0.0.0.0:4000/</id>
  <title>Blog | THE SORSKOD</title>
  <subtitle>Technical documentation, guides, powered by Jekyll.</subtitle>
  <updated>2026-06-05T06:28:58-04:00</updated>
  <author>
    <name>Jorge Jorge</name>
    <uri>http://0.0.0.0:4000/</uri>
  </author>
  <link rel="self" type="application/atom+xml" href="http://0.0.0.0:4000/feed.xml"/>
  <link rel="alternate" type="text/html" hreflang="en"
    href="http://0.0.0.0:4000/"/>
  <generator uri="https://jekyllrb.com/" version="4.2.2">Jekyll</generator>
  <rights> © 2026 Jorge Jorge </rights>
  <icon>/assets/img/favicons/favicon.ico</icon>
  <logo>/assets/img/favicons/favicon-96x96.png</logo>


  
  <entry>
    <title>Find and delete multiple file types in Linux using the command line</title>
    <link href="http://0.0.0.0:4000/post/find-and-delete-multiple-file-types" rel="alternate" type="text/html" title="Find and delete multiple file types in Linux using the command line" />
    <published>2023-03-02T09:00:00-05:00</published>
  
    <updated>2023-03-02T09:00:00-05:00</updated>
  
    <id>http://0.0.0.0:4000/post/find-and-delete-multiple-file-types</id>
    <content src="http://0.0.0.0:4000/post/find-and-delete-multiple-file-types" />
    <author>
      <name>Jorge Jorge</name>
    </author>

  
    
    <category term="unraid" />
    
    <category term="linux" />
    
  

  
    <summary>
      





      The Script

If you need to delete multiple file types in Linux, you can use the following command in the terminal:

Please note that this command will permanently delete the files, so use it with caution and only in directories where you have permission to delete files. 
find . \( -name "*.txt" -or -name "*.exe" \) | pv -s $(find . \( -name "*.txt" -or -name "*.exe" \) | wc -c) | xargs -I {} rm...
    </summary>
  

  </entry>

  
  <entry>
    <title>Script to Delete User Profiles with PowerShell GUI</title>
    <link href="http://0.0.0.0:4000/post/scripts/win10/delete-user-profiles" rel="alternate" type="text/html" title="Script to Delete User Profiles with PowerShell GUI" />
    <published>2023-03-02T09:00:00-05:00</published>
  
    <updated>2023-03-02T09:00:00-05:00</updated>
  
    <id>http://0.0.0.0:4000/post/scripts/win10/delete-user-profiles</id>
    <content src="http://0.0.0.0:4000/post/scripts/win10/delete-user-profiles" />
    <author>
      <name>Jorge Jorge</name>
    </author>

  
    
    <category term="win10" />
    
    <category term="scripts" />
    
  

  
    <summary>
      





      PowerShell Script to find, select and delete user profiles Windows machines.

$deleteProfiles = Get-WmiObject -Class Win32_UserProfile | Where-Object {
    $_.LocalPath -notlike "C:\Windows*" 
        } | Select-Object PSComputerName, LocalPath, LastUseTime, SID | Out-GridView -PassThru -Title "Select profiles to delete"

if ($deleteProfiles -ne $null) {
    Write-Output "The following profiles...
    </summary>
  

  </entry>

  
  <entry>
    <title>Vim basic</title>
    <link href="http://0.0.0.0:4000/post/vim-basic" rel="alternate" type="text/html" title="Vim basic" />
    <published>2023-02-08T09:00:00-05:00</published>
  
    <updated>2023-02-08T09:00:00-05:00</updated>
  
    <id>http://0.0.0.0:4000/post/vim-basic</id>
    <content src="http://0.0.0.0:4000/post/vim-basic" />
    <author>
      <name>Jorge Jorge</name>
    </author>

  
    
    <category term="dev" />
    
  

  
    <summary>
      





      Vim Key Maps: A Beginner’s Guide

Vim is a powerful text editor that has been around for decades. While it may seem overwhelming at first, once you learn a few basic key maps, you’ll find that Vim is a highly efficient and customizable tool for editing text.

Here is a list of some of the most commonly used key maps in Vim:

Navigation


  h: Move cursor one character to the left
  j: Move curs...
    </summary>
  

  </entry>

  
  <entry>
    <title>Upgrade Samsung NVMe Firmware on Unraid</title>
    <link href="http://0.0.0.0:4000/post/upgrade-samsung-nvme-firmware" rel="alternate" type="text/html" title="Upgrade Samsung NVMe Firmware on Unraid" />
    <published>2022-12-12T09:00:00-05:00</published>
  
    <updated>2022-12-12T09:00:00-05:00</updated>
  
    <id>http://0.0.0.0:4000/post/upgrade-samsung-nvme-firmware</id>
    <content src="http://0.0.0.0:4000/post/upgrade-samsung-nvme-firmware" />
    <author>
      <name>Jorge Jorge</name>
    </author>

  
    
    <category term="docker" />
    
    <category term="unraid" />
    
    <category term="samsung" />
    
    <category term="firmware" />
    
    <category term="nvme" />
    
    <category term="ssd" />
    
    <category term="upgrade" />
    
  

  
    <summary>
      





      Upgraded some NVMe/SSD firmware today, the process is fairly simple.

Overview

  Upgrade Samsung NVMe/SSD Firmware
  Identify Drive model/version
  Download and Install
  Extract/Run


Identify Drive model/version
Note your NVMe/SSD model and firmware version you have. Upgrade may or may not apply as you may already be in the latest firmware available.



Download and Install Firmware

Go to t...
    </summary>
  

  </entry>

  
  <entry>
    <title>Jira Service Desk on Unraid</title>
    <link href="http://0.0.0.0:4000/post/jira-service-desk" rel="alternate" type="text/html" title="Jira Service Desk on Unraid" />
    <published>2022-06-10T10:00:00-04:00</published>
  
    <updated>2022-06-10T10:00:00-04:00</updated>
  
    <id>http://0.0.0.0:4000/post/jira-service-desk</id>
    <content src="http://0.0.0.0:4000/post/jira-service-desk" />
    <author>
      <name>Jorge Jorge</name>
    </author>

  
    
    <category term="cloud" />
    
    <category term="self-hosted" />
    
  

  
    <summary>
      





      Overview

  What is Jira Service Desk
  Installation and Prerequisites
  Jira requirements
  MySQL database/configuration
  MySQL database JDBC driver/connector
  Jira activations
  Connecting Jira to MySQL



What is Jira Service Desk.
‘Jira Service Desk’ is a fully featured service desk tool used by mordent IT teams. Empowers teams to deliver great service experiences and ensures your employe...
    </summary>
  

  </entry>

</feed>


