Skip to content

Instantly share code, notes, and snippets.

iTerm2 – Useful Shortcuts (Mac OS X)

with a hat tip to Sublime Text 2 Shortcuts

The Awesome

⌘; autocomplete
⌘⌥B instant replay
⌘⌥E search across all tabs
@songxiaofeng1981
songxiaofeng1981 / mongo.py
Created October 25, 2012 06:08 — forked from kennethreitz/mongo.py
pymong: pymongo
import os
import pymongo
MONGO_URL = os.environ.get('MONGOHQ_URL')
if MONGO_URL:
# Get a connection
conn = pymongo.Connection(MONGO_URL)
# Get the database