Change Apple OS X Dock size from Apple Terminal
defaults write com.apple.dock tilesize -int 32; killall Dock32 is icon size
Change Apple OS X Dock size from Apple Terminal
defaults write com.apple.dock tilesize -int 32; killall Dock32 is icon size
| cp /Applications/PhpStorm.app/Contents/bin/phpstorm.vmoptions ~/Library/Preferences/WebIde* | |
| echo -ne "\n-Dawt.useSystemAAFontSettings=lcd\n-Dawt.java2d.opengl=true" >> ~/Library/Preferences/WebIde*/phpstorm.vmoptions |
| # Laravel | |
| php -dmemory_limit=1G /usr/local/bin/composer install | |
| php -dmemory_limit=1G /usr/local/bin/composer update | |
| php -dmemory_limit=1G /usr/local/bin/composer require SOMETHING | |
| php artisan package:install lucadegasperi/oauth2-server-laravel | |
| # Git - Remove a folder without deleting locally | |
| git rm -r --cached folder_name | |
| # heroku |
I freaking love working with technologies like Grunt and Gulp, and wanted to share how to get my current EE front-end workflow set up. With a few tweaks, this can also be used with virtually any other sites (I've used it with Laravel, static sites, Craft, etc).
| -server | |
| -Xms512m | |
| -Xmx2048m | |
| -XX:MaxPermSize=512m | |
| -XX:ReservedCodeCacheSize=256m | |
| -XX:+UseCodeCacheFlushing | |
| -XX:+UseCompressedOops | |
| -XX:+UseConcMarkSweepGC | |
| -XX:+AggressiveOpts | |
| -XX:+CMSClassUnloadingEnabled |
| ----- BEGIN LICENSE ----- | |
| Andrew Weber | |
| Single User License | |
| EA7E-855605 | |
| 813A03DD 5E4AD9E6 6C0EEB94 BC99798F | |
| 942194A6 02396E98 E62C9979 4BB979FE | |
| 91424C9D A45400BF F6747D88 2FB88078 | |
| 90F5CC94 1CDC92DC 8457107A F151657B | |
| 1D22E383 A997F016 42397640 33F41CFC | |
| E1D0AE85 A0BBD039 0E9C8D55 E1B89D5D |
| -server | |
| -Xms512m | |
| -Xmx2048m | |
| -XX:MaxPermSize=512m | |
| -XX:ReservedCodeCacheSize=256m | |
| -XX:+UseCodeCacheFlushing | |
| -XX:+UseCompressedOops | |
| -XX:+UseConcMarkSweepGC | |
| -XX:+AggressiveOpts | |
| -XX:+CMSClassUnloadingEnabled |
| // Font Smoothie copyright 2013,14,15 Torben Haase <http://pixelsvsbytes.com> | |
| // Source-URL <https://gist.github.com/letorbi/5177771> | |
| // | |
| // Font Smoothie is free software: you can redistribute it and/or modify it under | |
| // the terms of the GNU Lesser General Public License as published by the Free | |
| // Software Foundation, either version 3 of the License, or (at your option) any | |
| // later version. | |
| // | |
| // Font Smoothie is distributed in the hope that it will be useful, but WITHOUT | |
| // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
| #!/bin/sh | |
| ### | |
| # SOME COMMANDS WILL NOT WORK ON macOS (Sierra or newer) | |
| # For Sierra or newer, see https://github.com/mathiasbynens/dotfiles/blob/master/.macos | |
| ### | |
| # Alot of these configs have been taken from the various places | |
| # on the web, most from here | |
| # https://github.com/mathiasbynens/dotfiles/blob/5b3c8418ed42d93af2e647dc9d122f25cc034871/.osx |