Hacker Newsnew | past | comments | ask | show | jobs | submit | skrellm's commentslogin

> I really, really disagree with that statement.

But you're wrong, although not for the reasons you think (suggested by your examples).

> I don’t think ai models come close to nuclear weapons

Unless AI models are controlling the drones/icbms carrying those. https://www.theguardian.com/technology/2026/aug/18/autonomou...

> or to run-of-the-mill, everyday carbon emissions

Unless AI models are responsible for those said emissions. https://arstechnica.com/tech-policy/2026/08/amazon-funds-big...

> What’s the most dangerous thing that’s happened with an LLM so far?

That it's built solely on "trust me, bro"?

> right now I am not concerned at all.

You should be. There's no scenario where this ends well: if AI labs succeed, we all will loose our jobs. If they fail, then the bubble bursts. Economic crisis is inevitable either way, and that's just the tip of the iceberg.


> If companies are willing to pay top dollar for the best models

But they are not willing to pay. https://news.ycombinator.com/item?id=49566137

The referenced NYT article says Open Source LLM's market share increased to 58% from yesteryear's 10%.


(58% on OpenRouter)

I believe both things can be true. OAI/Anthropic selling more tokens than ever, and downloadable weight models increasing in market share.

I doubt OpenAI would copy Fables pricing if it wasn’t financially beneficial. They can only burn through VC funding for so long.


This is great! It can finally substitute the entire upper management!

Their job is easier to automate than an engineer's or any creative's, and considering their salary it's a lot more gain for any company!


> Class action civil case should still be doable?

Nope, because there's a stance in EULA's footnote (with extremely small letters) that you give up your rights to class action civil case.


So you've verified this? In this specific case? Or are you just being a wise guy.

Regardless, these sorts of things have been fought before, over and over. Often, courts don't care about an EULA when wrongful action has been taken.

The jurisdiction matters too, of course.


> So you've verified this?

Yes, verified. I would not have said it otherwise.

https://www.playstation.com/en-us/legal/terms-of-service/

> 14.5. Class Action Waiver. > YOU AND THE SONY ENTITY WITH WHICH YOU HAVE A DISPUTE AGREE THAT ARBITRATION WILL BE CONDUCTED ONLY ON AN INDIVIDUAL BASIS AND NOT IN A CLASS OR REPRESENTATIVE ACTION [...]

> Regardless, these sorts of things have been fought before, over and over.

This specific case BTW: https://storage.courtlistener.com/recap/gov.uscourts.cand.47...

I'm no lawyer, but IMHO they probably will reply that Sony has indeed violated CA. AB 2426 (effective since 01-jan-2025) and that Sony illegally tried to restrict customer rights in the first place, as per McGill v. Citibank https://law.justia.com/cases/california/supreme-court/2017/s...


Thanks. I'm in Quebec, and there are very strong protections here, consumer wise.

But it's Napoleonic civil code, so sometimes things don't work out as my common law brain thinks.

(It'll be interesting to read your California link.


> the actual main problem are those people who underestimate the capabilities of AI

Nope. The actual main problem are those people who totally ignore the real costs of AI.

Remind me, when was the last time when billions and trillions of dollars were spent on workers (education, healthcare, insurance, etc. all together)?

You try to compare the capabilities without comparing the costs. That won't do.


And who is going to pay the bills for that?

No AI companies were able to make profit so far, and unemployed masses surely won't buy expensive ChatGPT subscriptions.

Will AI labs make profit from AI using companies? Hardly, unemployed masses can't and won't buy their products either, therefore they won't be able to afford even more expensive ChatGPT Enterprise subscriptions. (For crying out loud, even big corps like Uber can't pay all their AI bills.)

And if AI labs have no profits, how are they supposed to pay the hyperscalers for computing capacity? They will run out of investor money pretty soon.

And if hyperscalers can't rent out their data centers to AI labs, how are they supposed to pay for the electricity (gas/diesel/etc.) and water bills and repay their already enormous debts?

I honestly don't see how replacing all workers with AI could be profitable at all.


I do not disagree with you, but I think they will try to do it anyway


yea that's kind of the crux in this whole mess we are in:

It doesn't really matter how right or wrong anyone is... They are driving and we are along for the ride.


