tarsnap
⚡ SSH Tunnel In the isolated host, edit hosts: 127.0.0.1 localhost v1-0-0-server.tarsnap.com In the connected host, ssh into isolated host with port forwarding: ssh -R 9279:v1-0-0-server.tarsnap.com:9279 isolated-host
⚡ SSH Tunnel In the isolated host, edit hosts: 127.0.0.1 localhost v1-0-0-server.tarsnap.com In the connected host, ssh into isolated host with port forwarding: ssh -R 9279:v1-0-0-server.tarsnap.com:9279 isolated-host
z#academics #template Book ❤️ LaTeX Templates » kaobook LaTeX Templates » Tufte-Style Book Academic Paper LaTeX Templates » Public Library of Science (PLOS) Theses LaTeX Templates » Classicthesis Typographic Thesis LaTeX Templates » Maggi Memoir Thesis
Retrospective Templates Start, Stop, Continue What should the team start doing? What should the team stop doing? What should the team continue doing? Sailboat Goals Risks Helping team Delaying team 4 L’s Learned Liked Loathed (Disliked) Longed for References 4 L’s Exercise 5 fun sprint retrospective ideas with templates - Work Life by Atlassian
※ source § Definitions arr = [1, 2, 3, 4, 5, 6, 7, 8] § Rust arr[1..5] //=> [2, 3, 4, 5] arr[1..=5] //=> [2, 3, 4, 5, 6] § Golang arr[1:5] //=> [2, 3, 4, 5] § Python…
Tips How to get the source directory of a Bash script from within the script itself? ※ source #!/bin/bash DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )" How to obtain the first letter in a Bash variable?…