create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
. ~/.bashrc | |
mkdir ~/local | |
mkdir ~/node-latest-install | |
cd ~/node-latest-install | |
curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
./configure --prefix=~/local | |
make install # ok, fine, this step probably takes more than 30 seconds... | |
curl https://www.npmjs.org/install.sh | sh |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
// If you using SweetAlert2 (Swal) and JQuery you can replace all alert and confirm that way. | |
// https://limonte.github.io/sweetalert2/ | |
// TIP: if you aren't using JQuery, use native JavaScript to create extend method. As bellow: | |
/* | |
function extend(a, b){ | |
for(var key in b) | |
if(b.hasOwnProperty(key)) | |
a[key] = b[key]; | |
return a; | |
} |
React Fiber is an ongoing reimplementation of React's core algorithm. It is the culmination of over two years of research by the React team.