this post was submitted on 15 Oct 2025
286 points (93.1% liked)

TechTakes

2253 readers
126 users here now

Big brain tech dude got yet another clueless take over at HackerNews etc? Here's the place to vent. Orange site, VC foolishness, all welcome.

This is not debate club. Unless it’s amusing debate.

For actually-good tech, you want our NotAwfulTech community

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] chuckleslord@lemmy.world 29 points 2 days ago (2 children)

... the search engines became crap because of ai

Plus, ai just lies. It's not a replacement

[–] __Lost__@lemmy.dbzer0.com 14 points 2 days ago (2 children)

Shitty search has been a problem longer than ai

[–] chuckleslord@lemmy.world 10 points 2 days ago (1 children)

If your definition of ai is only LLMs, sure. But it's been algorithmic tweaking and SEO wars for a while now.

[–] __Lost__@lemmy.dbzer0.com 6 points 2 days ago (1 children)

Well yeah, llm garbage is the problem being discussed. Do you consider SEO to be ai? I don't see why you would.

[–] chuckleslord@lemmy.world -1 points 2 days ago (2 children)

No, but the algorithms that search engines use to combat it is.

[–] dgerard@awful.systems 3 points 1 day ago

ah minor correction, you're on Lemmy not on Mastodon, the venue for this sort of tedious and point-avoiding pedantry

[–] Revan343@lemmy.ca 3 points 2 days ago

No, they aren't.

[–] atomicbocks@sh.itjust.works 0 points 1 day ago (1 children)

AI has been around since the 50s, Internet search has only been around since the 80s.

[–] __Lost__@lemmy.dbzer0.com 2 points 1 day ago

That is irrelevant. We are specifically talking about LLMs ruining Google searches, which is the last couple of years.

[–] UnderpantsWeevil@lemmy.world -4 points 1 day ago (1 children)

… the search engines became crap because of ai

I mean, search has always been built on some kind of LLM. That's how you convert a query into a list of page-results.

We've just started trying to wrap the outputs into a natural language response pattern in order to make them feel more definitive and more engaging. The "AI" part of search is mostly window-dressing.

Plus, ai just lies.

It has inaccurate heuristics and often tries to back-fill what it can't find with an approximation in order to maintain user engagement.

Idk if I'd even call it lying, so much as bullshitting.

[–] self@awful.systems 5 points 20 hours ago

I mean, search has always been built on some kind of LLM. That’s how you convert a query into a list of page-results.

no it fucking hasn’t. the stemming and page ranking algorithms used in traditional search have absolutely nothing to do with LLMs.

shit, neither stemming nor PageRank as originally defined even have a machine learning component. here’s postgres’ full text search suite, which literally converts a textual query into a list of results (sans page ranking, which is out of scope for a database) in a matter suitable for a production search engine, utterly without any machine learning or other stochastic crap.