Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| /* bling.js */ | |
| window.$ = document.querySelector.bind(document); | |
| window.$$ = document.querySelectorAll.bind(document); | |
| Node.prototype.on = window.on = function(name, fn) { this.addEventListener(name, fn); }; | |
| NodeList.prototype.__proto__ = Array.prototype; | |
| NodeList.prototype.on = function(name, fn) { this.forEach((elem) => elem.on(name, fn)); }; |
| # MOJAVE: https://gist.github.com/kevmt/476716bfb0383d3fda699e4fcacc6470 | |
| # install brew | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| # Terminal Aliases | |
| echo "alias artisan='php $PWD/artisan'" >> ~/.bash_profile | |
| echo "export NVM_DIR=~/.nvm" >> ~/.bash_profile | |
| echo "source $(brew --prefix nvm)/nvm.sh" >> ~/.bash_profile |
| { | |
| "comment": "This is the settings file for the SVGO Compressor Plugin. For more info, please check <https://github.com/BohemianCoding/svgo-compressor>", | |
| "pretty": true, | |
| "indent": 2, | |
| "floatPrecision": 3, | |
| "plugins": [ | |
| { | |
| "name": "removeDoctype", | |
| "enabled": true | |
| }, |