Browsing all articles from July, 2010.
Creating an OS X Installer for Python modules and extensions
In the past, people have hassled me to make it easier for them to install my applications and libraries on OS X. I’m not very skilled with OS X, and searching for how to do this task took some time. I’ve made a script that does this in a modular way for Python. Specifically, this [...]
Python Google Chart 0.2.1 released
I just released pygooglechart 0.2.1. It has several bug fixes and minor additions, but the major change is that it now supports QR codes. You can quite easily create a QR code with pygooglechart as you can see below. from pygooglechart import QRChart # Create a 125×125 QR code chart chart = QRChart(125, 125) # [...]
Wireless Heatmap
I wrote an application to generate a wireless (802.11) heat map based on signal strength. The reason for it was to find the best place/area (for my laptop) to be with the highest signal strength. Below is a screenshot of the application (with the ESSID and BSSID removed for security reasons). This heat map has [...]