Skip to content

Instantly share code, notes, and snippets.

@criso
criso / gist:1149560
Created August 16, 2011 17:06
date shenanigans
var time = +new Date(); // get time
var d = new Date();
var month = ['jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug', 'sep', 'oct', 'nov', 'dec'][d.getMonth()];
@criso
criso / exports.readonly.js
Created August 13, 2011 23:07 — forked from 3rd-Eden/exports.readonly.js
Different ways of configuring nodejs
/**
* Configuration. This file is read only
*
* @api private
*/
module.exports = Object.freeze({
pewpew: "moo"
});
@criso
criso / api.js
Created July 24, 2011 15:44 — forked from fwielstra/api.js
Our controller refactored
module.exports = function(Thread, Post) {
return {
post: function(req, res) {
new Thread({title: req.body.title, author: req.body.author}).save();
},
list: function(req, res) {
Thread.find(function(err, threads) {
res.send(threads);
});
@criso
criso / api.js
Created July 24, 2011 15:43 — forked from fwielstra/api.js
An example NodeJS / Mongoose / Express application based on their respective tutorials
/* The API controller
Exports 3 methods:
* post - Creates a new thread
* list - Returns a list of threads
* show - Displays a thread and its posts
*/
var Thread = require('../models/thread.js');
var Post = require('../models/post.js');
@criso
criso / api-test.js
Created July 24, 2011 15:44 — forked from fwielstra/api-test.js
An example unit test for our save thread method
var nodeunit = require('nodeunit');
exports['API'] = nodeunit.testCase({
'The show() API method returns a specific thread by title and its replies by threadid': function(test) {
test.expect(4);
// our mock data
var posts = [{post: 'test'}, {post: 'test2'}];
var thread = {_id: '1234', title: 'my thread'};
Math[flag ? "min" : "max"](a, b)
// from uglifyjs
if (foo) bar(); else baz(); ==> foo?bar():baz();
if (!foo) bar(); else baz(); ==> foo?baz():bar();
if (foo) bar(); ==> foo&&bar();
if (!foo) bar(); ==> foo||bar();
@criso
criso / primer.js
Created September 16, 2010 14:36 — forked from makinde/primer.js
!function() {
var doc = document,
htm = doc.documentElement,
lct = null, // last click target
nearest = function(elm, tag) {
while (elm && elm.nodeName != tag) {
elm = elm.parentNode;
}
return elm;
};
@criso
criso / gist:086881ec8df844eda73a
Last active August 29, 2015 14:24
Flux dispatcher issues
// Scenario:
// Compnonent BAR requests data from the server via an action `REQ_BAR`
// Component FOO receives data from a previous request `REQ_FOO_SUCCESS`
// --- Cannot dispatch in the middle of a dispatch. --- error is triggered
// `WaitFor` doesn't seem right, since the stores for these two components aren't related e.g:
// The store used for component FOO does not need any data from the store used for component BAR
// ActionsCreators
// ===================
var ActionCreators = {
// Search form component
window.Ui = window.Ui || {};
Ui.SearchForm = (function() {
return flight.component(SearchForm);
function SearchForm() {}
}());
// validation mixin