Skip to content

Instantly share code, notes, and snippets.

View hmalphettes's full-sized avatar

Hugues Malphettes hmalphettes

  • Standard Chartered Bank
  • Singapore
  • 16:03 (UTC +08:00)
View GitHub Profile
{
"hosts": [
{
"name": "localhost",
"port": 2084,
"containers": 4,
"platform": "kyu"
}
]
}
@hmalphettes
hmalphettes / pull-from-etcd.sh
Created March 9, 2016 04:08
push-to-etcd and pull-from-etcd
#!/bin/bash
# Pull from etcd the template files.
function download() {
mkdir -p "$1"
pushd "$1"
local files="$(etcdctl ls /stoic-etc/$1)"
for file in $files; do
local filename="$(basename $file)"
etcdctl get $file > $filename
@hmalphettes
hmalphettes / bindings-cheat-sheet.md
Created June 3, 2016 09:15 — forked from eendeego/bindings-cheat-sheet.md
Node/V8 bindings cheat sheet