Python How to Think About Low-Latency Development with Python jbower, November 3, 2024March 17, 2026 Python is nobody’s first choice for low-latency systems. It’s interpreted, it has the GIL, and its dynamic typing adds overhead that compiled languages don’t have. Yet many of us build performance-sensitive systems in Python anyway, because the ecosystem, the iteration speed, and the team’s familiarity make it the pragmatic choice…. Continue Reading
Python How to Install Conda and Miniconda3 on Ubuntu 22.04 LTS jbower, February 8, 2023April 21, 2023 This morning I find myself working on a new data mining project that relies on Conda. I ran into a few issues along the way and decided to write this up. My pain is your gain! Next I visited https://docs.conda.io/en/latest/miniconda.html#linux-installers to find the correct installer for my version of Python… Continue Reading
Python Python Regex Examples with Notes jbower, July 2, 2018April 21, 2023 In this blog post you will learn about regular expressions (RegEx), and use Python’s re module to work with RegEx (with the help of examples). A Regular Expression (RegEx) is a sequence of characters that defines a search pattern. For loop to incorporate a regex search Regex example description for… Continue Reading