This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Joel Walters | |
email: [email protected] | |
favSkills: | |
# Front-end | |
- skill-front | |
- tag-IE | |
- tag-mobile | |
- skill-ops | |
intSkills: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
accessibility: Accessibility | |
adminux: Admin/editor UX | |
analytics: Analytics | |
api: APIs | |
build: Build tools | |
ci: Continous integration | |
crm: CRM / Eloqua / SalesForce | |
css: CSS / SASS | |
db: Databases | |
dependency: Dependecy management |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env bash | |
PROBLEM="$(cat /etc/hosts | grep tableausoftware.com | grep -v '^#' | wc -w)" | |
SAY=${1:-"omg fix yer hosts"} | |
if [ "$PROBLEM" -gt 0 ]; then | |
say $SAY | |
fi |