Kevin Sapper

Results 34 comments of Kevin Sapper

@paulvi sorry for the late response. gitdown does not care about the file extension. In our projects we're using `.txt`.

Hi @JamesRamm, that's a fair point in regards to the consumer groups. As of now you'll need a known consumer which receives the `VariableChanged` events and distributes them to a...

This is a line from the languagetool example with several errors in one line: ``` or use this text too see an few of of the problems that LanguageTool can...

I use the linux version of paperwork. My scans have about 1° skew. Currently I use imagemagic to correct the skew manually. Here's the output: ``` WARNING paperwork.paperwork No suitable...

No, I use a script that calculates the skew (see http://www.fmwconcepts.com/imagemagick/textdeskew/index.php) In libpillowfight you re-implemented some unpaper algorithms. Unpaper also implements deskewing maybe this is worth a try. Also this...

I'll have some time around easter to look into this.

Hi @jimklimov, I looked into this and figured out what is happening. In case an implied use (in other word a use nested inside another use) is redefined on top...

Hi, dharanikumarsrvnrntbci, short answer yes! `mlm_client_destructor` calls `s_accept_reply` as do any reply accepting messages. `s_accept_reply` itself will immediately return with -1 if zsys_interrupted is set because `s_accept_reply` may take an...

Uff...this is tricky. So here's one thought. I do build separate wrapper c-library which wraps the destroy calls so the signature is compatible to what ffi.gc expects as destructor. We...

But removing the gc function entirely would be the cleaner approach: https://cffi.readthedocs.io/en/latest/ref.html#ffi-gc `ffi.gc(ptr, None, size=0)`