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
| // default value {} wird nur genutzt falls gar kein Parameter übergeben wird | |
| // in dem Fall wird destructuring versucht und da {} leer ist kann weder a noch b aufgelöst werden | |
| // und es werden deren default Werte ( = 1 , = 2 ) genutzt (siehe http://wesbos.com/destructuring-default-values) | |
| function defaults({ a = 1, b = 2 } = {}) { | |
| console.log('a', a); | |
| console.log('b', b); | |
| } | |
| defaults(); | |
| // a 1 |
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
| /* | |
| A Revised Font Stack | |
| from A Way Back | |
| http://www.awayback.com/revised-font-stack/ | |
| */ | |
| /* |
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
| 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 |