Skip to content

Instantly share code, notes, and snippets.

View YewTreeWeb's full-sized avatar
💭
"Write code every day." - John Resig

Mathew Teague YewTreeWeb

💭
"Write code every day." - John Resig
View GitHub Profile
@shopifypartners
shopifypartners / a-beginners-guide-to-sass-part-3-interpolation.liquid.scss
Last active February 13, 2023 08:04 — forked from stewartknapman/style.liquid.scss
A Beginner's Guide to Sass with Shopify — Part 3: Sass interpolation, Workflow and Object Oriented CSS - https://www.shopify.com/partners/blog/a-beginners-guide-to-sass-with-shopify-part-3
// Escaping Liquid in SCSS.
//
// Expected output:
// a{
// color: {{ settings.link-color }};
// }
a{
color: #{'{{ settings.link-color }}'};
}
### Aliases
# Open specified files in Sublime Text
# "s ." will open the current directory in Sublime
alias subl='open -a "Sublime Text"'
alias phpini='cd /usr/local/etc/php/7.1; subl php.ini'
# Color LS
@trevorgreenleaf
trevorgreenleaf / .bash
Last active September 7, 2021 15:48
Laravel Valet on Multiple User Accounts
sudo rm -rf /usr/local/Homebrew/
sudo rm -rf /usr/local/var/homebrew/
sudo rm -rf /usr/local/Cellar/php71/
sudo rm -rf /usr/local/include/php/
sudo rm -rf ~/.valet
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew install homebrew/php/php71