Live data from Hacker News

Show HN: AboutIdeasNow – search /about, /ideas, /now pages of 7k+ personal sites

aboutideasnow.com

41–50 of 121 posts

Re: Show HN: AboutIdeasNow – search /about, /ideas, /now pages of 7k+ personal sites

#41
post #39
post #37

Earlier quoted context omitted.

Yes :( Do you have an idea of how to remove company websites in an automated way? I didn't want to manually review all 7k indexed websites. This is the GPT prompt I used for filtering domains to add, but it gives false positives: You are an API. Return a JSON array of booleans indicating whether each provided domain is someone's personal website. Use common sense. Make sure to return false for company websites.

Maybe change the API so that GPT can express uncertainty (make it a ternary value or even a confidence percentage), and then check the “uncertain” cases manually.

Great idea, I will try this. Thank you!!

Re: Show HN: AboutIdeasNow – search /about, /ideas, /now pages of 7k+ personal sites

#42
post #39
post #37

Earlier quoted context omitted.

Yes :( Do you have an idea of how to remove company websites in an automated way? I didn't want to manually review all 7k indexed websites. This is the GPT prompt I used for filtering domains to add, but it gives false positives: You are an API. Return a JSON array of booleans indicating whether each provided domain is someone's personal website. Use common sense. Make sure to return false for company websites.

Maybe change the API so that GPT can express uncertainty (make it a ternary value or even a confidence percentage), and then check the “uncertain” cases manually.

Yep, most of our systems end up exposing a parameter like that to the customer. Some people only like the system to take action if the system is very sure, hate incorrect action and prefer unprocessed stuff in a queue. Other customers hate unprocessed items and prefer to cleanup incorrect actions. Takes tinkering to find the best.

Re: Show HN: AboutIdeasNow – search /about, /ideas, /now pages of 7k+ personal sites

#43
post #37
post #34

Last I checked bleepingcomputer, ifixit, vibilagare.se, psyche.co and libreboot.org aren't personal sites. None of those actually have an /about page, yet your site says they do... Another funny thing: just search 404 or not found and you'll get a lot of 404 pages

Yes :( Do you have an idea of how to remove company websites in an automated way? I didn't want to manually review all 7k indexed websites. This is the GPT prompt I used for filtering domains to add, but it gives false positives: You are an API. Return a JSON array of booleans indicating whether each provided domain is someone's personal website. Use common sense. Make sure to return false for company websites.

For the 404s (assuming the status code isn't a 4xx), use a URL that you strongly suspect won't exist, then you can do a comparison (levenshtein distance, bag of words, etc.) to see if it's very similar to one of about, ideas, etc. pages.

Re: Show HN: AboutIdeasNow – search /about, /ideas, /now pages of 7k+ personal sites

#45
post #37

Earlier quoted context omitted.

Yes :( Do you have an idea of how to remove company websites in an automated way? I didn't want to manually review all 7k indexed websites. This is the GPT prompt I used for filtering domains to add, but it gives false positives: You are an API. Return a JSON array of booleans indicating whether each provided domain is someone's personal website. Use common sense. Make sure to return false for company websites.

For the 404s (assuming the status code isn't a 4xx), use a URL that you strongly suspect won't exist, then you can do a comparison (levenshtein distance, bag of words, etc.) to see if it's very similar to one of about, ideas, etc. pages.

> For the 404s (assuming the status code isn't a 4xx)

Most are a 4xx code, I checked myself, some may be 301/302 redirect to 4xx not being handled properly by their crawler

Re: Show HN: AboutIdeasNow – search /about, /ideas, /now pages of 7k+ personal sites

#47
post #45

Earlier quoted context omitted.

For the 404s (assuming the status code isn't a 4xx), use a URL that you strongly suspect won't exist, then you can do a comparison (levenshtein distance, bag of words, etc.) to see if it's very similar to one of about, ideas, etc. pages.

> For the 404s (assuming the status code isn't a 4xx) Most are a 4xx code, I checked myself, some may be 301/302 redirect to 4xx not being handled properly by their crawler

Good point. We're using https://crawlee.dev, I think there's a way to handle more status codes as errors...

Right now it only excludes pages based on the text content: https://github.com/lindylearn/aboutideasnow/blob/main/apps/a...

Re: Show HN: AboutIdeasNow – search /about, /ideas, /now pages of 7k+ personal sites

#48
post #10

Love it - I knew /about and /now but /ideas is new to me. I am adding this to my site as well. Do you filter results based on last update?

And to clarify, we made up the /ideas thing. But IMO it makes so much sense since /about and /now are about the past & present.

Because where else do you write about the future?

Post reply on HN