Bad news first. Python is a poor choice for concurrent programming. A principal reason for this is the 'Global Interpreter Lock' or GIL. The GIL ensures that only one thread accesses Python objects at a time, effectively preventing Python from being able ... (more…)
Read more »
Practicing my craft in public, sharing my experience along the way. Python, Kedro, JamStack, Gatsby, Data, Automation... (more…)
Read more »
Python implementation of Weng-Lin Bayesian ranking, a better, license-free alternative to TrueSkill - GitHub - OpenDebates/openskill.py: Python implementation of Weng-Lin Bayesian ranking, a bette... (more…)
Read more »
There are many ways to handle Python app dependencies with Docker. Here is
an overview of the most common ones – with a twist. (more…)
Read more »
Theano is a Python library that allows you to define, optimize, and
evaluate mathematical expressions involving multi-dimensional
arrays efficiently. Theano features: (more…)
Read more »