Skip to content

Instantly share code, notes, and snippets.

View ChristopherKing42's full-sized avatar

Christopher King ChristopherKing42

  • Milky Way Galaxy
View GitHub Profile
@ChristopherKing42
ChristopherKing42 / trollboxMonero.js
Last active August 31, 2016 20:34 — forked from ifandswitch/trollboxMonero.js
Node.JS - Quick & Dirty Poloniex Trollbox IRC Relay. Debian/Ubuntu: apt-get install libicu-dev / NPM Modules: npm install autobahn ent irc irc-colors
// Poloniex Trollbox IRC Relay with filter
var autobahn = require('autobahn');
var ent = require('ent');
var irc = require('irc');
var c = require('irc-colors');
// set it up
var config = {
network: 'irc.freenode.net',
@ChristopherKing42
ChristopherKing42 / trollboxMonero.js
Last active September 30, 2016 06:00 — forked from xCoreDev/trollbox.js
Node.JS - Quick & Dirty Poloniex Trollbox IRC Relay. Debian/Ubuntu: apt-get install libicu-dev / NPM Modules: npm install autobahn ent irc irc-colors
var autobahn = require('autobahn');
var ent = require('ent');
var irc = require('irc');
var c = require('irc-colors');
var channelName = '##trollboxtest';
var captureDuration = 60 * 1000; // 60 seconds in milis
var wsuri = "wss://api.poloniex.com";
var connection = new autobahn.Connection({