Skip to content

Instantly share code, notes, and snippets.

View ealipio's full-sized avatar
:bowtie:
:)

Eisson ealipio

:bowtie:
:)
View GitHub Profile
@ealipio
ealipio / cloudSettings
Last active October 15, 2018 19:14
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-10-15T15:41:29.085Z","extensionVersion":"v3.1.2"}
@ealipio
ealipio / flatten.js
Created January 12, 2018 20:31
flatten an array
flattens = (arr) => arr.reduce( (flat, toFlatten) => flat.concat(Array.isArray(toFlatten) ? flatten(toFlatten) : toFlatten) , []);
@staltz
staltz / introrx.md
Last active April 18, 2024 15:33
The introduction to Reactive Programming you've been missing