I hereby claim:
- I am igorwwwwwwwwwwwwwwwwwwww on github.
- I am igorw (https://keybase.io/igorw) on keybase.
- I have a public key ASCnDElPW0ByDcMxO3igNMuIsxybisw-QwUOr8r9Qphzjgo
To claim this, I am signing this object:
hello  {"foo":"bar"} |
{ | |
"dependencies": { | |
"http-proxy": "^1.12.0" | |
} | |
} |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
if [ "$(docker-machine status)" = "Stopped" ]; then | |
docker-machine start | |
fi | |
eval "$(docker-machine env)" | |
if ! route -n get 172.17.0.0/16 | grep 'destination: 172.17.0.0' > /dev/null; then | |
echo "adding route for docker prefix 172.17.0.0/16" | |
sudo route -n add 172.17.0.0/16 $(docker-machine ip) |
#!/bin/bash | |
BUNDLE_GEMFILE=~/code/travis.rb/Gemfile bundle exec ~/code/travis.rb/bin/travis "$@" |
#!/bin/bash | |
set -e | |
acmetool want $(cat /etc/acme-hostname) | |
nginx -s reload |
source "https://rubygems.org" | |
gem "octokit", "~> 4.0" |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#include <string.h> | |
/* Generic hash function (a popular one from Bernstein). | |
* I tested a few and this was the best. */ | |
uint32_t dictGenHashFunction(const uint8_t *buf, int len) { | |
uint32_t hash = 5381; |
def emit(key, value, sep="\t") | |
STDOUT.puts('' << key << sep << value) | |
end | |
def map(*options) | |
options = [:split, "\t", 2] if options.empty? | |
STDIN.each_line do |line| | |
line.strip! | |
key, value = line.send(*options) |