Hi Giles,
Here are two ways which should get rid of GH's activity feed:
- a user-defined stylesheet to set display:none on the feed's root element (div.news)
- a user-defined javascript, using defunkt/dotjs, to remove the feed from the DOM.
E.g. for the second way:
$ cat ~/.js/github.com.js
$('div.news').hide()
Cheers,
Andy












