Confusable Characters
I was watching a presentation from David Flanagan that showed someone causing a lot of pain and confusion by replacing a c with a с in a YAML file.
A c with a с? Isn't that the same thing?
>>> x = 'c'
>>> y = 'с'
>>> x == y
False
The second characte...
leeg.hashnode.dev2 min read