#newbie
Read more stories on Hashnode
Articles with this tag
Today I found a small mistake in our codebase. The code was like this: type Foo struct { baz []int } // ... func (f *Foo) Fun(a int) { if...
Usually when doing any IO, either over network or against disk, there are always at least two options. Execute each IO operation by itself. Execute...
This is a story of an algorithm that is extremely useful, and it seems super simple to implement. Until you don't try to implement it yourself, and...