Skip to content

Instantly share code, notes, and snippets.

@satyr
Created June 1, 2010 21:17
Show Gist options
  • Save satyr/421511 to your computer and use it in GitHub Desktop.
Save satyr/421511 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name pythonchallenge linkedlist
// @namespace http://twitter.com/m_satyr
// @include http://www.pythonchallenge.com/pc/def/linkedlist.php?nothing=*
// ==/UserScript==
addEventListener('DOMContentLoaded', function(){
var [,next] = /next nothing is (\d+)/(document.body.textContent);
if(next) location.href = location.href.replace(/\d+/, next);
}, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment