Show HN: StumblingOn – Randomly find indie websites – recreating StumbleUpon
31–40 of 63 posts
Re: Show HN: StumblingOn – Randomly find indie websites – recreating StumbleUpon
#32Needs a way to flag abuse, like https://get portal.co/earlyaccess which is just some company's product with a slick sales site. First thing I got when I clicked :( Edit: another abusive link https://www.the followershop.com/ (i have broken the links to avoid any sort of SEO for them)
Good point. I have a "like" button in the history section. I will add a "report"/"bad"/"shouldn't be here" button to that as well.
Re: Show HN: StumblingOn – Randomly find indie websites – recreating StumbleUpon
#33Re: Show HN: StumblingOn – Randomly find indie websites – recreating StumbleUpon
#34I made something similar but a bit more random. https://randomdomain.benbristow.co.uk Keeps taking a random word from an English dictionary and a random popular domain extension (com/net/org etc.), pings it and returns the first one that responds. Quite fun once you sift through the parking pages. I need to work on something to detect those.
There is a class called fast.ai [1] which I personally found to be an amazing introduction to machine learning / deep learning. The first hour and a half course gets you using their library to make an image classifier that can differentiate dog and cat breeds. I bet by simply gathering training data (sites that are and are not parking pages) and reusing the same architecture used in that first class you could train a model that does a pretty good job of it.
Once you could classify pages you could just pre-compute a large list, classify, throwaway all the parking pages, and make the remainder available to your user.
Re: Show HN: StumblingOn – Randomly find indie websites – recreating StumbleUpon
#35Earlier quoted context omitted.
Good point. I have a "like" button in the history section. I will add a "report"/"bad"/"shouldn't be here" button to that as well.
Oh also for the sites marked down as bad, create a public /shame list that’s available as plain text/json and we can use it to add to block lists on our own projects.
Re: Show HN: StumblingOn – Randomly find indie websites – recreating StumbleUpon
#36Thank you! This is BIG! And this API endpoint is very interesting: curl -X POST "https://service.stumblingon.com/getSubmissions" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"status\":0}" More on API here: https://service.stumblingon.com/docs
Re: Show HN: StumblingOn – Randomly find indie websites – recreating StumbleUpon
#37Re: Show HN: StumblingOn – Randomly find indie websites – recreating StumbleUpon
#38Gosh I shudder thinking about how many countless malicious websites I visited in high school using StumbleUpon...
Re: Show HN: StumblingOn – Randomly find indie websites – recreating StumbleUpon
#39I made something similar but a bit more random. https://randomdomain.benbristow.co.uk Keeps taking a random word from an English dictionary and a random popular domain extension (com/net/org etc.), pings it and returns the first one that responds. Quite fun once you sift through the parking pages. I need to work on something to detect those.
I'm pretty sure with a simple keyword check, you can eliminate most of them. A small amount of fasle positives are ok in this case I guess.
Re: Show HN: StumblingOn – Randomly find indie websites – recreating StumbleUpon
#40Thank you! This is BIG! And this API endpoint is very interesting: curl -X POST "https://service.stumblingon.com/getSubmissions" -H "accept: application/json" -H "Content-Type: application/json" -d "{\"status\":0}" More on API here: https://service.stumblingon.com/docs
Thank you. I was wondering if people would find the API and do anything with it. You can use the same endpoint to check approved submissions (status: 1) and rejected submissions (status: 2) although currently there aren't very many rejected as I recently switched databases and didn't bother to transfer over rejected submissions.