Bogdan Popa
Bogdan Popa
@anildigital That's not an issue. Please read [this](https://github.com/jcollard/elm-mode#indentation).
I've run into this issue and created [watchdog_gevent](https://github.com/Bogdanp/watchdog_gevent). Hopefully it's of use to some of you.
@davidkhess It's drop-in. You `from watchdog_gevent import Observer` and it will return the best observer for the current platform. If gevent is available and `threading` is monkeypatched then it will...
Ah, I misunderstood. Yes, it probably does.
Thanks! I think it would be useful to provide hooks so that something like what you describe can be built on top of the library, but I'll have to think...
Yes, I think it'd be a good idea to support those. I was thinking it would be great if we came up with a standard interface for these protocols and...
Does it work if you encode the `%`? Eg. `example.com?param=%252A`?
Digging in a little bit, this appears to be a bug in `net/uri-codec` (unless I'm missing something): ```racket > (require net/uri-codec) > (alist->form-urlencoded '((param . "*"))) "param=*" > (alist->form-urlencoded '((param...
Yes, you're right. I was confused because I was comparing `alist->form-urlencoded` to Python's `urlencode`, which does encode `*`. Re. the overall issue, probably it would be better not to round-trip...