Quick Python Mailer
** This script need to be optimized. I am duplicating from and to fields
Read MoreMy tips, howtos, gotchas, snippets and stuff. Use at your own risk!
** This script need to be optimized. I am duplicating from and to fields
Read MoreQuick reminder of how to split a “ls -l” listing. It is problematic because the last field which is the
Read MoreA short write up on how to bootstrap a webpy app and at the same time show how to make
Read MoreI wrote a couple articles on respectively using sendmail and postfix to block outbound email and only allow selective domains
Read MoreA short script with descriptions for reading and manipulating xml. It seems like the python ElementTree module should be the
Read MoreNo doubt the Unix find and remove command comes in very useful when cleaning up large folders. However find can
Read MoreSometimes I want to email from Python and this is pretty easy. Or even just testing mail flow I prefer
Read MoreI use Python to pull Active Directory information sometimes. In my case mainly to report or view information but also
Read MoreQuick sort routine… def sort(array): if len(array)
Read MoreQuick and simple Python list with node insert capabilty. class Node: def __init__(self,value): self.data = value self.next = 0 class
Read More