Sébastien Celles

Results 294 comments of Sébastien Celles

@Keno what is missing here for this PR to be merged? Maybe some tests like mentioned in #36 ?

Ok, thanks, I saw https://github.com/sixty-north/asq/blob/389f647a7b7a2c4f64af22820713d2c3658d5068/asq/queryables.py#L92-L120 I wonder (for at least `Queryable._create(iterable)` if it wouldn't help to turn it to a `classmethod`. But I'm not sure how to tackle `Queryable._create_ordered(iterable, direction,...

This is how I handled this ```python from asq.queryables import Queryable, OrderedQueryable class Doable: def do_it(self): print("Let's do it with contex=%s" % self._context) class DoableResults(Queryable, Doable): def __init__(self, context, results)...

Here is a quite naive (and probably not very efficient) implementation ```python identity = lambda x: x def freqtable(iterable, func=identity, descending=True): ft = {} for elt in iterable: value =...

enum or boolean. It is as you want. My idea was using boolean, as in `reverse` parameter of `sorted` function sorted(iterable, /, *, key=None, reverse=False) or in Pandas `DataFrame.sort_values` method...

A boolean is simpler because it avoid having to import these enum values. but I noticed in your code that you are using order (-1 or 1) which is an...

not in a short time frame (unfortunately) https://github.com/pololu/dual-vnh5019-motor-shield/blob/6604394006b5c2f6a31a0407826771a96ac1782f/.travis.yml could be a first attempt I think it should be a good idea to normalize how/where tests files are stored in an...

No Jenkins experience on my side. Sorry.

Pint is a great Python library for units. http://pint.readthedocs.org/

I bought and received recently an Arduino MKRZero which is using a SAMD21 Cortex-M0+ 32bit low power ARM MCU. Any chance to have this MCU supported by arduino_ci ? Here...