purpleP
purpleP
I've created [benchmark](https://gist.github.com/purpleP/626faf5c1cbcd204c6478f57e76dc518) that compares your current approach with the one I'm suggesting. You can run this with `pytest` and with `pytest-benchmark` installed. But here's the result on my machine...
Maybe something like adding `ensure_ascii` parameter into message kwargs or some other way.
HI, I think this would be a nice feature, because it would open all benefits of iterables in message processing code. It's basically what Scala's Akka and other stream libraries...
Idris (and Haskell I believe nowadays) have what they call typed holes. https://wiki.haskell.org/GHC/Typed_holes Idris (and maybe Agda) takes this further and even can automatically try to fit the hole for...
Now that vscode [presented](https://github.com/microsoft/vscode/wiki/Semantic-Highlighting-Overview) protocol extension there's not excuse to not doing it anymore :-) Also rust-analyzer already implemented it, would be nice to have this in "stock" rust language...
I’m trying to use voice control and I want to be able to easily select autocomplete items by saying things like `pick 13`. I need to see the ordinal numbers...
Suppose I want to fzy filter `grep -rHn` results. For me matches in file names are useless and just complicate things. If you would add something like `fzy --filter='cut -d"...
I've tried asynqp at first, but they for some reason don't allow coroutines to be message handlers, which is also insane (that's defiles the purpose of the library, don't you...
In python I've found that sometimes I need to change dictionary to a list of key, value pairs. So from that `{'key1: 'value1', 'key2': 'value2'}` `(('key1', 'value1), ('key2', 'value2'))` I...
@Raimondi I've created the [question](http://vi.stackexchange.com/questions/6907/vim-plugin-to-help-with-surrounding-things-in-brackets-quotes-etc) here. What do you think about adding this functionality or provide help in creating separate plugin?