#learning
Read more stories on Hashnode
Articles with this tag
We already discussed when to use constructors and when let the user of your library initialize their structures. The short version is that if the...
The Golang standard library comes with a simple interface, context.Context, which is a little harder to understand and use than the others. The...
Go standard library comes with a nice little structure that allows to stop long-running goroutines, when theirs result is not needed anymore:...
In go there are two ways to create structures. Either you instantiate the structure directly, populate its fields. Or you use a constructor, that will...
I saw few articles and tweets about how to pick an open-source project to boost a portfolio. They usually go around checking if the project is...
Intro Any developer of scientific software has found itself in the horrible situation of having a bug in the code and have no idea how to fix it. The...