Skip to content

Instantly share code, notes, and snippets.

View Swatinem's full-sized avatar

Arpad Borsos Swatinem

View GitHub Profile
15:15 <@isaacs> something i've noticed: .0 is effectively "preview release"
15:15 <@isaacs> i think it's ok to make minor API changes in .1
15:15 <@isaacs> but we should never tell anyone that.
15:15 <@isaacs> :)
15:16 <@isaacs> you can call 0.9.99 a preview release, but still no one will install it.
15:16 <@isaacs> until it has the actual "stable" flag on it, they're too scared.
15:16 <@isaacs> so we put that flag on it just a little bit before it's actually true.
@tj
tj / Makefile
Created January 12, 2012 04:56
Stylus web service makefile example
STYLES = $(wildcard stylesheets/*.styl)
CSS = $(STYLES:.styl=.css)
COMPRESSED = $(CSS:.css=.min.css)
all: $(CSS)
style.min.css: $(COMPRESSED)
@cat $^ > $@