- 1/4 cup extra-virgin olive oil
- 2 tbsp balsamic vinegar
- 1 tbsp maple syrup
- 1/2 tsp Dijon mustard
- salt and pepper to taste
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parse_git_branch() { | |
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/' | |
} | |
export PS1="\[\033[0;35m\]\h\[\033[0;33m\] \W\[\033[31m\]\$(parse_git_branch)\[\033[00m\]: " | |
export CLICOLOR=1 | |
export TERM=xterm-color | |
export LSCOLORS=ExFxCxDxBxegedabagacad |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -o allexport | |
source .env | |
set +o allexport |
I hereby claim:
- I am twalling on github.
- I am twalling (https://keybase.io/twalling) on keybase.
- I have a public key whose fingerprint is 5808 8B20 4000 757C 9F3B 8CF7 41DF 80B4 5C32 EBF3
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo useradd -m -U -s /bin/bash USERNAME | |
sudo mkdir /home/USERNAME/.ssh | |
sudo chmod 700 /home/USERNAME/.ssh | |
sudo touch /home/USERNAME/.ssh/authorized_keys | |
sudo chown -R USERNAME:USERNAME /home/USERNAME/.ssh | |
sudo chmod 600 /home/USERNAME/.ssh/authorized_keys | |
if sudo | |
sudo usermod -a -G sudo USERNAME |
NewerOlder