Fogging Your Google Search History with Python, Chromedriver and Reddit

In my attempts to white knuckle through the political root canal that was the American presidential election, I always went to as many different news sites as I could. If a story broke, I’d got to Fox news, CBS, Aljazeera, Politico– even fake news sit…

Similar

Constant Folding in Python

Every programming language aims to be performant and Python is no exception. In this essay, we dive deep into Python internals and find out how Python makes its interpreter performant using a technique called Constant Folding. (more…)

Read more »

Python Pickle’s Nine Flaws

Python’s pickle module is a very convenient way to serialize and de-serialize objects. It needs no schema, and can handle arbitrary Python objects. But it has problems. This post briefly explains the problems. (more…)

Read more »