Biggest draw for me with 1440p 32" is being the same DPI as a 1080p 24". I like to have one big monitor and then 2 small flank vertical monitors and having them all be the same DPI just makes headaches go away on every operating system I use them with.
> "Oh the Go dockerfile is smaller" Yes you compiled it and is running a binary. Big woop. Funny how the author not doing the same comparison with node
If I did that with Node, you would say what about Ruby.
If I did that with Ruby, you would say what about Zig.
There is no end to the list of languages.
> It's an artificial benchmark that means nothing in production
It was a cover illustration, I did not mention that at all.
In fact, I demonstrated the resource consumption of Python's docker image.
If you have suggestions to make the Python one, I am all ears.
We had little strings that encoded call signatures, like "iiff" for int int float float. Someone cooked up a way to have typescript validate the strings at build time, but the way it does typechecks against string literals like that seems to cause every string literal in your entire compilation to get validated in advance to figure out whether it could possibly be that specific type. Each possible value - let's say we had 'f', 'i', and 'l' originally and then we added a fourth option for 'd' - caused the typecheck time to magnify by increasing the possible options. IIRC.