Skip to content

Instantly share code, notes, and snippets.

@tessalt
tessalt / mixins.scss
Last active October 13, 2015 21:57
Mixins
%clearfix {
&:before, &:after {
content: " ";
display: table;
}
&:after {
clear: both;
}
}
@ryanflorence
ryanflorence / cs-iife.coffee
Created September 29, 2011 19:10
CoffeeScript Immediately Invoked Function Expressions
increment = do ->
x = 0
->
x++