Kamil Monicz

Results 155 comments of Kamil Monicz

If the app uses the C locale (since the requested locale is not installed), I don't see it as much of a regex engine issue. The app should simply support...

1. Install Visual Studio Community 2. Open Fallen.sln file 3. Install **MSBuild.ILMerge.Task** package through NuGet Package Manager 4. Click F6 to build the project *(or build through the menu at...

I have also noticed the crashes, and reverting back to 3.9.10 indeed fixed the issue. I tested 3.9.11 and 3.9.12, and both had similar behavior. I face the issue randomly...

Context: I am just a random person - not a maintainer. I personally think the SimpleNamespace would work best but it can be simplified like that: ```py class NameSpaceState2(SimpleNamespace): """...

Major database solutions will only allocate as much space as needed. For example, you can check out the MySQL documentation at https://dev.mysql.com/doc/refman/8.0/en/char.html. The only thing to consider would be the...

randbytes is not cryptographically secure see https://docs.python.org/3/library/random.html#random.randbytes vs https://docs.python.org/3/library/os.html#os.urandom

Depends on the implementation, this specific one relies on cryptographically secure randomness: https://github.com/ahawker/ulid#components. ULID spec also recommends doing so: https://github.com/ulid/spec#components.

If you don't care about unpredictability, maybe consider using the thread lock feature - https://github.com/ahawker/ulid#thread-lock - it removes the randomness for quick sequential id generations.

I don't think this really resolves #8895.