|
You are here |
www.alexedwards.net | ||
| | | | |
daenney.github.io
|
|
| | | | | I blog about what catches my fancy | |
| | | | |
blog.gopheracademy.com
|
|
| | | | | Advanced Encoding and Decoding Techniques Go's standard library comes packed with some great encoding and decoding packages covering a wide array of encoding schemes. Everything from CSV, XML, JSON, and even gob - a Go specific encoding format - is covered, and all of these packages are incredibly easy to get started with. | |
| | | | |
attilaolah.eu
|
|
| | | | | Incidentally, decoding JSON data (or really, almost any data structure) isreally easy in Go (golang). We simply call json.Unmarshal(...) andboom! We have nice data structures. | |
| | | | |
ukiahsmith.com
|
|
| | | Go 1.11 introduced a new concept of Modules which brings first class support for managing dependency versions and enabling reproducible builds. Go previously had no notion of dependency versions, and it has been a long and arduous road to get where we are now. Modules do not just copy the style of other programming language's dependency tools, rather it introduces a few slightly different concepts intended to enable programming in the large. | ||