Skip to content

Instantly share code, notes, and snippets.

@Gerst20051
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gerst20051/01e69e3cb742223adc78 to your computer and use it in GitHub Desktop.
Save Gerst20051/01e69e3cb742223adc78 to your computer and use it in GitHub Desktop.
Filter Github Feed
var clickIntervalId = setInterval(function () {
$('.js-events-pagination').click();
}, 2E3);
setTimeout(function () {
clearInterval(clickIntervalId);
$('.news').find('.create, .fork, .public, .issues_opened, .member_add').remove() &&
$('.watch_started').find('.title').find('a:eq(1):not(:contains("dynamics.js"))').closest('.watch_started').remove();
}, 20E3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment