Skip to content

Instantly share code, notes, and snippets.

View smddzcy's full-sized avatar

Samed Düzçay smddzcy

View GitHub Profile
@smddzcy
smddzcy / .htmlhintrc
Created June 12, 2016 14:16 — forked from DrummerHead/.htmlhintrc
HTMLHint rules
{
"tagname-lowercase": true,
"attr-lowercase": true,
"attr-value-double-quotes": true,
"attr-value-not-empty": true,
"attr-no-duplication": true,
"doctype-first": false,
"tag-pair": true,
"tag-self-close": false,
"spec-char-escape": true,
@smddzcy
smddzcy / elixirphoenix.bash
Last active February 1, 2017 09:36 — forked from likethesky/elixirphoenix.bash
Installing Elixir & the Phoenix framework with Homebrew on OS X
brew update && brew doctor # Repeat, until you've done *all* the Dr. has ordered!
brew install postgresql # You'll need postgres to do this... you may also need to 'initdb' as well. Google it.
brew install elixir
mix local.hex
createuser -d postgres # create the default 'postgres' user that Chris McCord seems to like -- I don't create mine w/a pw...
# Install the latest Phoenix. It will give us the command `mix phoenix.new`
mix archive.install https://github.com/phoenixframework/archives/raw/master/phoenix_new.ez