ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
brew update
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
| @mixin background-image-retina($file, $type, $width, $height) { | |
| background-image: url($file + '.' + $type); | |
| @media (-webkit-min-device-pixel-ratio: 2), (-moz-min-device-pixel-ratio: 2) { | |
| & { | |
| background-image: url($file + '@2x.' + $type); | |
| -webkit-background-size: $width $height; | |
| } | |
| } | |
| } |
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
| #!/bin/bash | |
| ############################################# | |
| # AUTHOR: GUILHERME TEODORO # | |
| # MAC MINI VAULT - MAC MINI COLOCATION # | |
| # MACMINIVAULT.COM - @MACMINIVAULT # | |
| # VERSION 1.05 RELEASE DATE OCT 11 2013 # | |
| # DESC: THIS SCRIPT INSTALLS MySQL on OSX # | |
| ############################################# | |
| #REQUIREMENTS: | |
| # OS X 10.7 or newer |
NewerOlder