Skip to content

Instantly share code, notes, and snippets.

View erquhart's full-sized avatar

Shawn Erquhart erquhart

  • USA
View GitHub Profile
INFO global: Vagrant version: 1.8.6
INFO global: Ruby version: 2.2.5
INFO global: RubyGems version: 2.4.5.1
INFO global: VAGRANT_OLD_ENV_HOME="/Users/serquhart"
INFO global: VAGRANT_OLD_ENV_PWD="/Users/serquhart/code/charter/vagrant"
INFO global: VAGRANT_OLD_ENV_LANG="en_US.UTF-8"
INFO global: VAGRANT_OLD_ENV_PS1="\\[\\033]0;\\w\\007\\]\\[\e[1m\\]\\n\\[\e[38;5;166m\\]\\u\\[\e[97m\\] in \\[\e[38;5;64m\\]\\w$(prompt_git \"\\[\e[97m\\] on \\[\e[38;5;61m\\]\" \"\\[\e[38;5;33m\\]\")\\n\\[\e[97m\\]$ \\[\e(B\e[m\\]"
INFO global: VAGRANT_OLD_ENV_LOGNAME="serquhart"
INFO global: VAGRANT_OLD_ENV_SSH_AUTH_SOCK="/private/tmp/com.apple.launchd.iu1OfmRNrx/Listeners"
INFO global: VAGRANT_OLD_ENV_TERM_PROGRAM="iTerm.app"
@erquhart
erquhart / foundation.css
Created August 16, 2012 18:52
Foundation Base Stylesheet
.c-1, .c-2, .c-3, .c-4, .c-5, .c-6, .c-7, .c-8, .c-9, .c-10, .c-11, .c-12 { float: left; }
.c-1, .c-2, .c-3, .c-4, .c-5, .c-6, .c-7, .c-8, .c-9, .c-10, .c-11, .c-12 { position: relative; min-height: 1px; padding: 0 15px; }
.c-1 { width: 8.33333%; }
.c-2 { width: 16.66667%; }
.c-3 { width: 25%; }
@erquhart
erquhart / gist:c4f2eb05d85830aec4f6
Last active August 29, 2015 14:11
Non-dry Galen spec snippet
@@ import ../../../meta/vars.spec
======================================================================================
mobile-nav-item-header css ul.mmenu-opened .main-link.active
mobile-nav-item-header-1 css ul.mmenu-opened li:nth-child(2) > .main-link.active
mobile-nav-item-header-2 css ul.mmenu-opened li:nth-child(3) > .main-link.active
mobile-nav-item-header-3 css ul.mmenu-opened li:nth-child(4) > .main-link.active
mobile-nav-item-list css ul.mmenu-opened .mmenu-super-submenu:not(.ng-hide)
======================================================================================
@erquhart
erquhart / init.js
Last active August 29, 2015 14:08
Galen Framework initialization
var GRID_URL = 'http://localhost:4444/wd/hub';
var GRID_URL_SAUCELABS = 'http://obfuscated-credentials@ondemand.saucelabs.com:80/wd/hub';
var GRID_URL_BROWSERSTACK = 'http://obfuscated-credentials@hub.browserstack.com/wd/hub';
var domains = {
local: 'obfuscated-url',
dev: 'obfuscated-url',
prod: 'obfuscated-url'
};