In computing, memoization or memoisation
is an optimization technique used primarily
to speed up computer programs by storing
the results of expensive function calls and
returning the cached result when the same
inputs occur again.
— wikipedia
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
#!/bin/bash | |
# exit when any command fails | |
set -e | |
COMMAND=$1 | |
function clean() { | |
printf "🧹 Cleaning.. \n" | |
rm -rf ~/Library/Caches/CocoaPods Pods ~/Library/Developer/Xcode/DerivedData |
- Fork
- Clone your fork
- Add upstream : git remote add upstream <github_repo>
- git checkout master
- git pull upstream master && git push origin master
- git checkout -b feature-branch
- git push -u feature-branch
- Create de PR