Skip to content

Instantly share code, notes, and snippets.

View edwardstudy's full-sized avatar
🎯
Focusing

Zida (Edward) edwardstudy

🎯
Focusing
View GitHub Profile
@Amit-PivotalLabs
Amit-PivotalLabs / bosh-links-why-and-how.md
Last active December 10, 2021 21:33
BOSH Links: Why and How
@Rican7
Rican7 / conventional-json.go
Last active November 27, 2023 07:10
Marshal JSON in Golang using common lower-snake-case object key conventions
package main
import (
"bytes"
"encoding/json"
"fmt"
"regexp"
"time"
)