Skip to content

Instantly share code, notes, and snippets.

@justinwinslow
justinwinslow / gist:6148354
Last active December 20, 2015 14:39
Marionette.js List Navigation Core
define([
'jquery',
'underscore',
'backbone',
'backbone.marionette',
'backbone.virtual-collection',
'hbs!navigation/templates/list',
'hbs!navigation/templates/listItem'
], function(
@justinwinslow
justinwinslow / gist:5882743
Created June 28, 2013 05:57
Baseline node.js nginx configuration
# Add multiple servers at different ports for load balancing
upstream node {
server 127.0.0.1:3005;
}
# the nginx server instance
server {
listen 0.0.0.0:80;
server_name {{ your_app_name }} {{ your.domain.com }};
access_log /var/log/nginx/{{ your.domain.com }}.log;
@justinwinslow
justinwinslow / gist:5861694
Created June 25, 2013 19:40
Dev Tools Magic Sauce
//Log events fired on given DOM element
monitorEvents(elem);
unmonitorEvents(elem);
//See a trace of how we reached this line.
console.trace();
//Performance timing
console.time('Timer');
console.timeEnd('Timer');
Timeseries format
{
device_legend: [device1, device2],
data_legend: [[dataType1, dataType2], [device2_dataType1]],
data: [
{
x: timestamp,
y: [
[
@justinwinslow
justinwinslow / Constructors, apply and call
Created May 25, 2013 20:38
Example of public/private properties in constructors and the difference between apply/call
//New constructor
var cons = function(){
var property_private = 'bye';
this.property_public = 'see ya';
//Instead of returning this, return only what needs
//to be accessible
return {
property_public: this.property_public,
method_public: function(){
/* Module */
define(['dep'], function(dep){
var Module = {};
// Instantiate a local controller
Module.controller = new Backbone.Controller.extend({
foo: bar
})();
@justinwinslow
justinwinslow / gist:4088942
Created November 16, 2012 16:55
Split module pattern
/*
DIRECTORY STRUCTURE
module1.js
module2.js
module2/
- model.js
- view1.js
- view2.js