(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| // This file allows us to inspect the traffic going over the Native <-> JS bridge, and can be | |
| // helpful for debugging. Setting this to true should never be committed to git | |
| const ENABLE_BRIDGE_DEBUGGER = false; // <-- THIS SHOULD NOT BE TRUE IN MASTER!!!! | |
| // if true, function arguments will get pretty printed | |
| const PRETTY_PRINT = false; | |
| // enable this if you want to ignore EVERY event, except for the ones that match the `FOCUSED_*` | |
| // constants. If true, you configure what you want to see. If false, you configure what you DONT | |
| // want to see. |
| /* | |
| do What The Fuck you want to Public License | |
| Version 1.0, August 2015 | |
| Copyright (C) 2015 Tomasz Kwolek. | |
| www.pastez.com | |
| www.cheerapp.pl | |
| Everyone is permitted to copy and distribute verbatim copies | |
| of this license document, but changing it is not allowed. |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| gifify() { | |
| if [[ -n "$1" ]]; then | |
| if [[ $2 == '--good' ]]; then | |
| ffmpeg -i $1 -r 10 -vcodec png out-static-%05d.png | |
| time convert -verbose +dither -layers Optimize -resize 600x600\> out-static*.png GIF:- | gifsicle --colors 128 --delay=5 --loop --optimize=3 --multifile - > $1.gif | |
| rm out-static*.png | |
| else | |
| ffmpeg -i $1 -s 600x400 -pix_fmt rgb24 -r 10 -f gif - | gifsicle --optimize=3 --delay=3 > $1.gif | |
| fi | |
| else |