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
{ | |
"nodes": [ | |
{ | |
"title": "Retweet", | |
"icon": "images/icons/twitter_64.png", | |
"top": 74, | |
"left": 269, | |
"compID": "twitter_retweet", | |
"id": "step_132" | |
}, |
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
{ | |
"nodes": [ | |
{ | |
"title": "Chargify", | |
"icon": "images/icons/chargify_64.png", | |
"top": 92, | |
"left": 265, | |
"compID": "chargify", | |
"id": "step_369" | |
}, |
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
{ | |
"nodes": [ | |
{ | |
"title": "Timeline", | |
"icon": "images/icons/twitter_64.png", | |
"top": 120, | |
"left": 289, | |
"compID": "twitter", | |
"username": "elasticio", | |
"backFill": "15", |
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
{ | |
"nodes": [ | |
{ | |
"title": "Facebook", | |
"icon": "images/icons/facebook_64.png", | |
"top": 146, | |
"left": 290, | |
"compID": "facebook_graph", | |
"id": "step_132" | |
}, |
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
{ | |
"nodes": [ | |
{ | |
"title": "Dropbox", | |
"icon": "images/icons/dropbox_64.png", | |
"top": 69, | |
"left": 285, | |
"compID": "dropbox", | |
"path": "tweets/drobiazko", | |
"id": "step_137" |
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
{ | |
"nodes": [ | |
{ | |
"title": "Retweet", | |
"icon": "images/icons/twitter_64.png", | |
"top": 174.23638405041834, | |
"left": 315.764161849711, | |
"compID": "twitter_retweet", | |
"id": "step_132" | |
}, |
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') | |
, request = require('request') | |
, htmlparser = require('htmlparser'); | |
var tasks = [ | |
function () { | |
var configFileName = './rss_feeds.txt'; | |
fs.exists(configFileName, function (exists) { | |
if (!exists) { | |
next('Create a list of RSS feeds in the file ./rss_feeds.txt'); |
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') | |
, completedTasks = 0 | |
, tasks = [] | |
, wordCounts = {} | |
, filesDir = './text'; | |
function countWordsInText(text) { | |
var words = text.toString().toLowerCase().split(/\W+/).sort(); | |
for (var index in words) { | |
var word = words[index]; |
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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel.Composition.Hosting; | |
using System.IO; | |
using System.Linq; | |
using System.Reflection; | |
using System.Threading.Tasks; | |
using Microsoft.AspNet.SignalR.Client.Hubs; | |
using System.ComponentModel.Composition; |
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
using System; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using Microsoft.AspNet.SignalR.Client.Hubs; | |
using Newtonsoft.Json; | |
using Newtonsoft.Json.Linq; | |
namespace SignalR | |
{ | |
class Synchronizer : IHubProxy |
OlderNewer