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
{ | |
"schema_version": 1, | |
"name": "wohnungssuche", | |
"description": "This scenario is for apartment search in Hamburg, Germany. It has several event sources from building companies who have their own property ads on their website.", | |
"source_url": false, | |
"guid": "b157be4c66ae64b92ae4725fee342313", | |
"tag_fg_color": "#ffffff", | |
"tag_bg_color": "#5bc0de", | |
"icon": "home", | |
"exported_at": "2017-10-06T07:33:37Z", |
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
// Restify Server CheatSheet. | |
// More about the API: http://mcavage.me/node-restify/#server-api | |
// Install restify with npm install restify | |
// 1.1. Creating a Server. | |
// http://mcavage.me/node-restify/#Creating-a-Server | |
var restify = require('restify'); |
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 fs = require('fs'), | |
step = require('step'), | |
jsdom = require('jsdom'), | |
window = jsdom.createWindow(), | |
Script = process.binding('evals').Script; | |
window.document = {}; | |
window.Ext = {data:{Record:{}}}; | |
var fileNames = [ |
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 sys = require('sys') | |
, str = exports; | |
// generates those big random strings | |
str.uuid = function() { | |
var uuid = ''; | |
for (i = 0; i < 32; i++) { | |
uuid += Math.floor(Math.random() * 16).toString(16); | |
} | |
return uuid; |