I hereby claim:
- I am weavenet on github.
- I am weavenet (https://keybase.io/weavenet) on keybase.
- I have a public key whose fingerprint is F6C4 D180 15CA F8B5 9C60 403F F83F 43F6 6744 510A
To claim this, I am signing this object:
| #!/bin/bash | |
| bucket=$1 | |
| set -e | |
| echo "Removing all versions from $bucket" | |
| versions=`aws s3api list-object-versions --bucket $bucket |jq '.Versions'` | |
| markers=`aws s3api list-object-versions --bucket $bucket |jq '.DeleteMarkers'` |
| #!/bin/bash | |
| # | |
| # Wrapper script for trello cli that appends default arguments as well as reads | |
| # additional arguments from a file if it exists in the cwd. It is assumed | |
| # the file contains a text string of arguments to append to the command. | |
| # | |
| # See https://github.com/brettweavnet/trello_cli/issues/22 for more details | |
| # | |
| # For example, the file .trellocli existing in a directory with the content: | |
| # |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import getpass | |
| import json | |
| import requests | |
| import sys | |
| import urllib | |
| import boto3 |
Simple python script to delete all chat messages in your keybase account.
It shells out to the keybase CLI command to access the keybase api.
It expects you to have logged into the device where it is run with the account you wish to cleanup. It also requires python3 be installed.
Verify it is correctly setup via:
| # Examples on how to store secret data outside of dotfiles | |
| # | |
| # Encyrpted cipher text created via: | |
| # | |
| # echo SECRET_VALUE | openssl enc -e -aes-256-cbc -a -salt -pass pass:`cat ~/.password` | |
| # | |
| password=`cat ~/.password` | |
| cipher_text=U2FsdGVkX1/OGxV6uRFeFfihJXZ/DU8rOibHL3uKxcY= | |
| export SECRET1=`echo $cipher_text | openssl enc -d -aes-256-cbc -a -salt -pass pass:$password` |
| #!/bin/bash | |
| set -e | |
| VERSION=0.0.2 | |
| DIRECTORY=$HOME/dotfiles_weavenet | |
| echo "Making dotfile directory to '$DIRECTORY'" | |
| mkdir -p $DIRECTORY |
| #!/bin/bash | |
| set -e | |
| VERSION=0.0.2 | |
| # | |
| # Create CPIO Archive, derivitive of tar script for containers that don't have tar https://gist.github.com/weavenet/32b0938e5aea6f3dd18fb98e2bfbdd42 | |
| # extract the lastest tar archive | |
| # |