Also posted today is this HN thread:
https://news.ycombinator.com/item?id=49536375
Containing this link:
https://trellner.com/reports/manufactured-sources-behind-ai-...
Which has the exact same layout and very similar About page as "trellner.com"
>>Both URLs were registered yesterday!<<
The "Leadership" photos all look the same, with the AI-airbrushed style. Also amazing how they both only have three people. What a coincidence.
I can't find any of the supposed "Leadership" team on Linkedin. Some of them have unusual names, which cut through the hundreds / thousands of results.
It's a worrying how easily this sort of BS is becoming. It takes far more time to debunk it then to create it. Now you could basically script this and have 100 pages by this time tomorrow, with different styles and URLs and leadership teams (along with professional portraits)...
If they'd let the URLs age a bit, and maybe not registered them on the same day, used slightly more common names, and changed the styles, it would have been much harder to definitively debunk.
Smells like the user has been hacked.
BTW, this post would be more convincing if it wasn’t written in Claude voice itself!
You need cheap, fast inference to put on a search results page and finish near the deadline (~3 seconds). Cheap, fast inference is more likely to get stuff wrong. No one is happy.
My understanding of Google politics is that the small number of search team members who implemented any given 6-month-old feature will be happy as they will have been promoted away from the team and not responsible for maintenance nor quality.
Northern Belgium and the Netherlands have web content in the same language. But google uses the content in one lump. Problem is when you search for employment/fiscal/legal/… you constantly get content that applies to the wrong nationality.
It's not 2/3 correct, it's <1% correct, in my experience. Maybe it's because I check things that sound off more frequently, but even random checks have not panned out well.
Anybody relying on Google AI summaries is misinforming themselves.
When you point it out, it’ll do the “ohh you’re absolutely right!” bs. Marketing material and management that believes the material wants to pretend that AI agents are junior employees, but forget that junior employees get fired for doing something like this.
The search result showed a paragraph containing the searched word, the website did not
(see https://news.ycombinator.com/item?id=49536375, left a comment there also)
xyz
xyz_citation
The latter was just the node number. So then my code could extract the exact snippet, instead of trusting the LLM to quote something verbatim.Please notice the internal contradictions here.
What is that supposed to mean? They're trying to be an llm search engine that's not some radical new concept
Now do OpenEvidence :)
It creates citations and references that look close enough to be plausible but are just made up of thin air. CA passed a law explicitly requiring lawyers to review AI-generated documents that is now before the governor for signing (previously, lawyers were ethically expected to review documents submitted to the court or provided to clients but that doesn't have the same level of force as an explicit requirement).
Trump Media and Technology Group announced that it partnered with Perplexity to test and integrate an AI search feature, referred to as Truth Social AI or Truth Search AI, directly into the Truth Social platform.
(I just use the free account from truth+ to waste their money)
how do you reverse a linked list in python
Answers Sources Use either an iterative pointer-reversal approach or a recursive approach. The standard iterative version is the most common and runs in (O(n)) time with (O(1)) extra space:
class ListNode: def __init__(self, val=0, next=None): self.val = val self.next = next
def reverse_list(head): prev = None curr = head
while curr:
nxt = curr.next
curr.next = prev
prev = curr
curr = nxt
return prev
If you already have a Python list, reversing it is simpler with slicing: items[::-1], but that is not a linked list reversal.How?