I hereby claim:
- I am eripa on github.
- I am ericripa (https://keybase.io/ericripa) on keybase.
- I have a public key whose fingerprint is 655F 85E3 F560 43AA 7D2E F492 4B62 8008 4CDA E555
To claim this, I am signing this object:
| #!/bin/bash | |
| set -e | |
| # Usage: | |
| # rsync_parallel.sh [--parallel=N] [rsync args...] | |
| # | |
| # Options: | |
| # --parallel=N Use N parallel processes for transfer. Defaults to 10. | |
| # | |
| # Notes: |
| #!/bin/bash | |
| # This script generates the Code Sourcery ARM EABI Toolchain on MAC OS X 10.7 | |
| # | |
| # The main trick here is the possibility to build previous versions, required | |
| # when maintaining older projects that no longer build with newer version. | |
| # | |
| # The new toolchain is installed at | |
| # "$HOME/Developer/Cross/arm-cs-tools-$MENTOR_RELEASE-$TODAY" | |
| # |
| #! /bin/sh | |
| # ###################################### | |
| # coded by Nat! | |
| # 2013 Mulle kybernetiK | |
| # GPL | |
| command=${1:-start} | |
| shift | |
| proxyarp=${1:-no} | |
| shift |
| #!/bin/bash | |
| # A bash script to create a time machine disk image suitable for | |
| # backups with OS X 10.6 (Snow Leopard) | |
| # This script probably only works for me, so try it at your own peril! | |
| # Use, distribute, and modify as you see fit but leave this header intact. | |
| # (R) sunkid - September 5, 2009 | |
| usage () | |
| { | |
| echo ${errmsg}"\n" |
| #!/bin/bash | |
| set -e | |
| SRC_DIRECTORY="$HOME/src" | |
| ANSIBLE_DIRECTORY="$SRC_DIRECTORY/ansible" | |
| ANSIBLE_CONFIGURATION_DIRECTORY="$HOME/.ansible.d" | |
| # Download and install Command Line Tools | |
| if [[ ! -x /usr/bin/gcc ]]; then |
I hereby claim:
To claim this, I am signing this object:
a basic Kibana dashboard for Collectd + ELK.
Collectd (configured as LogStash doc example) → LogStash (collectd input) → ElasticSearch → Kibana
| Verifying that +ericripa is my openname (Bitcoin username). https://onename.com/ericripa |
| #!/bin/bash | |
| set -euo pipefail | |
| lockfile="/tmp/myscript.lock" | |
| if ( set -o noclobber; echo "$$" > "$lockfile") 2> /dev/null; | |
| then | |
| trap 'rm -f "$lockfile"; exit $?' INT TERM EXIT | |
| ## COMMAND TO RUN GOES HERE |
| echo "Stalling for MySQL.. (${MYSQL_PORT_3306_TCP_ADDR}:${MYSQL_PORT_3306_TCP_PORT})" | |
| while true; do | |
| nc -q 1 "$MYSQL_PORT_3306_TCP_ADDR" "$MYSQL_PORT_3306_TCP_PORT" 2>/dev/null && break | |
| done |