Skip to content

Instantly share code, notes, and snippets.

View jeffnem's full-sized avatar

Jeff jeffnem

  • Los Angeles, CA
  • 11:04 (UTC -07:00)
  • X @datamonk
View GitHub Profile
// ==UserScript==
// @name GitHub delete all notifications button
// @namespace http://www.github.com/micolous/delete-all-notifications
// @description Adds a button to allow you to delete all notifications on a page.
// @include http://github.com/inbox/notifications*
// @include https://github.com/inbox/notifications*
// ==/UserScript==
/*
@rogeliozarate
rogeliozarate / gist:804884
Created January 31, 2011 21:44
LS options to list a directory ordered by modified date
# bash
# unix, os x, ubuntu
# List directory ordered by modified date
ls -ltr
# -l long listing giving details about files and directories
# -t sort by time modified instead of name
# -r, reverse order while sorting