Home
Fabian Bees
Cancel

Ungroup Taskbar in Windows 11

If you are also anoyed with the new Taskbar in Windows 11 and you rather like the old layout from Windows 10, where you could ungroup each individual window to see all at once and switch quickly be...

Batch convert .tif images to .heic images (with preserving EXIF metadata)

Intall the required tools imagemagick and exiftool needs to be installed. sudo apt install imagemagick exiftool Convert .tif to .heic mogrify -verbose -format heic *.tif or for x in *.tif; d...

Using WSL 2 to create a Full image of a given drive with on the fly compression

If you want to access a Linux disk format that isn’t supported by Windows, you can use WSL 2 to mount your disk and access its content. This tutorial will cover the steps to identify the disk and ...

Signing Git-commits in Gitlab or Github

Intall the required tools gpg needs to be installed. gpg --version sudo apt install gpg Generating a GPG key If you don’t already have a GPG key, the following steps can help you get started: ...

A simple way to update all your docker containers with watchtower

A simple way to update all your docker containers with watchtower Watchtower is a docker container, which can help you with updating your docker containers without a complicates process. Simply r...

Code inline

Code Block Markdown symbols ``` can easily create a code block as following examples. This is a common code snippet, without syntax highlight and line number. Specific Language Using ```langua...