Skip to content

Instantly share code, notes, and snippets.

@rcaldwel
rcaldwel / gist:3106966
Created July 13, 2012 19:44
cisco: acl tcam issues
no hardware access-list update atomic ---> this brought TCAM util down
re-apply access-group to vlan interface
hardware access-list update atomic ---> this brought TCAM util back to where it was before
@rcaldwel
rcaldwel / gist:3084808
Created July 10, 2012 17:13
sublime: insert time
class InsertTimeCommand(sublime_plugin.TextCommand):
def run(self, edit):
from time import asctime
self.view.insert(edit, self.view.sel()[0].a, asctime())