Table of contents
  1. GitHub Desktop
  2. GitHub CLI
  3. GitLab CLI
    1. gitlab cli Docs
  4. 1Password
  5. Docker Desktop
  6. Display Link
  7. Obsidian
    1. Plugins
      1. GitHub Publisher
      2. Obsidian Git
      3. Obsidian TOC
  8. Zeal Documentation Browser
  9. For Mac
    1. Rectangle
    2. Cheat Sheet
    3. Mission Control Plus
    4. Amphetamine
    5. BetterDisplay
    6. Monitor Control
    7. HomeBrew
      1. Install
  10. For Windows
    1. WSL
    2. Powertoys
    3. Ubuntu Subsystem
      1. Install
        1. powershell
          1. download Ubuntu
          2. extract the file
          3. set path
          4. install WSL






For Mac



For Windows

  • WSL

  • Powertoys

  • Ubuntu Subsystem

    Install

    • powershell

      • download Ubuntu
         Invoke-WebRequest -Uri https://aka.ms/wsl-ubuntu-1604 -OutFile Ubuntu.zip -UseBasicParsing
        
      • extract the file
        Expand-Archive ./Ubuntu.zip ./Ubuntu
        
      • set path
        $userenv = [System.Environment]::GetEnvironmentVariable("Path", "User")
        [System.Environment]::SetEnvironmentVariable("PATH", $userenv + $(Get-Location).Path + "\Ubuntu", "User")
        
      • install WSL
        Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux
        
        • Now that everything is in place, please restart the server. After the restart, open up Powershell again and run Ubuntu. You will
          be asked to create a new UNIX user

           cd Ubuntu
           ubuntu1604.exe
          
        • Now you can upgrade to the latest version of Ubuntu by this script:

           sudo apt-get update
           sudo apt-get upgrade