I hereby claim:
- I am rwe on github.
- I am rwe (https://keybase.io/rwe) on keybase.
- I have a public key ASDcu8TOQgRhszifWLt_9cteG9Td3YIQg9lvXBs1pt9DHQo
To claim this, I am signing this object:
| #!/bin/bash | |
| set -Eeu -o pipefail | |
| PG_VERSION="${PG_VERSION:-9.6-alpine}" | |
| psqltmp() { | |
| ( | |
| set -Eeu -o pipefail | |
| local _pgcmd |
| #!/bin/bash | |
| set -Eeu -o pipefail | |
| # Runs `gpg` with a keybase user's public key as the recipient. | |
| # First argument is keybase username. Remaining arguments are passed to gpg -r xxx … | |
| die() { | |
| echo "$@" >&2 | |
| exit 127 | |
| } |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import sys | |
| import boto | |
| import readline # noqa: W0611 | |
| def p(string): | |
| sys.stdout.write(string) |
| I, Robert Estelle, have read and do accept the MuleSoft Contributor Agreement | |
| at http://www.mulesoft.org/legal/contributor-agreement.html | |
| Accepted on Thu Dec 10 2015 14:26:07 GMT-0500 (COT) |
| ;;; Robert Estelle 23 Aug 2014 | |
| (defun random-elt (&rest lists) | |
| ; Return random element from lists | |
| (let ((combined (apply #'concatenate 'list lists))) | |
| (elt combined (random (length combined))))) | |
| (defun funwith (fn num-args vars ops max-op-depth) | |
| ; Generate a random operation with the given function `fn` which takes | |
| ; `num-args` arguments. The scalar variables `vars` may be used, or any of |