On the Cutting Edge with the ESP32-S3
It’s been a while since I’ve posted – work and life have been busy! I’ve been dabbling with the new ESP32-S3 DevKitC boards from Espressif – I have the ESP32-S3-DevKitC-1-N8R2 […]
It’s been a while since I’ve posted – work and life have been busy! I’ve been dabbling with the new ESP32-S3 DevKitC boards from Espressif – I have the ESP32-S3-DevKitC-1-N8R2 […]
My day job has been keeping me busy, and I haven’t had a lot of spare time to work on projects or to even read (I’ve got quite the backlog […]
I’ve added a gist with the details of how to build Python (3.4, 3.5, and even 2.7) on a Raspberry Pi 2 (it may also work on a regular old Pi […]
I am a proponent of not rebuilding binaries when possible (thanks to Gohlke’s Unofficial Windows Binaries for Python Extension Packages site and the Python wheels), but there are many times I need to rebuild […]
I recently purchased the Writing Idiomatic Python bundle by Jeff Knupp (at http://www.jeffknupp.com/writing-idiomatic-python-ebook/). As I continue to refresh and reinforce my Python knowledge I figured it’d be handy, and indeed it turned […]
The other day I found myself wondering how to perform bitwise rotations in Python, particular bit rotations (circular shifts). There’s lots of complex ways to do it – bitstring, bitarray, and […]
Note: this is directed at Python 2.7 developers, but the same principles should apply to Python 3.x as well. First, a shout-out for the Unofficial Windows Binaries for Python site: as […]