Linux

  • NixOS
  • Bash for noobs

Docker

  • Getting started
  • Useful Docker commands

PowerShell

  • Useful scripts
  • PowerShell
  • Terminal

Build tool & automation

  • Maven

Other

  • Yazi
  • Falcon LogScale
  • Git
  • Regex

Windows

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

Linux

NixOS

  24 Jun 2024
Fetch files without Flakes let source = pkgs.fetchurl { url = "https://somewebsite/somefile.png"; sha256 = "{hash}"; }; in { …
 Linux   NixOS   Nix 

Bash for noobs

  16 Mar 2023
Basic Bash commands Refresh/reload profile . ~/.bashrc Create a symlink ln -s [target_path] [link_path] # Example: Links the .ssh folder inside a WSL …
 Bash   Linux 

Getting started

  14 Mar 2023
Install Docker Windows Windows Download Docker for Windows from www.docker.com Check the system requirements for Docker: Install on Windows | 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