This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.Preloader({ | |
barColor : '#f57b50', | |
overlayColor : '#8e4d6b', | |
barHeight : '10px', | |
siteHolder : '#container' | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Uses MongooseJS to Connect to MongoDB | |
* .Maps out all collections within | |
*/ | |
var mongoose = require('mongoose') | |
, MONGO_DB = 'mongodb://localhost/test'; | |
mongoose.connect(MONGO_DB); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mpq.track('EventName', { some : 'data' }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var postage = require('postage')('YOUR API KEY'); | |
var options = { | |
recipients: '[email protected]', | |
subject: 'Subject Line', | |
from: '[email protected]', | |
content: { | |
'text/html': '<p>Some awesome content</p>', | |
'text/plain': 'Plain text goes here (if any)' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var app = angular.module('app', [], function($routeProvider) { | |
$routeProvider.when('/welcome', { | |
template : 'partials/welcome.html', | |
controller : WelcomeController | |
}); | |
$routeProvider.otherwise({ | |
redirectTo : '/welcome' | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var dude = require('./dude'); | |
dude.say('hey bro.'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ cd my_project | |
$ touch Makefile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var child | |
, stdout = '' | |
, stderr = '' | |
, exitCode = 0 | |
, vows = require('vows') | |
, path = require('path') | |
, assert = require('assert') | |
, request = require('request') | |
, spawn = require('child_process').spawn; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$route.when('/some/route', { | |
template : 'partials/some/route.html', | |
controller : SomeRouteController | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Setup Module with `highlight` filter | |
*/ | |
var JekyllApp = angular.module('JekyllApp', [], function($routeProvider) { | |
}); | |
JekyllApp.filter('highlight', function() { | |
return function(text, filter) { |