Skip to content

Instantly share code, notes, and snippets.

View robmadole's full-sized avatar

Rob Madole robmadole

View GitHub Profile
@robmadole
robmadole / makewsd
Created April 12, 2012 16:40
Command line util for using websequencediagrams.com
#!/usr/bin/env python2.7
import argparse
import urllib
import json
from os.path import realpath
parser = argparse.ArgumentParser(
"Use websequencediagrams.com to create diagrams from the command line")
parser.add_argument('file', help='path to the input file')
@robmadole
robmadole / sanecss.less
Created November 9, 2010 15:34
Good starting point for any project using CSS in LessCSS format
/**
* SaneCSS.less
*
* Solution for starting out with a good but basic CSS file. There are no vertical grids or media queries,
* just a reset, some sane defaults, and a configurable baseline grid.
*/
// Configure the baseline grid
@unit: 18px;