This file contains 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
# Specify cipher suite manually | |
KexAlgorithms [email protected],diffie-hellman-group-exchange-sha256,curve25519-sha256,diffie-hellman-group18-sha512,diffie-hellman-group16-sha512 | |
Ciphers [email protected],aes256-ctr,aes192-ctr,aes128-ctr,[email protected],[email protected] | |
MACs [email protected],[email protected],[email protected] |
This file contains 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
#Red Root Prompt | |
PS1='[\[\e[0;31m\]\u@\h \[\e[1;34m\]\w\[\e[m\]] \[\e[1;31m\]\$\[\e[m\] ' | |
# Just red hash# | |
PS1='[\u@\h \w]\[\e[1;31m\]\$\[\e[m\] ' |
This file contains 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
### Keybase proof | |
I hereby claim: | |
* I am gijack on github. | |
* I am gi_jack (https://keybase.io/gi_jack) on keybase. | |
* I have a public key ASA_KtSFPNUuGafnwz1CeQtaBIrCakYLTKtcr6vAI2qBDwo | |
To claim this, I am signing this object: |
This file contains 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
REPO_URL="ssh://[email protected]/repository.git" | |
git config --add remote.all.url $REPO_URL |
This file contains 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
import json | |
import subprocess | |
def byte2str(in_string): | |
'''convert bytes into string''' | |
output = str(in_string.strip()) | |
output = output.lstrip("b") | |
output = output.strip("\'") | |
return output |
This file contains 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
def slugify(in_text): | |
'''return a slug. Remove spaces, and lowercase''' | |
out_text = in_text.strip() | |
out_text = out_text.lower() | |
out_text = out_text.replace(" ","") | |
return out_text | |
import sys | |
def os_supported(): |