Skip to content

Instantly share code, notes, and snippets.

source 'https://rubygems.org'
ruby '2.0.0'
group :development do
gem 'better_errors'
gem 'binding_of_caller', :platforms=>[:mri_19, :mri_20, :rbx]
@wishfoundry
wishfoundry / gist:1eb3a065007cf58f51b4
Last active September 19, 2017 01:02
List of active js libs for modern dev to keep an eye on

compiling a comparison for a blog article...

Observable streams

  • cujojs/most
  • Reactive-Extensions/RxJS
  • pozadi/kefir
  • baconjs/bacon.js
  • caolan/highland
  • pjeby/axos
  • raimohanska/ponyfood.js
@wishfoundry
wishfoundry / Buffer.js
Last active June 3, 2016 19:44
An implementation of Rx.ReplaySubject for cujo/most
var map = require("./collection").map;
var MAX_SAFE = Math.pow(2, 53) - 1;
/**
* buffer/cache
*
* @param {number} max
* @param {number} maxInterval
* @param {function} nowGetter
* @constructor