Skip to content

Instantly share code, notes, and snippets.

View admpub's full-sized avatar
🎯
Focusing

Hank Shen admpub

🎯
Focusing
View GitHub Profile
@admpub
admpub / cloudSettings
Last active August 10, 2019 13:46
Visual Studio Code Settings Sync Gist
{"lastUpload":"2019-08-10T13:46:22.080Z","extensionVersion":"v3.4.1"}
@admpub
admpub / StringMapStringMarshalXML.go
Created March 31, 2016 08:06 — forked from jackspirou/StringMapStringMarshalXML.go
Marshal a map of strings to strings to XML in Golang.
// StringMap is a map[string]string.
type StringMap map[string]string
// StringMap marshals into XML.
func (s StringMap) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
tokens := []xml.Token{start}
for key, value := range s {