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
import { thing } from "./other-file" | |
console.log("wat", thing) |
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
{ | |
"startedScraper": "04/07/2017 @ 14:57:04", | |
"startedCycle": "11/07/2017 @ 07:46:10", | |
"successfulCycle": "11/07/2017 @ 07:46:10", | |
"cycleCount": 8030, | |
"paused": false, | |
"phase": [ | |
"scraping", | |
"11/07/2017 @ 07:46:10" | |
], |
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
'use strict' | |
var cp = require('child_process') | |
var fs = require('fs') | |
var installOthersSetting = true | |
const GLOBAL_MODULES = __dirname + '/hacked_node_modules' | |
var mySetup = { | |
vjs: 'feature/consolidate', |
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 packagejson = { | |
"dependencies": { | |
"vjs": "git+ssh://[email protected]/vigour-io/vjs#develop" | |
} | |
} | |
var Observable = require('vjs/lib/observable') | |
var list = new Observable() |
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 pattern = { | |
'*': { | |
'*': { | |
'otherfile': true | |
}, | |
'master': { | |
'packagef.json': true | |
} | |
} | |
} |
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 obj1 = {} | |
define(obj1, 'firstkey', { | |
get: function() { | |
return 'firstkey value' | |
}, | |
enumerable: true | |
}) | |
var Obj2 = function() {} |
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
Data":{"NL":{"en":{"terms":{"0":{"text":true}}}}},"_v":{"ip-172-30-0-100":1413559158510.004}},{"mtvData":{"NL":{"en":{"about":{"0":{"title":true}}}}},"_v":{"ip-172-30-0-100":1413559158510.004}},{"mtvData":{"NL":{"en":{"about":{"0":{"img":true}}}}},"_v":{"ip-172-30-0-100":1413559158510.004}},{"mtvData":{"NL":{"en":{"about":{"0":{"text":true}}}}},"_v":{"ip-172-30-0-100":1413559158510.004}},{"mtvData":{"NL":{"en":{"faq":true}}}},{"mtvData":{"NL":{"en":{"shows":{"*":[[{"condition":{"title":{"$contains":""}},"sort":"title"},{"$":{"img":true,"title":true,"number":true,"seasonCount":true,"episodeCount":true,"subtitle":true,"duration":true,"description":true}}]]}}}},"_v":{"ip-172-30-0-100":1413559158510.004}}]}" +0ms | |
engine:socket packet +1ms | |
engine handling "GET" http request "/primus/?_primuscb=1413562666531-0&EIO=3&transport=polling&t=1413571208159-57&b64=1&sid=xL9wxwYa93CT3D6GAAAk" +26ms | |
engine setting new request for existing client +1ms | |
engine:polling setting request +0ms | |
engine handling "POST" http r |
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
module.exports = function makeStuff(n, uid) { | |
if (!uid) uid = 0; | |
var results = { | |
rooms: {}, | |
clients: {}, | |
users: {} | |
} | |
var room, client, user; |
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 Hub = module.exports = function(options) { | |
this.options = options; | |
this.view.init(this); | |
}; | |
require('./view'); | |
require('./log'); |