People are no longer buying internet to use google, nor buying gas for cars? The others I understand, I'm cutting back on them too.
HN user
201984
Depends on your financial situation, but $10 is nothing these days. That's the price of a bougie coffee, half the price of going out to eat, half the price of a movie ticket, or less than 2 gallons of gas in some states. For most people here, it's probably 20min of labor after taxes or less, for something you use constantly. You pay several times more, possibly 10x more, for the internet you use Kagi on. Really not a bad deal from that perspective.
Lua basically already has ternary operators anyway since "and" and "or" short circuit. I also don't see the need of adding additional syntax for it.
local x = condition ? value_a : value b
local x = condition and value_a or value_bInteresting, thank you.
TIMTOWTDI
What on earth is this supposed to mean?
I cannot think of a legitimate purpose for residential proxies existing. They take advantage of people who don't understand what they're being asked to give "consent" to, and then offer up those people's internet connections to whatever actor wants to abuse it, including malware authors, aggressive scrapers, and anyone with ill intent.
Why do you think this rampant abuse is a good thing? What benefit does this provide to society?
This needs to be illegal.
It just turns the motion into fades of equal duration. Reason 352811 I will never own an iPhone.
We're choosing a license that is usable by the entire community.
What a weaselly way to put it.
A GPL library, as I'm sure you know, is perfectly usable by anyone including jujutsu and anyone else. They just have to also license under the GPL and this is no barrier to open source projects.
There's a part of the .so ELF file (the Global Offset Table aka GOT) that has to be modified with all the addresses of the functions being imported, which of course vary from process to process.
If not patching, what exactly would you call modifying part of the file?
How do you think position independent code can call functions from other .so's without being patched with their addresses?
They can't, so even PIC code still has to have a relocation table that gets patched. It's in a different page than the code though, so code does still get reused.
Shared libraries (and mmapped files in general) are deduplicated; it's nowhere near as bad as you think. The kernel loads a .so into memory once and then maps that memory into every process that mmaps it.
Editing to add: this deduplication is one of the greatest upsides to dynamic linking. Common libs like libgcc and libc only have to exist in memory once and can stay in CPU caches, whereas if they were statically linked into every binary, each binary would have a copy of that library that wouldn't be shared with anything else and you'd waste a lot of memory.
I just don't get why an image format needs the ceremony from being an international standard accepted by governments. It's just an image format; governments shouldn't be involved in this at all.
What did ISO give the JPEG XL team that made paywalling the standard worth it? Did ISO pay them or something?
Does anyone know why the JPEG XL team went through ISO instead of publishing it themselves?
Seems "closed but royalty free" would be a more accurate description then.
Mostly off topic, but why is the spec for JPEG and JPEG XL paywalled? I wouldn't call them open standards if they're not available free-of-charge to the public.
As if there's no difference between harmful substances combined with lewd activity, and talking with people on a video game.
https://metro.co.uk/2026/06/01/uk-considering-banning-kids-s...
You don't HAVE to, but most of the big ones do.
This is false. Evaporative cooling systems consume significant amounts of water and do not reuse it. They can't anyway, recondensing the water would release all the heat they removed by evaporating it.
How are kids supposed to have a safe space "to be curious, build autonomy, and feel free" if they can't get out from the authoritarian hands of their parents or their government?
There's also a windows port of busybox if you want something more stable. w64devkit uses it.
AI said to do it.
I liked it. It has character.
So you'd switch USA for China, and still have a foreign dependency embedded into the very fabric of your society. Do you not see a problem with this?
What, like electronic payments using phones running American operating systems? With the bonus that you have two new gatekeepers that can lock your citizens out (Apple and Google).
Exactly, do they want people to buy their FPGAs or not? Charging per-seat licenses for developers and heavily restricting the free version mean people will buy from other vendors or just not use an FPGA at all.
I'll bite. Why is it the fault of the organization that gets broken into, rather than the fault of the attackers breaking into it? Even if the defender takes every reasonable defensive measure, they could still get pwned from some zero day that they had no defense against. Should they be fined into oblivion for something like that?
Is this why every healthcare website has 2FA now? It's so annoying.
an unaligned pointer in itself is UB, not only an access to it.
Can someone point to where the standard states this?