Results 89 issues of Renato Alves

This is an incomplete attempt at implementing #60 Currently missing: - [ ] arguments in cases where files need to be uploaded - [ ] auto-generated docstrings For the remaining...

Mattermost has an optional [rate-limit option](https://api.mattermost.com/#tag/rate-limiting) that can be enabled by server admins. This feature works by setting `X-RateLimit` headers in HTTP API responses. Is there any way to access...

While searching for what is returned for each endpoint call, I'm finding myself constantly jumping between the [driver endpoint docs](https://vaelor.github.io/python-mattermost-driver/endpoints.html) the source links and https://api.mattermost.com/ often fumbling to find the...

When running: ``` msync my-symlink.txt ``` where `my-symlink.txt` is: ``` my-symlink.txt -> /some/location/large-file.txt ``` makuosan tries to transfer the symlink itself which succeeds (a symlink is created) but makuosan reports...

Dear Yasui, I've searched for a multicast file-transfer software that is easy to use and reliable and makuosan is by far the best I've encountered so far. It works as...

This issue is present as of commit 90c2194fd509cacf483b7c5c683788c8f32d6087 In my .vimrc I have: au FileType python noremap :call Pep8() au FileType python noremap! :call Pep8() and also: nm :TaskList But...

On https://www.haskell.org/hoogle/ (link in the readme) searching [`m (m a) -> m a`](https://www.haskell.org/hoogle/?hoogle=m+%28m+a%29+-%3E+m+a) shows `join` as first hit. This matches expectation. Using the command-line version (`hoogle --version -> Hoogle 5.0.17.1,...

In the example: class SomeClass(object): def some_method(self): return self.no_such_attr ``` def some_other_method(self): return self.no_such_method() ``` There is no error on line 3 nor on line 6 but running this code...

``` try: import simplejson as json except ImportError: import json with open('file.json') as fh: json.load(fh) ``` The previous block of code will generate the error "redefinition of unused 'json' from...

Most of the colors have a name associated with them. The (full?) list is available [here](http://vim.wikia.com/wiki/Xterm256_color_names_for_console_Vim). If not in visible form, include an option to yank the name of the...