Imagine and it is possible!Installing dependencies is such a pain! What if we could just point to a GitHub repo and just use whatever code is there? Python i... (more…)
Read more »
► Write Clean & Beautiful Python: https://dbader.org/pytricks-book It's easy to get tripped up by Python's "is" and "==" operators for object comparison. In ...
Read more »
Google and OpenMined have released PipelineDP, a new open-source library that allows researchers and developers to apply differentially private aggregations to large datasets using batch-processing systems. (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 »
Don’t override __hash__ and __eq__ to force objects to hashable. Use immutable objects instead. (more…)
Read more »