Entries Categorized as 'Programming'

Cool Python Tricks

Date December 3, 2009 by Isaac

This is a very good article with lots of cools things that Python can do. Python Tips, Tricks, and Hacks Link Summary http://www.siafoo.net/article/52

Sending Email with Python

Date July 28, 2009 by Isaac

I feel like a proud father. Yesterday I posted my first public Python recipe. Go check it out: http://code.activestate.com/recipes/576858/. Link Summary http://code.activestate.com/recipes/576858/

Long Sleeps In Python

Date July 15, 2009 by Isaac

There is a portion of my test infrastructure that requires long sleep periods for stability soak testing purposes. So far the longest stability test run was 9 days. Originally, I simply used the time.sleep() method from the Python library. However, and I attribute this to VMware, I found that extremely inaccurate for long sleep durations. [...]

Packet Creation With Python

Date May 26, 2009 by Isaac

I work at a company that designs and builds network routers, so you can imagine that on occasion I need to create custom Ethernet packets for testing.  For hardcore traffic testing we’ve got some really expensive packet generator hardware that can send packets at full line rate.  For my tests I don’t need raw data [...]