Skip to content

Instantly share code, notes, and snippets.

@nicksnell
nicksnell / gist:4055679
Created November 11, 2012 17:50 — forked from lucasfais/gist:1207002
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

General

⌘T go to file
⌘⌃P go to project
⌘R go to methods
⌃G go to line
⌘KB toggle side bar
⌘⇧P command prompt
@nicksnell
nicksnell / csv_pass_mailer.py
Created September 2, 2012 20:11
Bulk Password Generator & Mailer
"""Utility to send passwords to a list of addresses in a CSV file"""
import os
import sys
import csv
import string
import smtplib
from email.mime.text import MIMEText
from random import choice, randint, seed
@nicksnell
nicksnell / wsgi.py
Created August 8, 2012 21:19
HTTP Auth for Django w/ Barrel
"""WSGI application file"""
import os
from django.core.wsgi import get_wsgi_application
from barrel import cooper
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'project.settings')
django_app = get_wsgi_application()