General statistics
List of Youtube channels
Youtube commenter search
Distinguished comments
About
Lawrence D’Oliveiro
Fireship
comments
Comments by "Lawrence D’Oliveiro" (@lawrencedoliveiro9104) on "The shocking decline of Stack Overflow" video.
If a language reference is that complicated you need to have it handy for daily programming, then take that as a hint that the language is too complicated. I was able to internalize nearly all the core Python language after a few months of use. What I do refer to daily is the standard library docs (and docs for whatever other libraries I might need). Oh, and the page of the language spec listing the special method names.
7
But if it’s written in Rust, isn’t that violating Atwood’s Law?
2
3:10 Subtly wrong answer. The length of a string is measured in code points, not characters. Don’t believe me? Try this: from unicodedata import normalize s = "naïve" s1 = normalize("NFC", s) s2 = normalize("NFD", s) print(s1, s2, len(s1), len(s2)) Output: naïve naïve 5 6
1