Skip to content

Instantly share code, notes, and snippets.

@msingle
msingle / go-oci8 on win64.md
Created May 18, 2018 12:53 — forked from mnadel/go-oci8 on win64.md
go-oci8 on windows64
@msingle
msingle / dc_2017_biblio.md
Created May 23, 2017 09:55 — forked from BaseCase/dc_2017_biblio.md
List of resources recommended or mentioned by the speakers at Deconstruct 2017

Deconstruct 2017 Bibliography

Here are all of the resources mentioned by Deconstruct 2017 speakers, along with who recommended what. Please post a comment if I missed something or have an error!

DC 2017 Speakers' Choice Gold Medalist

  • Seeing Like a State by James Scott

Books

  • Public Opinion by Walter Lippmann (Evan Czaplicki)
  • A Pattern Language by Christopher Alexander (Brian Marick)
  • Domain Driven Design by Eric Evans (Brian Marick)
@msingle
msingle / Dockerfile
Created May 14, 2016 16:23 — forked from yefim/Dockerrun.aws.json
Build a Docker image, push it to AWS EC2 Container Registry, then deploy it to AWS Elastic Beanstalk
# Example Dockerfile
FROM hello-world

Keybase proof

I hereby claim:

  • I am msingle on github.
  • I am msingle (https://keybase.io/msingle) on keybase.
  • I have a public key whose fingerprint is 9B49 48A9 F1F4 92C9 9144 BD51 18DF 18BF B91E B388

To claim this, I am signing this object:

package main
import (
"fmt"
"io"
"log"
"os"
)
var target_path string
const longform string = "2006-01-02T15:04:00"
type WrapTime struct{
time.Time
}
func (t WrapTime) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
fmted := t.Format(longform)
err := e.EncodeElement(fmted, start)
if err != nil {