Plurrrr

Wed 27 Nov 2019

Python dataclasses and typing

I'm going to preach the wonders of Python dataclasses, but for reasons of interested to those who have already gone down the delightful rabbit-hole of typed Python. So let me start with a quick plug for mypy if you haven't heard about it.

Source: Python dataclasses and typing, an article by Russ Allbery.

5 Things to unlearn when learning Go

Learning Go has been a fun journey, and when youโ€™re used to writing a mainstream language such as Java or C# the learning curve isnโ€™t that steep. But there are some things I had to actively unlearn when learning Go. Most of the things here are not harmful to your code at all, and the code functions pretty much as intended anyway. The compiler will not come shouting at you, so perhaps the worst that could happen would be a nitpick comment on a code review. ๐Ÿ˜ƒ

Source: 5 Things to unlearn when learning Go, an article by Dylan Meeus.