Matthias Devlamynck
Matthias Devlamynck
While playing with the echo server example, I've noticed that if you feed the server with something like ```cat /dev/urandom | nc 127.0.0.1 12345``` it just buffers the input until...
@kindlychung: With your suggestion you would end up using the ones set for docopt. Having "docopt, version: 0.6.86" or whatever as a default version string for your program doesn't really...
Same issue with only the [WOT plugin](https://addons.mozilla.org/fr/firefox/addon/wot-safe-browsing-tool/) active.
I've encountered the same issue in tests: * we have multiple connections (different sqlite db in various states) * we run with kernel.debug=false to speed up the tests This results...
That's what I was afraid of. Maybe I can try to workaround this issue with z-index. Seems to work in some case but it's finicky. Thx for your quick answer...
Adding `pointer-events: none` on the children fixes the issue : https://ellie-app.com/pjcHxYdKbgKa1. I'm not sure how it could be integrated in pure elm in this lib though. At least it works...
The scheme described at the end of the article that support both boot and nkro would be defined as: ``` #[gen_hid_descriptor( (collection = APPLICATION, usage_page = GENERIC_DESKTOP, usage = KEYBOARD)...
I'd like to take a shot at the backend. I'm a bit confused by the graph in `docs/unified_comment_system` though. How is it supposed to be read?
Why use `PgConnetion` instead of the trait `Connection`? You can then use the real `PgConnection` in production and using a mock type implementing `Connection` during tests. Plus that would allow...
Basically the same as using an interface vs using a concrete type in other languages. Pros: would allow to: * write database agnostic applications * write tests not even touching...