Kim 金可明
Kim 金可明
I used https://github.com/Vimjas/vim-testbed before for my docker + travis tests. They compile from source and it works perfectly. Do you think you can allow support for older versions? It should...
> Since it does not support Linux NeoVim didn't add prebuild linux binaries into their releases, but they did support linux if you build it manually. This is why vim-testbed...
@zfanta I've never met the use case to use the `Redis.Cluster`, nor have I experience in that. Would you say it's basically adjusting the if-statement like so? ```ts if (redisOrOptions...
@mikeulvila so how would this be implemented? I'm fine if people want support for clusters, but I have no clue about how to implement it as I have no experience...
@uncodable we can combine your example like so: NOTE: this is just an idea, haven't tested it yet. ```ts return { ttl: rateLimitConfig.ttl, limit: rateLimitConfig.limit, storage: new ThrottlerStorageRedisClusterService( [redisRateLimitConfig.host], {...
@elucidsoft Feel free to submit a PR. I don't have this situation myself, so I can't test this.
Ah, yes. I started to make this project just for personal learning and then it received quite some stars in the last 48h. I don't use Windows, but I will...
@crashoverburn Since I don't use windows, I decided not to support it my self. if you can change the `~/.config/qbr` to be windows compatible and give me a PR, that'd...
@crashoverburn @honnzoun I think in order to make it work, you guys have to replace the following side `src/config.py`: ```py self.config_dir = os.path.expanduser('~/.config/qbr') ``` with ```py self.config_dir = os.path.expanduser('{}\\qbr\\'.format(os.environ['APPDATA'])) ```...
> EDIT: Now it says: AttributeError: module 'cv2.cv2' has no attribute 'freetype' For this, make sure you run `pip3 install opencv-python` _and then_ `pip3 install opencv-contrib-python`. The order here is...