Skip to content

Instantly share code, notes, and snippets.

@indigoviolet
Forked from shanechin1/date bookmarklet.js
Last active March 1, 2017 02:13
Show Gist options
  • Save indigoviolet/2b67ce49b8d942f687c83ed71f1b1f82 to your computer and use it in GitHub Desktop.
Save indigoviolet/2b67ce49b8d942f687c83ed71f1b1f82 to your computer and use it in GitHub Desktop.
PRs updated in last 7 days bookmarklet
javascript: (function(){
var d = new Date();
d.setDate(d.getDate() - 7);
window.location.href="https://github.com/pulls?utf8=✓&q=is%3Aopen+is%3Apr+involves%3Aindigoviolet+sort%3Aupdated-desc+user%3Afinventures+updated%3A>"+d.toISOString().substring(0, 10)
}());
/* I previously used the other comment style, which broke the bookmarklet */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment