JSON polymorphism in Go
in Go
How to serialize and deserialize polymorphic JSON into Go structures.
in Go
How to serialize and deserialize polymorphic JSON into Go structures.
in Go
Recently I’ve been working on a Trie implementation and I was a surprised and delighted from the simpicity of the data structure.
in Go
I’ve been hearing a lot of positive feedback about Google’s new programming language for some time now. Interfaces, simplicity, concurrency are some of the things you will definitely hear being praised as you get involved with the community.
in Go
Recently, I found myself trying to implement a mechanism, able to evaluate expressions. Essentially what I needed was a binary expression tree. I used Go for this project, and quickly came to a delightful surprise that using Go’s extremely powerful interface mechanisms, it became extremely easy to implement and extend.