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