Linux

  • NixOS
  • Bash for noobs

Docker

  • Getting started
  • Useful Docker commands

Powershell

  • Useful scripts
  • Terminal & PowerShell

Build tool & automation

  • Maven

Other

  • Falcon LogScale
  • Git
  • Regex

Windows

  • AutoHotkey
  • Komorebi
  • Windows Subsystem for Linux
  • Home
  • Tags
  • Windows

Windows

AutoHotkey

  7 Jul 2024

Get started

  1. Install with choco install autohotkey.portable.
  2. Create your .ahk file.
  3. Make sure to set AutoHotkey.exe as the default program to open …
 AHK   Windows   AutoHotkey   Scripts 

Komorebi

  7 Jul 2024

Get started

Komorebi is a window tiling manager for Windows.

  1. Install it with choco install komorebi.
  2. Create a komorebi.ahk file with your desired …
 Komorebi   Windows   Scripts 

Useful scripts

  23 May 2023

Little helper script

#! /usr/bin/pwsh

# TODO: Consider using named parameters which require '-':
# param ($f1, $f2)
$f=$args[0]
$arg=$args[1] …
 Windows   Terminal   PowerShell   Scripts 

Terminal & PowerShell

  17 Mar 2023

Remember

  • Windows Terminal documentation
  • Use CTRL + Space to show “MenuComplete” i.e. available options based on the input provided so far …
 Windows   Terminal   PowerShell 

Getting started

  14 Mar 2023

Install Docker


Windows

  • Download Docker for Windows from www.docker.com
  • Check the system requirements for Docker: …
 Docker   Linux   Windows 

Windows Subsystem for Linux

  14 Mar 2023

How to install

wsl --install # This will install Ubuntu

wsl -l -v # List your installed Linux distributions and check the version of WSL each is set …
 WSL   Linux   Windows