An initiative to develop API standards for n-dimensional arrays and dataframes... (more…)
Read more »
Python is slow, and compiled languages like Rust, C, or C++ are fast. So when your application is too slow, rewriting some of your code in a compiled extension can seem like the natural approach to speeding things up. Unfortunately, compiled extensions ar... (more…)
Read more »
TLDR: I overview few error handling techniques (with the emphasis on Python, although I mention few other programming languages), some existing Python libraries and suggesting a
simple and clean mypy-based approach.
(more…)
Read more »
JSPatch is a library inspired by [mock.patch](https://docs.python.org/3/library/unittest.mock.html#patch) from python. It leverages Jest code transformations in order to modify files under test so that we can dynamically patch arbitrary identifiers.. Late... (more…)
Read more »
Python library to decode StarCraft II replay protocols - Blizzard/s2protocol... (more…)
Read more »