This file contains hidden or 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
input { | |
stdin { | |
type => "stdin-type" | |
} | |
file { | |
type => "syslog" | |
path => [ "/var/log/*.log", "/var/log/messages", "/var/log/syslog"] | |
start_position => "beginning" | |
} |
This file contains hidden or 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 gulp = require("gulp"); | |
var less = require('gulp-less'); | |
var path = require('path'); | |
var jsx = require('gulp-jsx'); | |
var _ = require('lodash'); | |
var watch = require('gulp-watch'); | |
var plumber = require('gulp-plumber'); | |
var browserify = require('browserify'); | |
var reactify = require('reactify'); | |
var source = require('vinyl-source-stream'); |
This file contains hidden or 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 _ = require('lodash'); | |
var PUBNUB = require('pubnub'); | |
var Promise = require('bluebird'); | |
var secret = 'demo_secret'; | |
var pubnub = PUBNUB.init({ | |
publish_key: 'demo', | |
subscribe_key: 'demo', | |
secret_key: secret | |
}); |
This file contains hidden or 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
/* | |
* this object is a set of streams that can be subscribed to | |
* forworking with the minimal interface. | |
* | |
* up, down, left, right, enter | |
* | |
*/ | |
var Rx = require('rx'); | |
var _ = require('lodash'); |
OlderNewer