Skip to content

Instantly share code, notes, and snippets.

View eliseumds's full-sized avatar

Eliseu Monar dos Santos eliseumds

View GitHub Profile
@axxag
axxag / gist:f15aa329686cdd1a51f6dc344daaa9b8
Created May 9, 2017 18:19
Convert Flow to Typescript
find . -name "*.js" -exec bash -c 'mv "$1" "$(sed "s/\.js$/.tsx/" <<< "$1")"' - '{}' \;
find . -name "types.js.flow" -exec bash -c 'mv "$1" "$(sed "s/\types.js.flow$/index.d.ts/" <<< "$1")"' - '{}' \;
@brendanzab
brendanzab / reactive_systems_bibliography.md
Last active October 10, 2022 06:36
A reading list that I'm collecting while building my Rust ES+CQRS framework: https://github.com/brendanzab/chronicle

Functional, Reactive, and Distributed Systems Bibliography

Books

@jordwalke
jordwalke / gist:6350319
Last active September 10, 2016 16:27
ReactJS: JavaScript just like you've always done it.
/**
* ReactJS: JavaScript like you've always done it.
*
* This example renders your top ten most followed friends/followers, `filter`ing
* only your favorites, and putting a star on all verified accounts.
*
* With ReactJS, any time your data changes, the UI is always brought up to date
* automatically. If friends length changes, or followCount - it always shows what
* `render` describes.
*/