I hereby claim:
- I am the-eater on github.
- I am eater (https://keybase.io/eater) on keybase.
- I have a public key ASAR9THfWLoAQeMNnd2Jq22Wf6Jsg-iONl4hUVDlTOf6FAo
To claim this, I am signing this object:
| [].reduce.call(document.querySelectorAll('[style]'),function(c,e){return c+'.'+[].join.call(t.classList,'.')+' {\n\t'+e.getAttribute('style').replace(/;\s+/g,';\n\t')+'\n}\n\n'; },''); |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| set -e; | |
| VPNM_CONF="${VPNM_CONF:-$HOME/.vpnm}"; | |
| VPNM_SUDO="${VPNM_SUDO:-sudo}"; | |
| VPNM_GPG="${VPNM_GPG:-gpp2}"; | |
| VPNM_CREDS="${VPNM_CREDS:-keyring}"; | |
| main() { | |
| local action="$1"; |
The following script creates a dot graph from your trust network (who signed who).
Run the following to generate
gpg --list-sigs --with-colons | awk -Egpg2dot.awk > gpg.dot
Then you can render the graph to png or svg
Download either Tampermonkey for Chrome, or Greasemonkey for Firefox if you want to run this script repeatably:
Tampermonkey: https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo
Greasemonkey: https://addons.mozilla.org/nl/firefox/addon/greasemonkey/
| DIR="${1}"; | |
| if [ -z "$DIR" ] || [ ! -d "$DIR/Entity" ]; then | |
| echo "Given argument is or empty, or is not a valid Bundle directory"; | |
| exit 1; | |
| fi | |
| REPO_DIR="$DIR/Repository"; | |
| CONFIG="$DIR/Resources/config/repositories.yml"; |
| _buffer_edit_() { | |
| # Create tmp file | |
| local tf="$(mktemp /tmp/zshXXXXXXXX)"; | |
| # Place current buffer in tmp file | |
| echo $BUFFER > $tf; | |
| # Open tmp file in vim, and if exits with 0, set buffer to tmp file | |
| vim $tf && BUFFER="$(cat $tf)"; | |
| # Remove tmp file | |
| rm $tf; | |
| }; |
| #!/usr/bin/env python3 | |
| import sys | |
| def add_layer(last_layer, fulfilled, dependencies, parents): | |
| layer = set() | |
| for item in last_layer: | |
| if item not in parents: | |
| # Current item is a stub | |
| continue |
| #!/usr/bin/env python3 | |
| import sys | |
| from pprint import pprint | |
| class Serial: | |
| def __init__(self, *args): | |
| self.list = list(*args) | |
| def extend(self, *args): |
| pkgname = musl | |
| license = MIT | |
| maintainer = eater <=@eater.me> | |
| short-desc = Musl C library | |
| homepage = http://www.musl-libc.org/ | |
| files.source = `http://www.musl-libc.org/releases/musl-${version}.tar.gz` | |
| build-style = gnu-configure | |
| configure-args = --prefix=/usr --disable-gcc-wrapper |