A few are deciding to take a massive, extremely risky bet on behalf of the entire world population. And of course they are the ones insulated from any potential disaster


Meta is planning to use their own AI to replace their workers. They are spending hundreds of billions of datacenters. If they cut 30,000 workers thats around 15 billion a year in savings. Once their own workers are replaced they plan to sell their AI agents to small businesses for use on their platforms.


Thats what the article is about, and how that backfired


The article just shows it was too early in May 2026.


so mark's gonna try again next year


> I'm not sure its really correct to call UEFI programs bare metal.

I think you can. UEFI is a firmware which comes with the hardware, stored on the motherboard. It's there and automatically runs when you turn on your machine.

It's okay to consider the firmware part of the "bare metal", IMHO.


> It's okay to consider the firmware part of the "bare metal", IMHO.

On a PC I would think so. Using UEFI is not much less bare metal as using BIOS calls, at least. OTOH on an embedded device it would already sound so much less bare metal... I find it's a tricky question.


Visual programming is not for everyone. I have two kids, one loves Scratch, the other despises it.

Fun fact, Scratch wasn't the first iteration of visual programming, and one could argue that Lego NXT was even more successful. https://www.nxtprograms.com/help/learn.html


> That said, these rely on USER.32.DLL and KERNEL32.DLL to do the majority of the heavy lifting.

Since the low-level Windows kernel API is undocumented and non-public, using these system DLLs is your only option on Windows.

It's just like linking against libc.so on any POSIX systems.


no, you can also call ntdll (or even syscalls although those aren't stable), there's plenty of documentation on the internet

but also why would you, not much point except for very niche functionality


> no, you can also call ntdll (or even syscalls although those aren't stable), there's plenty of documentation on the internet

I mean officially. Yes, you can find some on the internet, but nothing on the official MSDN.

> but also why would you, not much point except for very niche functionality

Exactly. Using system DLL API is backward and forward compatible, and just as standardized and well-documented as the POSIX API. I see no problem relying on it.

(Sidenote: as a bonus, MSDN is surprisingly good, understandable, well organized, lots of examples. I rarely say this, but well done MS, that's how a dev doc should be.)


>> no, you can also call ntdll (or even syscalls although those aren't stable), there's plenty of documentation on the internet

> I mean officially. Yes, you can find some on the internet, but nothing on the official MSDN.

It seems that changed. https://learn.microsoft.com/en-us/windows/win32/devnotes/ntq... says

  [This function may be changed or removed from Windows without further notice.]
but it on the official MSDN site, and it does document a call in Ntdll.dll.

It’s easy to find many more examples such as https://learn.microsoft.com/en-us/windows/win32/api/winternl..., so I don’t think that’s an accident.


> but it on the official MSDN site, and it does document a call in Ntdll.dll.

Does it? What's FILE_BASIC_INFORMATION? Link gives me 404. How do you replace kernel32 API with this?

> It’s easy to find many more examples such as https://learn.microsoft.com/en-us/windows/win32/api/winternl..., so I don’t think that’s an accident.

Again, how do you replace kernel32 API with this?

> In addition a bunch are documented in the driver docs, such as https://learn.microsoft.com/en-us/windows-hardware/drivers/d....

This has nothing to do with ntdll at all.

I still don't get it, what's wrong with using the user32 and kernel32 APIs? It's stable, well-documented, and is the official API on Windows. So why not use it?


> This has nothing to do with ntdll at all.

I can only wonder where `NtMapViewOfSection` could be exported from...


Yeah, but the link talks about `ZwMapViewOfSection`. From that page:

> For calls from kernel-mode drivers, the NtXxx and ZwXxx versions of a Windows Native System Services routine can behave differently in the way that they handle and interpret input parameters.

How "differently" exactly? That's undocumented. And lots of other small (but very important) details are undocumented as well.


In addition a bunch are documented in the driver docs, such as https://learn.microsoft.com/en-us/windows-hardware/drivers/d....

> If the call to this function occurs in user mode, you should use the name "NtMapViewOfSection" instead of "ZwMapViewOfSection".


> it would make a great replacement for GRUB or rEFIt.

Try https://gitlab.com/bztsrc/easyboot


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: