Latest Posts
📅 2023-02-16
✍️ Bart Schelstraete
If you still have a Windows system somewhere and you want to transfer files to the Deck, you can easily transfer those files using SSH/SCP. By default, the Deck has an SSH server installed, but it is…
Read more →
📅 2023-02-15
✍️ Bart Schelstraete
With the PowerShell script below, you can check TLS settings on Windows Server. Function Get-RegValue { [CmdletBinding()] Param ( # Registry Path [Parameter(Mandatory = $true, Position = 0)] [string]…
Read more →
📅 2023-02-14
✍️ Bart Schelstraete
Well, SQL statements can use a lot of log space, and you most probably want to find out which SQL statement is using all of your log space. The T-SQL code below will show you the SQL statements using…
Read more →
📅 2022-12-28
✍️ Bart Schelstraete
First off, you should never shrink a database file unless you know it won't need the space back again. (There are some caveats to that statement, but it mostly holds true.) If that is the space the…
Read more →
📅 2022-12-28
✍️ Bart Schelstraete
Personally, I didn't like installing special plugins on the Steam Deck, just because... I don't know :). Then I noticed that there is a plugin for 'SteamGridDB'. What is SteamGridDB? Well, that's a…
Read more →
📅 2022-12-28
✍️ Bart Schelstraete
In order to enter the BIOS of your Steam Deck, you can follow the procedure below. 1. Hold the Power button on your Steam Deck. 2. Turn off your Steam Deck by selecting Shut Down from the options…
Read more →
📅 2022-12-14
✍️ Bart Schelstraete
After a while, the msdb database can be overloaded with backup history, and clearing that history can be a pain. You can use the T-SQL code below to clear the msdb backup history in incremental steps…
Read more →
📅 2022-01-24
✍️ Bart Schelstraete
Using WP-CLI you can create MO files from PO files using the following command: sudo -u MYUSER /usr/local/bin/wp i18n make-mo /var/www/website.be/web/wp-content/plugins/myplugin/languages
Read more →
📅 2022-01-21
✍️ Bart Schelstraete
1. Begin by pvcreate'ing the new disk. This is the disk from the new storage array to which we want to migrate. # pvcreate /dev/mapper/mpathY 2. Now, add this disk into the data_vg Volume Group: #…
Read more →
📅 2022-01-18
✍️ Bart Schelstraete
With systemd you can configure the service so that it automatically restarts in case it crashes. It's enough to add the "restart" option to the [Service] stanza within the systemd service…
Read more →