Explore >> Select a destination


You are here

www.alexedwards.net
| | daenney.github.io
4.6 parsecs away

Travel
| | I blog about what catches my fancy
| | blog.gopheracademy.com
2.9 parsecs away

Travel
| | 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
2.7 parsecs away

Travel
| | 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
25.2 parsecs away

Travel
| 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.