Skip to content

Instantly share code, notes, and snippets.

View ptim's full-sized avatar

Tim Osborn ptim

View GitHub Profile
@ptim
ptim / .pdbrc
Last active April 27, 2023 18:44 — forked from reebalazs/.pdbrc
.pdbrc working with ipdb and PdbSublimeTextSupport
# http://stackoverflow.com/questions/12723375/python-line-highlight-on-sublime-text-2-from-ipdb
import pdb
from PdbSublimeTextSupport import preloop, precmd
pdb.Pdb.preloop = preloop
pdb.Pdb.precmd = precmd
try:
from ipdb.__main__ import Pdb as ipdb_Pdb
except ImportError:
@ptim
ptim / updateip.py
Last active August 29, 2015 14:07 — forked from hamsolodev/updateip.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Update Route53 DNS A name record for home IP.
#
# Uses the *route53* library, rather than boto.
from __future__ import print_function
import os
import re