Skip to content

Instantly share code, notes, and snippets.

#templatePreheader{
background-color:#e61c1c;
border-top:0;
border-bottom:0;
}
.preheaderContainer .mcnTextContent,.preheaderContainer .mcnTextContent p{
color:#fefefe;
font-family:Helvetica;
font-size:9px;
line-height:100%;
var pixelRatio = (window.devicePixelRatio >= 1.5) ? "high" : "normal";
ga('send', 'pageview', {'dimension5': pixelRatio});
@simondahla
simondahla / app.js
Created September 20, 2013 21:26 — forked from JacerOmri/app.js
var restify = require('restify'),
mongoose = require('mongoose');
var server = restify.createServer({
name: 'mongo-api'
})
server.listen(7000, function () {
console.log('%s listening at %s', server.name, server.url)
})
db = mongoose.connect("mongodb://localhost/example-api");