Skip to content

Instantly share code, notes, and snippets.

View rosiecakes's full-sized avatar

rosie ❤ rosiecakes

  • Connecticut
View GitHub Profile
@rosiecakes
rosiecakes / install.rb
Last active December 6, 2016 14:05 — forked from skyl/install.rb
Homebrew without sudo
#!/System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/ruby
# SET YOUR_HOME TO THE ABSOLUTE PATH OF YOUR HOME DIRECTORY
# chmod +x install.rb
# ./install.rb
YOUR_HOME = '/Users/shimadar'
HOMEBREW_PREFIX = "#{YOUR_HOME}/usr/local"
HOMEBREW_CACHE = '/Library/Caches/Homebrew'
HOMEBREW_REPO = 'https://github.com/Homebrew/homebrew'
@rosiecakes
rosiecakes / default
Last active May 13, 2016 20:37 — forked from DarrylDias/default
nginx config for gravcms
server {
listen 80;
server_name localhost; # Change this with your domain name
root /usr/share/nginx/html; # The place were you have setup your Grav install;
index index.php;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;