Skip to content

Instantly share code, notes, and snippets.

@Michaelgathara
Last active April 20, 2020 07:06
Show Gist options
  • Save Michaelgathara/4182f4e2091913f1bdb3c81fdddcfb7a to your computer and use it in GitHub Desktop.
Save Michaelgathara/4182f4e2091913f1bdb3c81fdddcfb7a to your computer and use it in GitHub Desktop.
Express.js server side random site sender
app.get('/random', function(req,res) {
var randomSite = [
"https://michaelgathara.com",
"https://wikiwand.com/",
"http://www.staggeringbeauty.com/",
"https://trypap.com/",
"http://www.omfgdogs.com/#",
"https://cat-bounce.com/",
"https://isitchristmas.com/",
"https://michaelgathara.com/yt",
"http://www.ihasabucket.com/",
"http://www.eelslap.com/",
"https://www.badgerbadgerbadger.com/",
"https://mdotnews.com",
"https://www.instagram.com/hooversfinestmemes_v.2/",
"https://www.instagram.com/alabamafinestmemes/",
"https://michaelgathara.com/instagram",
"https://michaelgathara.com/random",
"https://www.rock-paper-scissors-game.com/",
"http://hereistoday.com/",
"http://www.donothingfor2minutes.com/",
"http://weavesilk.com/",
"https://michaelgathara.com/explained",
"http://thequietplaceproject.com/thethoughtsroom/",
"http://www.rainymood.com/",
"http://tonematrix.audiotool.com/",
"http://www.picassohead.com/create.html",
"http://29a.ch/sandbox/2011/neonflames/",
"http://heeeeeeeey.com/",
"http://cat-bounce.com/",
"http://www.zefrank.com/snm/index.html",
"http://www.jacksonpollock.org/",
"http://www.staggeringbeauty.com/",
"http://www.unwrong.com/projects/fractalexplorer/",
"http://www.fallingfalling.com/",
"http://www.stumbleupon.com/su/7qCN6b/www.panoramas.dk/mars/mars-greeleyhaven2/tour.swf/",
"http://thequietplaceproject.com/thequietplace",
"http://www.barcinski-jeanjean.com/entries/line3d/",
"http://www.barcinski-jeanjean.com/entries/endlessintrestingness/"
];
res.redirect(randomSite[Math.floor(Math.random()*randomSite.length)]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment