Skip to content

Instantly share code, notes, and snippets.

View motiooon's full-sized avatar

Gabriel Baciu motiooon

View GitHub Profile
@motiooon
motiooon / gist:2962407
Created June 20, 2012 21:39
require modules
//Start all services by requiring the app.js and therefore executing the code within
module.exports.initialize = function(){
require('./ACCOUNTS/app.js');
require('./COLLECTIONS/app.js');
require('./IMAGE_PROCESSING/app.js');
require('./MEDIA/app.js');
require('./PAYMENTS/app.js');
require('./SEARCH/app.js');
require('./STORAGE/app.js');
/**
* User RESTful Routes
*/
var _ = require("underscore"),
helpers = require(".././helpers"),
fs = require("fs");
module.exports = function (app) {
UserSchema = new app.db.Schema({
userId : app.db.Schema.ObjectId,
username : { type: String, required : true, unique: true, index: true },
email : { type: String, required : true, unique: true, index: true},
password : {type: String, required: true},
createdFlows : Array,
contributedToFlows : Array,
created : { type: Date, 'default': Date.now }
});
/**
* Module dependencies.
*/
var express = require('express')
, routes = require('./routes')
, http = require('http'),
mongoose= require('mongoose');
@motiooon
motiooon / jitsu deploy logs
Created April 22, 2012 21:42
jitsu deploy logs
[04/22 17:39:20 EDT] Warning: connection.session() MemoryStore is not
[04/22 17:39:20 EDT] designed for a production environment, as it will leak
[04/22 17:39:20 EDT] memory, and obviously only work within a single process.
[04/22 17:39:20 EDT] node.js:201
[04/22 17:39:20 EDT] throw e; // process.nextTick error, or 'error' event on first tick
[04/22 17:39:20 EDT] ^
[04/22 17:39:20 EDT] TypeError: Parameter 'url' must be a string, not undefined
[04/22 17:39:20 EDT] at Object.urlParse [as parse] (url.js:92:11)
[04/22 17:39:20 EDT] at NativeConnection.open (/usr/local/src/motiooon/Codedify/package/node_modules/mongoose/lib/connection.js:121:15)
[04/22 17:39:20 EDT] at Mongoose.connect (/usr/local/src/motiooon/Codedify/package/node_modules/mongoose/lib/index.js:104:24)
@motiooon
motiooon / sum10.js
Created April 5, 2012 22:02
array sum 10
var a1 = {
"apple":9,
"pear":3,
"glos":8,
"mark":6,
"gogo":2,
"lulu":5
}
var a2 = [];
@motiooon
motiooon / gist:1659246
Created January 22, 2012 23:04
nodejitsu change password error
Last login: Sun Jan 22 17:04:44 on ttys005
GABRIELs-MacBook-Air:~ gabrielbaciu$ node -v
v0.6.4
GABRIELs-MacBook-Air:~ gabrielbaciu$ npm -g install jitsu
/usr/local/bin/jitsu -> /usr/local/lib/node_modules/jitsu/bin/jitsu
[email protected] /usr/local/lib/node_modules/jitsu
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]