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
  • Linux

Linux

NixOS

  24 Jun 2024

Fetch files without Flakes

let
    source = pkgs.fetchurl {
      url = "https://somewebsite/somefile.png";
      sha256 = "{hash}"; …
 Linux   NixOS   Nix 

Bash for noobs

  16 Mar 2023

Basic Bash commands

Selected basics

ls # List contents of directory
Add -1 to display results in a single column. Add -l to see more details. Add …
 Bash   Linux 

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