I hereby claim:
- I am rot26 on github.
- I am rot26 (https://keybase.io/rot26) on keybase.
- I have a public key ASAacqKPnGSuKGtzwIoJvm3nxtMBpqOJe8J8VON644J0oQo
To claim this, I am signing this object:
#!/bin/bash | |
SSH_KEY="~/.ssh/id_rsa" | |
ssh-keygen -l -E md5 -f "${SSH_KEY}" |
#!/usr/bin/env bash | |
# SheBang defaults to environment's bash | |
# Set bash debug | |
if [[ "$@" == *"--debug"* ]] || [ ${BASH_DEBUG} ]; then | |
export BASH_DEBUG=true | |
set -ex | |
fi | |
# Reference Path of this script |
# convert *.xlsx to *.xlsx.csv using https://github.com/dilshod/xlsx2csv | |
pip install xlsx2csv | |
# (shell-fu from http://stackoverflow.com/a/12965604) | |
find . -iname "*.xlsx" -exec sh -c 'xlsx2csv "$1" > "$1.csv"' x {} \; | |
# grep .csv files | |
brew install ripgrep | |
rg -i -g "*.csv" "waldo" | |
# ...or plain ole grep |
## help: display this help message | |
# Any line prefixed with two hashes will be output on `make help` | |
# The colon `:` is the alignment seperator | |
.PHONY : help | |
help : Makefile | |
@sed -n 's/^##//p' $< | column -t -s: |
cat directories.txt | xargs -L 1 sh -c 'cd "$0" && pwd && git status' |
git symbolic-ref refs/remotes/origin/HEAD |
I hereby claim:
To claim this, I am signing this object:
# Checkout | |
git pull | |
git ck -b region-forwarder | |
# Setup Directories | |
mkdir -p terraform/cwe | |
mkdir -p terraform/sqs_lambda |
docker run \ | |
-e "AWS_SESSION_TOKEN=${session_token}" \ | |
-e "AWS_ACCESS_KEY_ID=${access_key_id}" \ | |
-e "AWS_SECRET_ACCESS_KEY=${secret_access_key}" \ | |
-e "AWS_DEFAULT_REGION=us-east-1" \ | |
-v $PWD:/usr/src/app -w /usr/src/app \ | |
node:12 npm run cdk -- -v synth |