Guillaume Binet

Results 29 issues of Guillaume Binet

Test first on a raspberry Pi which modes we need then emulate them (c + proto + python)

enhancement

This one baffles me, the data is sent correctly from the currently hardcoded SPI code but with no clock.

It used to work "DonglePi" was sent as a device ID and the python code was picking that up. It broke when we upgraded asf the latest and greatest.

after #2: ./configure ``` checking for GNURADIO_CORE... configure: error: Package requirements (gnuradio-core >= 3) were not met: No package 'gnuradio-core' found Consider adjusting the PKG_CONFIG_PATH environment variable if you installed...

On arch, python is python3. I had to hack around my system to make it run with a dummy python script like this: ``` bash /usr/local/bin/python #!/bin/bash script=$(readlink -f --...

Why? It is really error prone to try to generate a markdown table from a jinja2 template. We could imagine a function in the jinja2 to take a list of...

type: feature
newcomer-friendly
#usability

if a command is taking minutes with yields, err should warn and block !reload on it. Maybe we can think of a force option to for quit them and killing...

type: bug
type: feature
feature: plugins

We have a lot of security features in errbot but not really a security guide that tight them all together.

type: documentation
newcomer-friendly
feature: ACLs

```python @arg_botcmd('hostname', type=str, template="search") @arg_botcmd('hostname2', type=str) def ddog_search(self,message, hostname=None, hostname2=None): return {'name': hostname, 'hostname2': hostname2} ``` doesn't work ```python @arg_botcmd('hostname', type=str) @arg_botcmd('hostname2', type=str, template="search") def ddog_search(self,message, hostname=None, hostname2=None): return {'name':...

type: bug
type: documentation
newcomer-friendly
#usability

If a plugin is marked as installed in the db but not present on disk, try to clone it. It is useful because errbot deployments can be "static" with this...

type: feature
newcomer-friendly