Esteban C Borsani

Results 198 comments of Esteban C Borsani

The above should work, and I should change this https://github.com/nitely/Spirit/blob/master/setup.py#L22 to match windows only. Alternative: ``` pip install git+https://github.com/ddelange/python-magic.git@abi3-wheels --force-reinstall --find-links https://github.com/ddelange/python-magic/releases/expanded_assets/0.4.28.post7 ``` Until https://github.com/ahupp/python-magic/pull/294 gets merged and released.

if no dev in your project is on Windows, you can just remove it, yes.

I've documented a way to do *explicit* Future Cancellation [here](https://github.com/nitely/nim-async-cancel), the golang way.

There is also fetch streaming on browsers but for some reason they restricted it to half duplex, you either stream the request data or the response data, but not both....

That seems half-duplex. It does not matter that you can create a js stream out of a request/response. Full duplex allows to receive/send in a ping-pong way over one single...

I don't see how this is relevant to this issue, but good to know ig. > That's exactly what is happening in the linked plnkr. my bad, I only read...

I think this can be done without breaking changes or deprecations. Regex2 is a `distinct Regex`, so I could un-deprecate the `re` API, and then we can just do `Regex2(theRoute)`...

it breaks when using threads on orc https://github.com/nim-lang/Nim/issues/24621

I think imma wait for https://github.com/nim-lang/Nim/issues/17552 to be fixed, and implement this with globals for orc/arc only. Not sure.

`async` keyword would really help with the way I'm implementing exception tracking https://github.com/nim-lang/Nim/pull/24582 I believe.