2019-02-10
Escape analysis in Go

Escape analysis is a method for determining the dynamic scope of pointers.

Read More

2019-01-04
Emacs for Go development

I use Emacs for Go development and I really like it.

Read More

2019-01-01
Pointers vs values in Golang

In Golang the general recommendation is to use pointer receivers if there is a need to modify the data structure.

But then the question is can we still use value receivers even if we need to modify data?

Read More