William R Bauer
William R Bauer
0.18.10 fails to precompile on my system (Julia 1.6.3 official on Arch Linux 5.14.16) Here's the gist: ``` $ uname -r 5.14.16-arch1-1 $ mkdir test $ cd test $ julia...
Peter Norvig [wrote a 21 python line spelling corrector](http://www.norvig.com/spell-correct.html) which covers 80%-90% of English misspellings. The core of it is `edits1`: ``` def edits1(word): splits = [(word[:i], word[i:]) for i...
I had the half-serious idea of a swirlypy-enhanced stack exchange. UMBC students would post Q&A's and developers would code swirlypy units for problems which rise to the top. According to...
Commit [119e4858](https://github.com/SashaCrofter/swirlypy/commit/119e48580c14d88b75109700457db96b650f2af9) fixes a bug causing failure to detect changes to dictionaries, lists, etc., made in response to shell questions. Replacing `self.locals.copy` by `deepcopy(self.locals)` on line 124, Recording.py, was a...