Matvey Aksenov
Matvey Aksenov
Using Damerau-Levenshtein or whatever, we could compile a list of nearby but ultimately unused variables and complain about their existence.
Every once in a while, when I'm editing `A.hs`, the following happens: ``` --> /home/m/git/stuff/src/4913 --> /home/m/git/stuff/src/A.hs src/B.hs:10:20: Could not find module ‘A’ Use -v to see a list of...
So, I have a service that is basically a dumb pipe streaming data between two other (legacy) services. Said data can be in different formats and I'd like to use...
So, it seems that using `OsString` in place of `String`s can help to avoid some pretty pointless convertions (`OsString` -> `String` -> `OsString`) in the common case of putting filepaths...