Skip to content

Instantly share code, notes, and snippets.

@earthgecko
earthgecko / snype_skyline_horizon.sh
Created February 24, 2015 16:48
skyline horizon watcher
#!/bin/bash
#### snype_skyline_horizon.sh ####
#
####
# DESCRIPTION
# This mitigates against horizon running, but not populating redis and horizon
# not running properly in general.
#
# THIS IS JUST A GIST
@earthgecko
earthgecko / riemann-client.deps
Created June 5, 2013 19:08
riemann-client and rieman-tools dependencies
Installing riemann-client and riemann-tools gems
Successfully installed beefcake-0.3.7
Successfully installed trollop-2.0
Successfully installed mtrc-0.0.4
Successfully installed riemann-client-0.2.2
4 gems installed
Installing ri documentation for beefcake-0.3.7...
Installing ri documentation for trollop-2.0...
Installing ri documentation for mtrc-0.0.4...
Installing ri documentation for riemann-client-0.2.2...
@earthgecko
earthgecko / ansible
Created April 9, 2013 18:14
ansible
Is kind of interesting...
I just get tried of using 10's of lines of code to define a type and resource declarations elsewhere and having to modify 3 things in different files to just enure a single line exists non-invasively in 1 file.....
Virgin on a clown called Ridiculous
@earthgecko
earthgecko / gist:5329702
Created April 7, 2013 09:12
graphite_weirdness
# This data set does graphs OK - BUT
# Select date range as 2013-03-15 to 2013-04-07 and it stops at 2013-03-31
# If the date range is selected as 2013-04-01 to 2013-04-07 it graphs the April
# date fine???
# I have set the Y axis Maximum to 10000 and same thing.
# What are I doing wrong?
# Data set
# number_of_seconds,epoch_timestamp
echo "445,1363366020
@earthgecko
earthgecko / gist:5240407
Last active December 15, 2015 09:39
collaborative cooperation
collaboration:
n numbers of entities working to achieve a defined goal (scope of detail = various) and working within differing operational/systematic constraints, some overlap or integration may exist. The results of work are thus assembled by each party and/or in a singular, for-purpose manner. The entities can be temporary and varying, come and go, as well as longterm participants in the goal.
Implies entities with independent, disparate control structures.
cooperation:
n number of entities working to achieve a defined goal (scope of detail = various) and with working within the same or co-dependent/related operational/systematic/control constraints. The work is carried out in a cooperative manner between the entities within the shared operational/control constraints to achieve the desired goal. The results of the work invariable become a part of the operational/systematic constraints of the entities in some form or manner and there is usually some longterm ownership among the entities.
Implies a le
@earthgecko
earthgecko / is_integer
Created February 10, 2013 17:45
is_integer
function is_integer () {
# exit code 0 - the string is an integer
# exit code 1 - the string is not an integer
local string=$1
[[ $string == ${string//[^0-9]/} ]]
}
@earthgecko
earthgecko / bash.generate.random.alphanumeric.string.sh
Last active April 2, 2024 15:59
shell/bash generate random alphanumeric string
#!/bin/bash
# bash generate random alphanumeric string
#
# bash generate random 32 character alphanumeric string (upper and lowercase) and
NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1)
# bash generate random 32 character alphanumeric string (lowercase only)
cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 32 | head -n 1