Skip to content

Instantly share code, notes, and snippets.

@luizbills
Created March 11, 2025 14:25
Show Gist options
  • Save luizbills/608a8a7cb5fac6dd36adff92ea222219 to your computer and use it in GitHub Desktop.
Save luizbills/608a8a7cb5fac6dd36adff92ea222219 to your computer and use it in GitHub Desktop.
Random webrings sites in bookmarklet

Create a new bookmark in your browser:

  • Name: Random Page
  • URL: javascript:%28%28%29%3D%3E%7Blet%20n%3D%5B%22https%3A//baccyflap.com/noai/%3Frnd%22%2C%22https%3A//geekring.net/site/6/random%22%2C%22https%3A//webring.dinhe.net/random%22%2C%22https%3A//webring.theoldnet.com/random/navigate%22%5D%3Bwindow.open%28n%5BMath.random%28%29*n.length%7C0%5D%29%7D%29%28%29%3B

Javascript code decoded:

(() => {
    let n = [
        "https://baccyflap.com/noai/?rnd", 
        "https://geekring.net/site/6/random", 
        "https://webring.dinhe.net/random", 
        "https://webring.theoldnet.com/random/navigate"
    ];
    window.open(n[Math.random() * n.length | 0])
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment