Interfacing Python and C: Advanced “ctypes” Features
Learn advanced patterns for interfacing Python with native libraries, like dealing with C structs from Python and pass-by-value versus pass-by-reference semantics. (more…)
Read more »A “fold” is a fundamental primitive in defining operations on data structures;
it’s particularly important in functional languages where recursion is the
default tool to express repetition. In this article I’ll present how left and
right folds work and ho… Read more