Stoufa

Results 7 comments of Stoufa

Continuing @rsail 's comment: ... and what can we do in the meanwhile (as a quick hotfix)? [EDIT] I found a similar tool called [serve](https://www.npmjs.com/package/serve), I hope this helps.

Same here ! Though, the map doesn't get resized ! If I were the maintainer of this library, I'll start by debugging the `overlay` method : the canvas alone can...

@gberrante Working perfectly, Thanks. You should make a PR by the way 😉

I was going to share the same solution as yours @terrosdesigns 😁 I hope they can add `langdetect` as a dependency to this project, this way, we can make `MyMemory`'s...

I have the same issue ! You have to add `u` before the string `detect(u'ض')` but what if the string is given by the user ?! how to deal with...

After few searches I've found this [Stackoverflow post](https://stackoverflow.com/questions/10406135/unicodedecodeerror-ascii-codec-cant-decode-byte-0xd1-in-position-2-ordinal), you have to add these 3 lines of codes in your script `import sys` `reload(sys)` `sys.setdefaultencoding('utf-8')` and convert the text to unicode...

FYI, the `eel.start("file_access.html", geometry={'size': (350, 150), 'position': (600, 600)})` didn't work in my case but the `eel.start("file_access.html", size=(350, 150), position=(300, 300))` alternative worked flawlessly. I'm using eel version *0.12.0*