Reece F

Results 17 comments of Reece F

As someone who doesn't use multipart form data requests, I can still see the value in it. It probably makes sense for this module to be able to parse multipart...

Coming back to this issue after 3 years, one of the many reasons I never adopted Prisma, it's sad to see we are still talking about workarounds 🥲 Needlessly recreating...

Facing this issue as well, are there any implications with changing from lazy/dynamic imports? I understand the rationale, but feel it could be an unnecessary optimisation. I'm working in large...

I've raised https://github.com/MONEI/Shopify-api-node/pull/634 to fix this with backwards compatibility

You are honestly better off using a library that has native bindings to tesseract. Or just replicate what this does, this library doesn't do anything special - in fact you...

Great work with this! Would it be worthwhile updating the README with an example, and point out that this feature requires at least version 3.03 of tesseract

I use tesseract very heavily from Java nowadays, and I don't think this problem can be solved in this project. You will need to use a library that provides bindings...

I don't believe that is supported by tesseract itself. Your best bet is to as part of your script retrieve the file and write it to disk then give it...

Here is a gist that: 1. Accepts multipart file upload via POST to /upload 2. Uses busboy to parse and stream that file to disk 3. Executes tesseract with the...