Skip to content

Instantly share code, notes, and snippets.

View chrisgillis's full-sized avatar

Chris Gillis chrisgillis

View GitHub Profile
@chrisgillis
chrisgillis / gist:f0e9880ac338e5521a14f56992231404
Created August 26, 2016 17:31
Numeric Static Map Vschema Example
{
"sharded": true,
"vindexes": {
"keyspace_idx": {
"type": "numeric_static_map",
"params": {
"json_path": "/vt/config/stage_numeric_static_map.json"
}
}
},
@chrisgillis
chrisgillis / ssl_smtp_example.go
Created April 16, 2014 14:48
Golang SSL SMTP Example
package main
import (
"fmt"
"log"
"net"
"net/mail"
"net/smtp"
"crypto/tls"
)