This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## React Cheat Sheet | |
https://ihatetomatoes.net/wp-content/uploads/2017/01/react-cheat-sheet.pdf | |
## Project structure | |
https://github.com/BelinChung/react-native-hiapp | |
## Libs | |
https://github.com/airbnb/lottie-react-native Lib fantastica de animacoes | |
## Util Development |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var express = require('express'); | |
var app = express(); | |
var bodyParser = require('body-parser') | |
var fs = require('fs'); | |
// to support JSON-encoded bodies | |
// app.use(bodyParser.urlencoded({ // to support URL-encoded bodies | |
// extended: true | |
// })); | |
app.use(bodyParser.json({limit: '50mb'})); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set relativenumber | |
set number | |
set wildmode=list:longest,full | |
syntax on | |
colorscheme desert | |
set ruler | |
" Use spaces instead of tabs | |
set expandtab | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
eval $(thefuck --alias) | |
if [ -z "$TMUX" ] | |
then | |
tmux attach -t TMUX || tmux new -s TMUX | |
fi | |
bindkey -v | |
bindkey '^R' history-incremental-search-backward |
OlderNewer