hello world
curl -fsSL https://tailscale.com/install.sh | sh
curl -sSf -L https://install.lix.systems/lix | sh -s -- install
curl -sfL https://direnv.net/install.sh | bash
~/.gitconfig:
[user]
email = [email protected]
name = kass
[gitlab]
user = gitkass
[github]
user = gitkass
[includeIf "gitdir:~/devgl/"]
path = ~/.gitconfig.gitlab
[includeIf "gitdir:~/devgh/"]
path = ~/.gitconfig.github
[includeIf "gitdir:~/hub/"]
path = ~/.gitconfig.github
...
~/.gitconfig.gitlab
[user]
email = [email protected]
name = gitkass
[gitlab]
user = gitkass
~/.gitconfig.github
[user]
name = gitkass
email = [email protected]
[github]
user = gitkass
Note
The following information is useful.
Tip
Tip of the day.
Important
This is something important you should know.
Caution
You need to be very careful about the following.
Warning
The following would be dangerous.
IMMEDIATE=0
NEVER=-1
delay="$NEVER" sudo fdesetup authrestart -delayminutes "$delay"
LEVEL_ZERO_FILL=0 # Single-pass zero fill erase.
LEVEL_ONE_RANDOM_PASS=1 #Single-pass random fill erase.
LEVEL_SEVEN_ZERO_ONE_RANDOM_PASS=2 # 2 #Seven-pass erase, consisting of zero fills and all-ones fills plus a final random fill.
LEVEL_GUTMANN=3 #Gutmann algorithm 35-pass erase.
LEVEL_THREE_PASS=4 #Three-pass erase, consisting of two random fills plus a final zero fill.
erase_level="$LEVEL_ONE_RANDOM_PASS"
target_disk="disk4"
diskutil secureErase "$erase_level" "/dev/$target_disk"
