#codenewbies
Read more stories on Hashnode
Articles with this tag
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...
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...
Intro The Single Responsibility Principle (SRP) is one of those simple ideas that enlight developers and scientists as well. When correctly following...
Intro Working in a code base with well-written functions is a pleasurable experience. Everything seems to flow, it is easy to understand what is...