It is always good to have knowledge across different languages, we can use the tools interchangeably if we know of them. READ MORE
Tag: Golang
TypeScript has ‘using’ now, but we should avoid using it
About half a month ago, TypeScript 5.2 was released. In this new version, it introduced a new keyword using , which apparently is borrowed from C#. I’m not going to talk about what it promises or how to use it, rather, I’m going to diss it and READ MORE
A better way to deal with errors in Golang
The following kind of code has always annoyed me: But now I’ve finally found a way to write more efficient code: Check this package for more sugar tricks: https://pkg.go.dev/github.com/ayonli/goext READ MORE