Skip to content

Commit

Permalink
Merge pull request #16 from ksauzz/feat/update
Browse files Browse the repository at this point in the history
recent updates
  • Loading branch information
ksauzz authored Mar 2, 2023
2 parents c1b5077 + 1b1e71a commit fa3c547
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 5 additions & 2 deletions bazelrc
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
--sandbox_writable_path=$HOME/.ccache
--sandbox_writable_path=$HOME/.cache/terraform
# build --sandbox_writable_path=<HOME>/.ccache # FIXME: Update $HOME as abs path.
build --color=yes
build --verbose_failures
test --test_summary=detailed
test --test_output=errors
3 changes: 3 additions & 0 deletions xbindkeysrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://unix.stackexchange.com/a/277488
"echo -n | xsel -n -i; pkill xbindkeys; xdotool click 2; xbindkeys"
b:2 + Release
1 change: 1 addition & 0 deletions zsh/completion/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_*
4 changes: 2 additions & 2 deletions zshalias
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@ alias mongod="mongod -f /usr/local/mongo/conf/mongod.conf"
alias gcf="git checkout --track \$(git branch -r | fzf)"

# following aliases from http://ruslanspivak.com/2010/06/02/urlencode-and-urldecode-from-a-command-line/
alias urlencode='python -c "import sys, urllib as ul; print ul.quote_plus(sys.argv[1])"'
alias urldecode='python -c "import sys, urllib as ul; print ul.unquote_plus(sys.argv[1])"'
alias urlencode='python -c "import sys; from urllib.parse import quote; print(quote(sys.stdin.read()));"'
alias urldecode='python -c "import sys; from urllib.parse import unquote; print(unquote(sys.stdin.read()));"'

0 comments on commit fa3c547

Please sign in to comment.