Michael
Michael
Because I struggled to solve this - the approach in https://github.com/rq/rq-scheduler/issues/98 worked best for me - give the job a particular id, only add it when missing.
There seem to be a lot of questions regarding this (#4, #13). It doesn't look like the observable support is going to get into react core so soon, and if...
The capabilities patch already contained an API change - the constructor no longer takes the number of profiles. Personally, I would take more time to collect a bunch of API...
My thoughts: - I'm not a fan of a `set(type=TextType.Bold)`-style API. That's a Java-ism to me. There isn't any benefit in Python compared to a string: `set(type="bold")`. Only now I...
I'd like to make a concrete API suggestion, based on what I wrote above, and would like to hear eveyrone's thoughts. ``` python # We can send explicit ESC/POS commands:...
@patkan Originally I thought about having a separate "LayoutEngine" class. But in my last proposal I changed my mind; it shouldn't be too complicated for the user. The `Engine` object...
The way I am doing this myself is, using knowledge of the column count, inserting the required amount of whitespace. I am using https://github.com/miracle2k/py-xml-escpos.
Unfortunately I never got around to implementing it, but if we were to separate the API into a low-level ESC/POS wrapper and a higher-level layout API (https://github.com/python-escpos/python-escpos/issues/176), we could implement...
I note that the default behaviour on mobile seems to be that only one of the handlers triggers, even if `waitFor` is not used. This is not the case on...
Why isn't the promise library supported anymore - or an equivalent? I want to use the dataloader pattern in a sync application. It's not even multi-threaded. All I want is...