Virtualenv Quickstart Guide

I was searching for a nice virtualenv quickstart guide today, but couldn’t find one that I liked. Either they were outdated and still relied on easy_install, or they were too complicated. So here’s my own. Why use virtualenv? Virtualenv (http://www.virtualenv.org/) basically provides you with a full Python environment (and/or versions) inside a single folder. This […]

Read More

OAuth Needs To Die In A Fire

As a personal project I’ve recently been looking into creating a small Twitter client in Objective-C/Cocoa. This is largely because I quite like Objective-C as a language and haven’t had the chance to write anything significant in it, but also partly because Twitter have made the news recently with their API nuttiness and I wanted […]

Read More

Git Yer Hooks In

Git, like all good source control systems, allows you to customise the behaviour of the SCM when certain actions occur. For lots of people in lots of projects it’s not vital to use these hooks, but from time-to-time you find yourself repeating the same commands time-and-again. In these scenarios, it is worth looking into setting […]

Read More

A Whistlestop Tour of Python Requests

Return to our regularly scheduled technical blogging, I’m going to give a quick overview of one of the software libraries I know best: Kenneth Reitz’s Requests library for the Python programming language. Since I started making minor (and I mean really minor) contributions to the library, I’ve become increasingly familiar with its use and utility, […]

Read More

pythonpackages.com: pyformance 0.2

pythonpackages.com helps Python programmers package and release their software with just a few clicks. pyformance 0.2 pythonpackages.com recently processed it’s first official release via the new GitHub Service. As such, we are celebrating the release of pyformance 0.2! According to the author Omer Gertel: It’s a straight forward port of Coda Hale’s fantastic metrics package […]

Read More

Opalescent Olympics

Author’s Note: I’m taking a break from writing about tech to write about sports. Any readers who aren’t interested should wait until next week, when I sort-of-promise to write about the Python Requests library. Australian Opals enjoying their Bronze Medal victory. Image courtesy of London2012.com. The 2012 Summer Olympics are coming to a close. As […]

Read More

Codec Confusion in Python

Alright, I admit Alex Gaynor is a pretty clever guy but I was very close to strangling him today for this tweet: @alex_gaynor: WTF does str.encode or unicode.decode even do on Python2? And that’s because on the way to Python 3 these functions were removed because they cause confusion with people, but this broke a […]

Read More

Mail Loop From Hell

Found in #django on freenode, Jul 12, 2012. All names are edited. 11:16 < abrt> since it’s quiet in here I’ll tell you a story. 11:16 < abrt> back in 1992, I had just graduated university and was interning at a government facility in newport news 11:16 < abrt> along with some friends from college. […]

Read More

Pillow Moved to python-imaging Organization

On 7/30/2010 Pillow, the friendly PIL fork, was released. Since then, there have been a number of releases: $ vanity Pillow            Pillow-1.0.tar.gz     2010-07-31      800            Pillow-1.1.tar.gz     2010-08-01      652            Pillow-1.2.tar.gz     2010-08-02    1,987               Pillow-1.3.zip     2010-11-28      589               Pillow-1.4.zip     2010-11-28      587               Pillow-1.5.zip     2010-11-28      876               Pillow-1.6.zip     2010-12-01    6,706             Pillow-1.7.0.zip     2011-05-28      678             Pillow-1.7.1.zip     […]

Read More