Skip to content

Instantly share code, notes, and snippets.

@onsi
Last active December 31, 2015 00:09
Show Gist options
  • Save onsi/7905121 to your computer and use it in GitHub Desktop.
Save onsi/7905121 to your computer and use it in GitHub Desktop.
Filter allocations down to my pivots
Goto:
https://allocations.pivotallabs.com/accounts/3/person_allocations
Run:
pivotRegexp = /Shusta|Foley|Atira|Yulia|Onsi|Vinson/
$('tr').each(function() {n = $(this).children(".name").eq(0).text(); if (n && !pivotRegexp.test(n)) {$(this).hide()}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment