I hereby claim:
- I am jpbochi on github.
- I am jpbochi (https://keybase.io/jpbochi) on keybase.
- I have a public key whose fingerprint is F786 2518 AC95 8837 46FA 77F0 1E82 F6A5 57A5 C04D
To claim this, I am signing this object:
#!/usr/bin/env sh | |
set -eu | |
# some inspiration from https://raymii.org/s/tutorials/Sign_and_verify_text_files_to_public_keys_via_the_OpenSSL_Command_Line.html | |
MESSAGE=$1 | |
ID_FILE=$(ssh -G [email protected] | grep identityfile | cut -d' ' -f2 | xargs -I % sh -c 'test -r % && echo % || true' | head) | |
echo >&2 '>>> decrypting with this identity file:' $ID_FILE |
#!/usr/bin/env sh | |
set -eu | |
API_BASE="${API_BASE:-https://github.api.manage.rackspace.com}" | |
KEY_FILE=${KEY_FILE:-"$HOME/.ssh/id_rsa"} | |
fail() { | |
echo >&2 "This tool needs an SSH key to sign a request to $API_BASE." | |
echo >&2 "The key must be configured as a deploy key in your GitHub repository linked to an AWS account." |
#!/usr/bin/env bash | |
set -o errexit | |
set -o nounset | |
set -o noglob | |
set -o pipefail | |
# | |
# Purpose: run speficied command with specified arguments and cache result. If cache is fresh enough, don't run command again but return cached output. | |
# Also cache exit status and stderr. | |
# License: GPLv3 |
#!/usr/bin/env bash | |
# copied from http://mediadoneright.com/content/ultimate-git-ps1-bash-prompt | |
# Customize BASH PS1 prompt to show current GIT repository and branch. | |
# by Mike Stewart - http://MediaDoneRight.com | |
# TODO: scope the following env vars to this file only. They can be seen with `declare -p` | |
# Reset | |
Color_Off="\[\033[0m\]" # Text Reset |
# Start a kubectl proxy | |
kubectl proxy | |
# Get a json with the resource you want to delete | |
kubectl get challenges.acme.cert-manager.io quickstart-example-tls-1016717128-3781756796-4176224615 -o json > bad.json | |
# Make a PUT call removing any finalizer | |
cat bad.json | jq '. | setpath(["metadata","finalizers"]; [])' | curl -kD- -H "Content-Type: application/json" -X PUT --data-binary @- "127.0.0.1:8001$(cat bad.json | jq -r '.metadata.selfLink')" |
I hereby claim:
To claim this, I am signing this object:
-----BEGIN PGP PUBLIC KEY BLOCK----- | |
mQINBF+GyRMBEADA8FXW5Ohe9rRU3bfLe5INgIT0sPln+ToPDPNQYhZhqh95amKR | |
qwJ9XO7R84WL0/b7GCTEdL5PmdkXpHAfWxAk1BNvWMCjsw4BrNZ4DTFywuvQc7Oj | |
5n5G32u4VB3ylGct808iD0F3tXSnSnoRZNuXTwz8oA73XM3l3fUjbzrpoEd7NPTK | |
uxn+OcK1591OVW/JKXt12aru+JF/UCfJV5y9droE/b7D47gGqylSp6Ba+AjlVtdt | |
PLJoUgId2uca5U+Fa1Fe6TeTjJpb9Xh09sRiy5dkE4WIiqdziSjDiy5YFiNXJsNV | |
KMl7kkBERXHPqVFIR9NNX3bvgB9u5MYdLNgrEIkvQUbDr7jmBoNllA7rpZl66JVn | |
9Xduvilb7yHKosCS54JSBQ86gEhNxBV1u3QuDhSzwYc7yEtrKEBqePLwRnfzXEAU | |
/paKIOdnBB8dcQY8TWCkrh9mA5RbisQw4wRkeexhpwvbNWlfeIoTceEYypGEGjoy |
// ==UserScript== | |
// @name Only Single Comments | |
// @namespace https://gist.githubusercontent.com/jpbochi/ac88177a0a4741300c2f24c4e33a9c90 | |
// @version 1.0.5 | |
// @description On GitHub PR inline comments, changes the default button from "Start a review" to "Add single comment" | |
// @author JP Bochi | |
// @match https://github.com/*/*/pull/* | |
// @icon https://www.google.com/s2/favicons?domain=github.com | |
// @downloadURL https://gist.githubusercontent.com/jpbochi/ac88177a0a4741300c2f24c4e33a9c90/raw/only-single-comments.js | |
// @updateURL https://gist.githubusercontent.com/jpbochi/ac88177a0a4741300c2f24c4e33a9c90/raw/only-single-comments.js |
// ==UserScript== | |
// @name Asana Dynamic Favicon | |
// @namespace https://gist.githubusercontent.com/jpbochi/f651698e371f7deda33d039ddaa2bda5 | |
// @version 0.1.0 | |
// @description This modern Asana Inbox favicon notification displays an orange notification circle (just like Asana does in the app) to the top right of the Asana favicon when your active Organization/Workspace Inbox has any unread items. Enjoy! | |
// @author JP Bochi | |
// @match https://app.asana.com/* | |
// @grant none | |
// @run-at document-body | |
// @downloadURL https://gist.githubusercontent.com/jpbochi/f651698e371f7deda33d039ddaa2bda5/raw/asana-favicon-notification.js |