Useful information.
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
# Useful things I keep in my bash profile | |
alias untar='tar -zxvf'; | |
alias k='kubectl'; | |
alias c='docker-compose'; | |
alias d='docker'; | |
alias hackon='code . --add && github open .'; | |
alias yolo='git commit --amend --no-edit && git push -f'; | |
killport () { |
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
const discogs = { | |
oauth_consumer_key: "xxxxx", | |
oauth_signature: "xxxxx", | |
} | |
const Auth = `OAuth | |
oauth_consumer_key="${discogs.consumer_key}", | |
# notice the ampersand after the consumer secret: | |
oauth_signature="${discogs.consumer_secret}&", | |
oauth_nonce="${Date.now()}", |
NewerOlder