Skip to content

Instantly share code, notes, and snippets.

View simien's full-sized avatar

sap simien

View GitHub Profile
@shashankmehta
shashankmehta / setup.md
Last active January 7, 2024 11:57
Setup PHP and Composer on OSX via Brew

First install Brew on your MAC

  • Setup Brew: ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
  • brew update
  • brew tap homebrew/dupes
  • brew tap homebrew/php
  • Install PHP 7.0.+ brew install php70
  • Install mcrypt: brew install mcrypt php70-mcrypt
  • Finally, install composer: brew install composer
@atelierbram
atelierbram / sass-convert_from-sass-to-scss.sh
Created January 25, 2014 18:31
Convert .sass syntax to .scss in terminal
# http://blog.teamtreehouse.com/the-absolute-beginners-guide-to-sass
# Enter the folder you want to convert in your terminal and type in:
sass-convert --from sass --to scss -R .
# where -R means recursively and . means the current directory.