Tag Archives: Python

Going to PyCon 2009!

I am going to my first PyCon this year! With programming in Python so much more both at work and messing around with various things at home, along with the additional tutorial day and great talks planned, this seemed like … Continue reading

Posted in Meta | Tagged , , | Leave a comment

Code navigation, completion and snippets in vim

In my last post on configuring vim as a (Python) IDE, there were two topics I forgot to cover and another I feel it necessary to amplify. The missing: viewing your code at a high level, and navigation therein; insertion … Continue reading

Posted in Programming | Tagged , , , , , | 15 Comments

Python and vim: Make your own IDE

I prefer to use vim for most of my systems administration and programming related editing tasks. Aside from the usual argument that it will be present on any *nix system worth its silicon that you log in to, I choose … Continue reading

Posted in Programming | Tagged , , , , , | 46 Comments

Elegant option checking with optparse

A fair amount of the Python code that I write is in the form of scripts designed for command line use. In support of sysadmin activities, data massaging, or other tasks, they often call for options to be passed and … Continue reading

Posted in CLI, Programming | Tagged , , , , , | Leave a comment

Easy and informative: Call graphs in Python

While I was looking for different graphing modules in Python, I came across pycallgraph. This module allows you to create a graph of all the different calls that occur between the time you initiate it and when you tell it … Continue reading

Posted in Programming | Tagged , , , | Leave a comment