Skip to content

Instantly share code, notes, and snippets.

View odf's full-sized avatar

Olaf Delgado-Friedrichs odf

View GitHub Profile
@odf
odf / Output
Last active August 29, 2015 14:08
Demo for small bug in transducers.js 0.2.3
Original:
.1.
.1.
.2.
.4.
.3.
.9.
.4.
.16.
[ 1, 1, 2 ]
@odf
odf / flux-csp-dispatcher.es6
Last active August 29, 2015 14:05
Asynchronous Flux-like dispatcher with deadlock prevention via Go-style CSP
// Asynchronous Flux-like dispatcher with deadlock prevention via Go-style CSP.
//
// - my libraries ceci-core and ceci-channel are available from npm
// - pre-compile this file with regenerator
// - build with webpack or browserify
'use strict';
var ceci = require('ceci-core');
var chan = require('ceci-channels');