I hereby claim:
- I am pcapriotti on github.
- I am pcapriotti (https://keybase.io/pcapriotti) on keybase.
- I have a public key whose fingerprint is 2461 C117 39FE 5784 858C 9F18 DF96 7258 59FA 1C1F
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| # prepare submission tarball for arXiv.org | |
| set -e | |
| usage() { | |
| echo "Usage: $0 DEST SOURCE..." | |
| exit 1 | |
| } | |
| on_exit() { |
| #!/bin/bash | |
| set -e | |
| usage() { | |
| echo "Usage: $0 [-f FILE] [-n NAME] [-l LANGUAGE] [-p] [-d] DESCRIPTION" 2>&1 | |
| exit 1 | |
| } | |
| public=true | |
| dryrun=false |
| #!/bin/bash | |
| # Extract the "next" link from an HTTP response | |
| sed ' | |
| 1,/^\r\{0,1\}$/ { | |
| /^Link:/ !d | |
| s/^Link: \(.*\)$/\1/ | |
| }' | | |
| { | |
| IFS= read -r links |
| #!/bin/bash | |
| set -e | |
| usage() { | |
| echo "Usage: $0 USERNAME" 2>&1 | |
| exit 1 | |
| } | |
| username="$1" | |
| [ -z "$username" ] && usage |
| #!/bin/bash -e | |
| WALLPAPER_DIR="$HOME/backup/content/pictures/wallpapers" | |
| function lock() { | |
| local wp="$(scaled_wallpaper)" | |
| local cmdline="" | |
| [ -z "$wp" ] || cmdline="-i $wp" | |
| function revert() { |