Skip to content

Instantly share code, notes, and snippets.

#nginx config
upstream forwardedserver {
server 127.0.0.1:3030;
}
upstream forwardedsockets {
server 127.0.0.1:35729;
}
[
{
"name": "atom-beautify",
"version": "0.28.21"
},
{
"name": "atom-handlebars",
"version": "1.3.0"
},
@scottbert
scottbert / SassMeister-input.scss
Last active August 29, 2015 14:10
Bug in node-sass?
@function rep-prop($prefix, $value...) {
$rep:();
@each $item in $value {
@if(index($item, transform)) {
$rep: append($rep, #{$prefix}$item, comma);
} @else {
$rep: append($rep, $item);
}
}
@return $rep;