Skip to content

Instantly share code, notes, and snippets.

@LenzGr
Created September 13, 2021 08:25
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 LenzGr/5f1c2910e1a24ff3f63883dbc2ec523d to your computer and use it in GitHub Desktop.
Save LenzGr/5f1c2910e1a24ff3f63883dbc2ec523d to your computer and use it in GitHub Desktop.
Bookmarklet: show last week's PR activity
javascript:(function(){var LastWeek=new Date();LastWeek.setDate(LastWeek.getDate()-7);var Today=new Date();window.location.href='https://github.com/pulls?q=involves%3Alenzgr+updated%3A'+LastWeek.toISOString().substring(0,10)+'..'+Today.toISOString().substring(0,10);})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment