I hereby claim:
- I am tribut on github.
- I am tribut (https://keybase.io/tribut) on keybase.
- I have a public key whose fingerprint is 7A3D F066 029F B9FF C538 1AF5 B454 3DCD E458 BF73
To claim this, I am signing this object:
| #!/bin/sh | |
| # ########################################################## # | |
| # wrapper for mosh to work with ssh's proxycommand directive # | |
| # this only makes sense if the machine is directly reachable # | |
| # from the internet using udp. # | |
| # ########################################################## # | |
| THISSCRIPT="`basename \"$0\"`" | |
| REMOTE="$1" |
| #!/bin/bash | |
| # ########################################################## # | |
| # wrapper for mosh that will call mosh_pc.sh for a list of # | |
| # host and mosh otherwise. see mosh_pc.sh why you might want # | |
| # this. # | |
| # ########################################################## # | |
| # >> modify this | |
| indirect_access=(asterix obelix idefix) |
| #!/bin/sh | |
| if [ -x /usr/bin/apg ]; then | |
| if [ -z "$1" ]; then | |
| /usr/bin/apg -m 10 -x 15 -n 1 -a 1 | |
| else | |
| /usr/bin/apg $@ | |
| fi | |
| elif [ -x /usr/bin/pwgen ]; then | |
| if [ -x /usr/bin/shuf ]; then |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| set -e | |
| repourl="$1" | |
| reponame="$(echo "$repourl" | sed -r 's#.*/([^.]+).git#\1#')" | |
| status() { | |
| echo "[vcsh-new] $@" >&2 | |
| } |
| #!/bin/sh | |
| # also see http://marc.merlins.org/perso/btrfs/post_2014-03-19_Btrfs-Tips_-Btrfs-Scrub-and-Btrfs-Filesystem-Repair.html | |
| for fs in $(grep ' btrfs ' /proc/mounts | cut -d' ' -f1 | sort -u) | |
| do | |
| starttime="$(date "+%Y-%m-%d %H:%M:%S")" | |
| logger "Starting btrfs scrub on $fs" | |
| btrfs scrub start -Bd "$fs" | |
| journalctl -q -k --since "$starttime" | grep BTRFS |
| #!/bin/sh | |
| MYNAME="$(readlink -f "$0")" | |
| BASEDIR="$(dirname "$MYNAME")" | |
| AUTHFILE="$HOME/private/owncloud" | |
| CURL="curl --netrc-file $AUTHFILE --fail --silent --show-error" | |
| CONTACTSPATH="$BASEDIR/contacts" | |
| CALENDARSPATH="$BASEDIR/calendars" |
| #!/bin/bash | |
| set -e | |
| info() { | |
| echo "$*" >&2 | |
| } | |
| warn() { | |
| info "WARNING: $*" | |
| } |
| #!/bin/sh | |
| # Clone a git repository, but make sure that it has a valid signature | |
| # before actually checking it out. | |
| # | |
| # Note that this will always clone the master branch and probably doesn't | |
| # exactly behave like "git clone" in other ways. | |
| set -e | |
| fail() { | |
| echo "$*" >&2 |
| #!/bin/sh | |
| # This is a workaround for Virtualbox drawing white text on light background | |
| # when using dark mode, see https://www.virtualbox.org/ticket/18258 | |
| exec "$(which -a VirtualBox | grep -v "$(readlink -e "$0")" | head -n1)" -style Fusion "$@" |