ora=<instaclient-install-dir>
gcc=
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!
- Seeing Like a State by James Scott
- Public Opinion by Walter Lippmann (Evan Czaplicki)
- A Pattern Language by Christopher Alexander (Brian Marick)
- Domain Driven Design by Eric Evans (Brian Marick)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Example Dockerfile | |
FROM hello-world |
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:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"io" | |
"log" | |
"os" | |
) | |
var target_path string |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 { |