Skip to content

Instantly share code, notes, and snippets.

View karlsander's full-sized avatar

Karl Sander karlsander

View GitHub Profile
@include add-grid(1);
@include add-grid(6 at 600px);
@include add-grid(12 at 1200px);
@include add-gutter(1/3);
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="robbyrussell"
@karlsander
karlsander / user_time.py
Created June 26, 2013 18:06
jenni user timezone module
import times
import json
filename = 'timezones.json'
timezones = {}
try:
timezones = json.load(open(filename))
except:
pass