Skip to content

Instantly share code, notes, and snippets.

@Stroked
Stroked / README.md
Created September 13, 2019 06:30 — forked from syntagmatic/README.md
Nutrient Parallel Coordinates IV
@Stroked
Stroked / .block
Created June 24, 2019 01:33 — forked from willzjc/.block
TimeLine
license: mit
@Stroked
Stroked / .block
Created June 24, 2019 01:32 — forked from willzjc/.block
Dendrogram + Grouped Horizontal Bar Chart
license: gpl-3.0
height: 1100
@Stroked
Stroked / .block
Created June 17, 2019 03:56 — forked from willzjc/.block
Matrix - Weighted with Legend
license: mit
@Stroked
Stroked / .block
Created June 6, 2019 15:22 — forked from pbeshai/.block
Animate thousands of points with canvas and D3
license: mit
height: 620
border: no
@Stroked
Stroked / slim-redux.js
Created March 9, 2019 15:52 — forked from gaearon/slim-redux.js
Redux without the sanity checks in a single file. Don't use this, use normal Redux. :-)
function mapValues(obj, fn) {
return Object.keys(obj).reduce((result, key) => {
result[key] = fn(obj[key], key);
return result;
}, {});
}
function pick(obj, fn) {
return Object.keys(obj).reduce((result, key) => {
if (fn(obj[key])) {