I hereby claim:
- I am mchorfa on github.
- I am chorfa (https://keybase.io/chorfa) on keybase.
- I have a public key whose fingerprint is A541 521E C94A 22ED 414C 2061 784F 8D81 A652 38C5
To claim this, I am signing this object:
export PROJECT_NAMESPACE=kindness | |
export CLUSTER_NAME=mccluster | |
CLIENT_PLATFORM ?= $(shell go env GOOS) | |
ifeq ($(CLIENT_PLATFORM),linux) | |
export CURRENT_HOST_IP=$(shell hostname -I | awk '{print $1; exit}' | cut -d ' ' -f 1) | |
else | |
export CURRENT_HOST_IP=$(shell ifconfig en0 | awk '/inet / {print $2; }' | cut -d ' ' -f 2) | |
endif |
#!/bin/bash | |
set -euo pipefail | |
####################################### | |
# Arguments: | |
# - Password | |
####################################### | |
function hash_es_password() { | |
local ODES_PASS_PLAIN=$1 | |
local ODES_DOCKER_UUID=$(docker run --rm -d amazon/opendistro-for-elasticsearch) |
#!/usr/bin/env bash | |
set -euo pipefail | |
# USAGE: ./porter-verify.sh instanceStatus 'YOUR_BUNDLE_NAME' | |
function instanceStatus() { | |
# Define success constant | |
local STATUS_SUCCESS="SUCCESS" | |
# bundle name argument |
I hereby claim:
To claim this, I am signing this object:
SERVICES | |
http://dropr.com/ | |
http://jetrank.com/tf/ | |
http://mixture.io/ | |
http://carbonmade.com/ | |
http://jetstrap.com/ | |
http://hubpages.com/ | |
https://www.striking.ly/ | |
http://beta.mural.ly/ | |
http://www.moonfruit.com/ |
./configure \ | |
--prefix=/usr \ | |
--mandir=/usr/share/man \ | |
--infodir=/usr/share/info \ | |
--sysconfdir=/private/etc \ | |
--with-apxs2=/usr/sbin/apxs \ | |
--enable-cli \ | |
--with-config-file-path=/etc \ | |
--with-libxml-dir=/usr \ | |
--with-openssl=/usr \ |
require.config({ | |
paths: { | |
underscore: '../underscore-min' | |
}, | |
shim: { | |
underscore: { | |
exports: function() { | |
return _.noConflict(); | |
} | |
} |
// Turns out this function already exists in Sass: mix(fg, bg, %) (http://d.pr/mGqa) | |
// Alpha blending | |
@function blend($bg, $fg) { | |
$r: red($fg) * alpha($fg) + red($bg) * (1 - alpha($fg)); | |
$g: green($fg) * alpha($fg) + green($bg) * (1 - alpha($fg)); | |
$b: blue($fg) * alpha($fg) + blue($bg) * (1 - alpha($fg)); |