Christopher Arndt

Results 235 comments of Christopher Arndt

It only varies by 1% between 19% and 20% regardless of audio input or not. Please note that I'm taking about DSP load as displayed in Carla, which I think...

This is what I observe with version 3.2.0 (compiled from git. same setup as described above): * If I add dragonfly-hall (LV2) to an empty Carla project, as long as...

@Kriechi It seems that only the fork (or original, depending on how you look at it) of `micropython-lib`at https://github.com/pfalcon/micropython-lib is maintained and developed any further, ATM. I could re-submit my...

micropython-lib already contains everything you need to achieve the same: ``` import urequests from urllib.parse import urlencode def get(url, params=None, **kw): if params: url = url.rstrip('?') + '?' + urlencode(params,...

I created a cut-down version of `urlencode` for my [mrequests](https://github.com/SpotlightKid/mrequests) module: https://github.com/SpotlightKid/mrequests/blob/25eac2977f75699985ab735a257c2b8ba9a7a2aa/urlencode.py Here's a usage example: https://github.com/SpotlightKid/mrequests/blob/25eac2977f75699985ab735a257c2b8ba9a7a2aa/examples/formencode.py

I have mixed thoughts about this proposal. A way to attach a longer note to a watson frame seems desirable. But: - It shouldn't change the established command line interface,...

Making a command line wrapper for editing should be easy and is more user-friendly IMO. I like the idea of a `-m` option for the `stop` command.

There's now a PR that implements this: #119

There's a new (natural language) date parsing library here: https://github.com/scrapinghub/dateparser (Haven't tested it yet.)

I experimented with `dateparser`a bit. I'm not so sure, I like it. It promises more that it can keep. All below are valid German date specifications. In German, for numbers...