Brainfreeze is an online multiplayer letter puzzle game that I wrote. The goal is to find the matching letter between two lists, racing against other people.
I wrote the game in the Python web framework Flask. The frontend is written in coffescript (which compiles to javascript) and uses socketio for communication with the server. Its hosted on a google cloud compute instance. You can play the game at http://brainfreeze.supernovaapps.com
Superwires is the graphics library that I wrote on top Pygames to make writing simpler games and other graphics applications easier. Its simple to use and powerful. It has over 10,000 downloads.
The screenshot is of its documentation at http://pythonhosted.org/SuperWires
You can look at its pypi listing at https://pypi.python.org/pypi/SuperWires
Partial function application is a very powerful operation available in some languages. It is available in python, but only through importing a module and calling another function, which can get cumbersome when done often.
Pypartial is a simple Python library that allows the use of partial function application notation in native Python. It is extremely useful when trying to write concise and clear code, and extends the ease offered by Python’s functional programming features.
I wrote it to work without having to extend the actual Python interpreter, relying instead on fancy tricks with operator overloading. The screenshot is that of the pypi listing, which contains some documentation, and is available here: https://pypi.python.org/pypi/pypartial/1.0.3
This is a chrome extension that changes your new tab page to display the newest images from a specified subreddit. I wrote this after a friend suggested it.
It loads the newest/hottest image from the subreddits you pick in the options page, and crawls them looking for image, imgur, etc. links and updates the new tab with them,