Ironlenny

Results 7 comments of Ironlenny

PAR2 is actually a rather simple spec. It defines a series of packets. What the type and size of the contents of each packet are. And what the algorithms are...

At the moment I'm just looking how to fit this to purpose. This is the formula outlined by the spec _as I understand it_: `recovery = (inputA * constantA ^...

That sucks. Thanks for the explanation. I don't envy you dealing with Wow interface's funky api.

I know this is error prone, but have you considered doing a simple sanity check on the file name? Mod authors typically append 'bcc' and 'classic' to non-retail versions.

Yes, the package should just try to compile, and return an error with a list of dependencies if it cannot. It is security threat to have a non-system package changing...

@Yanpas In Python there's thread-level concurrency and there's process-level parallelism. It sounds like what you want is thread-level parallelism. The GIL is what prevents thread-level parallelism. As far as I...