Redux or MobX
most important rules that I can think of:
- react/jsx-no-bind (it gonna bost performance to another level)
- react/prefer-stateless-function (for performance)
# Compress file | |
zip compressed.zip file_name.txt | |
# Compress Folder | |
zip -r compressed.zip folder_name/ | |
# Uncompress zipped file to current directory | |
unzip compressed.zip | |
# Uncompress zipped to current directory to specific location |
git checkout master | |
git checkout -b bug123 | |
git pull http://repourl.git branch | |
git log | grep "Author" | head -1 # get the author | |
git checkout master | |
git merge --squash bug123 | |
git commit -a --author="Author" --message="Close #1: Title. Fixes #666" | |
git push origin master |