Skip to content

Instantly share code, notes, and snippets.

@mattroyer
Last active October 3, 2015 08:18
Show Gist options
  • Save mattroyer/2423834 to your computer and use it in GitHub Desktop.
Save mattroyer/2423834 to your computer and use it in GitHub Desktop.
Some on-the-fly JavaScript manipulation for - https://github.com/about/team
// Run these in your browser's script console
// Removes all employees that live in San Francisco
$('.employee_container:contains("San Francisco")').remove();
// NOTE: The following no longer applies as GitHub has changed the way employees are displayed
// Remove all employees that are not developers
$('.employee_container').not(':contains("Developer")').remove();
// Get a list of all github.com/ addresses for all GitHub employees
$('.employee_container a:only-child').each(function(index, address) { console.log(address.href + '\n'); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment