Inspired by Alex Gaynor’s “So You Want To Write An Interpreter?” PyCon talk, I decided I wanted to try to write an interpreter! In this post I’ll talk about writing Baby’s First Interpreter, porting my interpreter to RPython, and performing the translation.
Continue reading
As usual, some attempt to share my efforts making an even slightly informed decision about voting. More blather about propositions later.
Continue reading
Getting submissions to a Google Form to appear in a Slack chat is straightforward. You can use services like Zapier to do this, but it turns out to be easy to use Google’s scripting interface to get instant message-pushing without a third-party tool.
Continue reading
tl;dr: Please use -undefined dynamic_lookup
instead of -lpython
or -framework Python
to build Python extension modules on OS X, no matter what python-config
says. Only use -lpython
or -framework Python
if you intend to embed an interpreter.
Continue reading
Python 3.5 is scheduled to be released on September 13, 2015. Since Homebrew carries the newest stable version of its packages, the Homebrew python3
formula will adopt Python 3.5 very quickly upon its release. This post explains how migrating to Python 3.5 will affect Homebrew users who have set up a Python 3 development environment using Homebrew packages.
Continue reading