I hereby claim:
- I am adcreare on github.
- I am commscentral (https://keybase.io/commscentral) on keybase.
- I have a public key ASDdd5i79ZQUIGgW8KkOVyNcntfRXILiX0tybC30fCwgkAo
To claim this, I am signing this object:
### my added OS X | |
# make grep output nice | |
export GREP_OPTIONS='--color=always' | |
export GREP_COLOR='1;35;40' | |
export CLICOLOR=1 | |
export LSCOLORS=GxFxCxDxBxegedabagacad | |
export PS1='\[\e[01;33m\]\u\[\e[01;0m\]@\[\e[01;32m\]\h\[\e[01;0m\]:\[\e[01;35m\]\w\[\e[01;0m\]\$ ' |
I hereby claim:
To claim this, I am signing this object:
new-session | |
splitw -h -p 50 | |
set-option -g mouse on | |
set -g history-limit 30000 |
### my added | |
alias tmux='tmux -2' # for 256color | |
#alias tmux='tmux -u' # to get rid of unicode rendering problem | |
export CLICOLOR=1 | |
export LSCOLORS=GxFxCxDxBxegedabagacad | |
#username red - hostname yellow text blue highlight - path purple | |
export PS1='\[\e[01;31m\]\u\[\e[01;0m\]@\[\e[01;33;44m\]\h\[\e[01;0m\]:\[\e[01;35m\]\w\[\e[01;0m\]\$ ' |
git branch -a
git branch -d $branchname
git remote prune origin --dry-run
(remove --dry-run to do it for real)git add -i $FILENAME
git reset --hard HEAD^
Steps to publish a npm package to beta that won't be available via latest and won't auto install on ncu updates etc
npm run dist
etc"version": "0.1.120-beta.1"
where beta.x is the number of those betasnpm publish --tag beta
There are two options for install:
npm install packagename@beta
npm install [email protected]
export AWS_PROFILE=YOURPROFILENAMEhere && export AWS_SDK_LOAD_CONFIG=1 |
export PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=1 && npm i # ensure it doesnt try and download a binary | |
# Modify node_modules/puppeteer/lib/esm/puppeteer/node/Launcher.js | |
# Specifically remove | |
// if (os.arch() === 'arm64') { | |
// chromeExecutable = '/usr/bin/chromium-browser'; | |
// } | |
and convert following else if to if. |