brew uninstall php
brew uninstall php70
brew uninstall php56
| git config --global pull.rebase true | |
| git config --global branch.develop.mergeoptions "--no-ff" |
| blender-init() { | |
| database=${1:-blender}; | |
| echo ""; | |
| echo "Database"; | |
| echo "------------"; | |
| echo "Trying to create database '"$database"'" | |
| echo "create database "$database";" | mysql -u root -p; | |
| echo ""; | |
| echo "Laravel"; | |
| echo "------------"; |
| :root { | |
| --hex-width: 150px; | |
| --hex-background: #007593; | |
| --hex-color: white; | |
| --hex-height: calc(var(--hex-width) * 0.576923); | |
| --hex-small-border: calc(.5 * var(--hex-height)); | |
| --hex-large-border: calc(.5 * var(--hex-width)); | |
| } | |
| .hex { |
| let i18n = { | |
| previousMonth : 'Vorige maand', | |
| nextMonth : 'Volgende maand', | |
| months : ['Januari','Februari','Maart','April','Mei','Juni','Juli','Augustus','September','Oktober','November','December'], | |
| weekdays : ['Zondag','Maandag','Dinsdag','Woensdag','Donderdag','Vrijdag','Zaterdag'], | |
| weekdaysShort : ['Zo','Ma','Di','Wo','Do','Vr','Za'], | |
| } |
| # Save as app from Script Editor with option "stay open after run handler" | |
| # Set Chrome to open a specific page | |
| on idle | |
| tell application "Google Chrome" | |
| # No app window | |
| try | |
| if not (exists first window) then | |
| reopen | |
| set URL of active tab of first window to "https://spatie.be" |