I hereby claim:
- I am andrewwatson on github.
- I am andrewwatson (https://keybase.io/andrewwatson) on keybase.
- I have a public key whose fingerprint is 7F6F 76DF C495 7FA2 E7D6 44D8 F237 701D 048F A350
To claim this, I am signing this object:
javascript:(function(){ | |
var rgbToCHex = function (r, g, b, a) { | |
var hexStr = '0x'; | |
hexStr += ('00' + r.toString(16)).substr(-2); | |
hexStr += ('00' + g.toString(16)).substr(-2); | |
hexStr += ('00' + b.toString(16)).substr(-2); | |
return hexStr; | |
}; | |
var export_to_unit8_t = function () { |
// This array holds the words we are going to choose from. | |
// Feel free to add new words! | |
var words = ['falcons', 'panthers', 'patriots', 'chargers', 'saints']; | |
var wordCount = document.getElementById('wordCount'); | |
// console.log(wordCount); | |
function chooseWord () { | |
theWord = words[Math.floor(Math.random() * words.length)]; |
func performIndexSearch(ctx context.Context, userQuery string, options *SearchOptions) ([]Item, map[string]RefinementCollection, error) { | |
index, err := search.Open(searchIndexName) | |
if err != nil { | |
return nil, nil, errors.Wrap(err, "Search Index Unavailable") | |
} | |
var keys []*datastore.Key | |
query := "" |
package storage | |
import ( | |
"io/ioutil" | |
"golang.org/x/net/context" | |
"golang.org/x/oauth2/google" | |
"google.golang.org/cloud" | |
"google.golang.org/cloud/datastore" | |
) |
package storage | |
import ( | |
"io/ioutil" | |
"golang.org/x/net/context" | |
"golang.org/x/oauth2/google" | |
"google.golang.org/cloud" | |
"google.golang.org/cloud/datastore" | |
) |
I hereby claim:
To claim this, I am signing this object:
provisioner "local-exec" { | |
command = "docker-machine create -d generic --generic-ssh-user=ubuntu --generic-ip-address=${self.public_ip} --generic-ssh-key ${var.key_path} --engine-opt dns=172.17.42.1 --engine-opt dns-search=service.consul discovery-${count.index}" | |
} | |
provisioner "local-exec" { | |
command = "docker --tlsverify --tlscacert=\"$HOME/.docker/machine/machines/discovery-${count.index}/ca.pem\" --tlscert=\"$HOME/.docker/machine/machines/discovery-${count.index}/cert.pem\" --tlskey=\"$HOME/.docker/machine/machines/discovery-${count.index}/key.pem\" -H=tcp://${self.public_ip}:2376 ps" | |
} |
{{range services}} | |
{{if .Name | regexMatch "data*"}} | |
listen http-in | |
bind *:{{env "ENTERPRISE_BIND"}}{{range service .Name}} | |
server {{.Node}}{{.Port}} {{.Address}}:{{.Port}}{{end}} | |
{{end}} | |
{{end}} |
{{range services}} | |
{{.Name | regexMatch "manager"}} | |
listen http-in | |
bind *:{{key "service/{{.Name}}/bindport"}} | |
{{range service .Name}} | |
server {{.Node}} {{.Address}}:{{.Port}}{{end}} | |
{{end}} |
logspout: | |
image: gliderlabs/logspout:master | |
volumes: /var/run/docker.sock:/tmp/docker.sock |