Javascript must be enabled to continue!

Blog

Tag: programming (4) Back
Order of execution for property setters in Python

Properties are nice in Python, but how do they interplay with the magic method self.__setattr__?

Building Vim with Anaconda Python 3 on macOS

Building Vim on macOS from source, with Anaconda Python 3. 

Python pathlib conveniences I: Renaming files

For most file operations usually you use the os library. This leads to repeating and lengthy code. But pathlib offers a really convenient alternative.

Count items in an iterator in Python

Count the items that an interator has, without storing all items in memory.