Peter Hunt
Peter Hunt
Could you check that you actually have ".mtk" files in "Documents/Mouse Tracks/Data"? It seems the generate images script can't find any for whatever reason. Bear in mind the script saves...
Ah glad to hear, I know things aren't particularly intuitive right now, I've got 5 years more experience though so v2 will eventually be a ton better when I get...
Each time an update rolls out, everyone is our company who uses Desktop is blocked until IT manually whitelists the new executables for each person, since they're using path based...
I'm getting same but with Python 3.7 and mypy 0.971: ```python dct: Dict[str, int] = {'a': 0, 'b': 1} result: List[str] = list(sorted(dct, key=dct.get)) ``` ``` error: Argument "key" to...
@victor-paltz Thanks, though I do like to avoid using `lambda` when more efficient ways are possible. In the end I just used `key=dct.__getitem__` instead.
Cool render and thanks for finding a workaround :) The whole codebase kinda stopped being supported after Python 3.7 (I see a few other errors attempting to run for 3.10)...
Thanks, and yeah I'm sadly aware launching it for the first time isn't easy, would have been happy to help out. My rewrite plan is to build everything from the...
I'll clarify the problem a bit as I've had it too. The way you've made it work is fine, but having the popup appear behind the mouse is annoying, as...
Yeah very sorry about that, I noticed that option afterwards and kinda forgot about this haha.
This solves the bug but introduces another one. It's cutting off every point below 0 latitude.  Seems to work with `!isNaN(latitude) && !isNaN(longitude)` instead.