Stephen Karl Larroque
Stephen Karl Larroque
@dhiltgen ### OS version Windows 11 pro. ### Personal system or work system Personal system. AV is Avira but I also used Avast in the past and I also tried...
Yes I also confirm that priority is normal, I even tried to set it to high using ProcessExplorer.
Ah sorry the instructions on pypi are outdated, but the ones in the github repo readme are correct. With the latest pip version as you are using, you need to...
Ok I figured it out @jcea , the issue is that since we do not use PEP517/518 in reedsolo < v2, cython is not a build requirement, so it must...
@jcea Ill provide more guidance in the docs, thank you for your suggestion. I am experiencing technical difficulties at the moment so I cannot do it right now, but I...
So I'm not sure what is going wrong, I did not know about Aztec codes before but they don't seem that different to QR codes, only the parameters differ, but...
Mmm thank you for raising this question. It's been a long time since I implemented these core details, but IIRC it was because Python is 0-indexed and if I tried...
Hello, Normally our library is mathematically standardized, I developed two different codebases (see also unireedsolomon) from two different approaches to ensure that it is universal. So either MATLAB's codec is...
Thank you for your feedback and your question. This is almost certainly due to the automatic chunking that is done in the `RSCodec.encode()` method. Although I agree it would be...
You mean this? ` from reedsolo import RSCodec rs = RSCodec(10) rs.gen #result: {10: bytearray(b'\x01\xd8\xc2\x9fo\xc7^_q\x9d\xc1')} ` Everything is exposed, so yes you can get the values of anything the codec...