Skip to content

Instantly share code, notes, and snippets.

@jtwalters
jtwalters / jwalters.yaml
Last active January 1, 2016 23:36 — forked from doublejosh/favorite_work.yaml
Tableau Labels-based Issue Preference Profile
---
name: Joel Walters
email: jwalters@tableau.com
favSkills:
# Front-end
- skill-front
- tag-IE
- tag-mobile
- skill-ops
intSkills:
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
@jtwalters
jtwalters / 0_reuse_code.js
Last active August 29, 2015 14:12
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@jtwalters
jtwalters / omghosts
Last active August 29, 2015 14:02 — forked from angrytoast/omghosts
#! /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