I hereby claim:
- I am tianon on github.
- I am tianon (https://keybase.io/tianon) on keybase.
- I have a public key whose fingerprint is B42F 6819 007F 00F8 8E36 4FD4 036A 9C25 BF35 7DD4
To claim this, I am signing this object:
| 1.0 |
| #!/bin/bash | |
| set -e | |
| dir="$(mktemp -d)" | |
| trap "rm -rf '$dir'" EXIT | |
| git clone --depth 1 https://github.com/docker-library/official-images.git "$dir" | |
| "$dir/bashbrew/bashbrew.sh" list --all | xargs -rtn1 docker pull |
| #!/bin/bash | |
| set -e | |
| usage() { | |
| local s="$(basename "$0")" | |
| echo "usage: $s [identity] [file]" | |
| echo " ie: $s [email protected] ~/some-secret-file.asc" | |
| } | |
| identity="$1"; shift || { usage >&2; exit 1; } |
| package main | |
| import ( | |
| "fmt" | |
| "github.com/docker/machine/libmachine/drivers" | |
| "github.com/docker/machine/libmachine/engine" | |
| "github.com/docker/machine/libmachine/mcnflag" | |
| "github.com/docker/machine/libmachine/state" | |
| ) |
| #!/bin/bash | |
| set -e | |
| # https://gist.github.com/tianon/b7fce03f0d52f8103242421878fc6b5e | |
| # | |
| # usage: | |
| # | |
| # $ apt-mark-minimum-manual.sh | |
| # inetutils-ping |
| diff --git a/jessie-1.tar.tv b/jessie-2.tar.tv | |
| index a0a88dc..a3b3f44 100644 | |
| --- a/jessie-1.tar.tv | |
| +++ b/jessie-2.tar.tv | |
| @@ -1,35 +1,35 @@ | |
| -drwxr-xr-x root/root 0 2016-07-08 14:04 ./ | |
| -drwxr-xr-x root/root 0 2016-07-08 14:03 ./dev/ | |
| -crw-rw-rw- root/root 1,5 2016-07-08 14:03 ./dev/zero | |
| -lrwxrwxrwx root/root 0 2016-07-08 14:03 ./dev/stderr -> /proc/self/fd/2 | |
| -lrwxrwxrwx root/root 0 2016-07-08 14:03 ./dev/stdin -> /proc/self/fd/0 |
I hereby claim:
To claim this, I am signing this object:
| # inspired by https://twitter.com/jessfraz/status/782333853117448192 | |
| # https://gist.github.com/jessfraz/421918a367a71dbaf72fdc772d809f61 | |
| # https://gist.github.com/tianon/c5ae888200d6426b167d4961d088dee2 | |
| server { | |
| listen 80; | |
| listen 443 ssl http2; | |
| server_name go.tianon.xyz; |
| # see https://lists.gt.net/mythtv/users/334412#334412 | |
| Section "Monitor" | |
| Identifier "VizioGV42L" | |
| VendorName "VIZIO" | |
| ModelName "GV42L" | |
| HorizSync 31.0 - 70.0 | |
| VertRefresh 50.0 - 85.0 | |
| Option "DPMS" |
| #!/usr/bin/env bash | |
| set -Eeuo pipefail | |
| # for real pushes, this would be "library" | |
| targetOrg='trollin' | |
| # https://github.com/tianon/dockerhub-public-proxy | |
| publicProxy="$DOCKERHUB_PUBLIC_PROXY" | |
| _curl() { |