Realpolitik: the calculations being made in Israel must be tougher than ever right now. They are staring at the prospect of their greatest ally funding their greatest enemy.
On a gut level I agree 100% as I'm feeling the same feelings and prefer no contact. But on a biological level it's definitely better to have more social interactions and talking to strangers specifically has many benefits to both you as an individual and for creating a better society.
Your examples are using simple tech to replace a monotonous job and I'd agree that they are improvements.
Using an LLM/AI to provide customer service is using ridiculously overblown tech to replace human interaction which pretty much nobody wants (i.e. nobody wants to phone up customer support and get an LLM).
Imagine if traffic signals got replaced with AI systems - it'd be hugely expensive and likely cause completely un-traceable issues from time to time as it hallucinates traffic.
Paying people for work that people are good at is not crazy.
After reading about the default mode network here a few times recently, I think missing out on all that critical "daydreaming" time is a bigger problem. I've stopped listening to things while I'm out walking, and I've noticed a lot more solutions and ideas coming to me. The DMN seems to fall into a similar area as meditation (remember when that was all the rage among tech leaders?); the lowered input noise gives the brain time to clear things out.
What does this bring compared to apt-get install-ing an established mail server like procmail or exim and configuring it to work as a relay for the local LAN?
Usually, signing things like this won’t particularly hurt you - largely because your inalienable rights are… inalienable. You can’t sign them away, even if some contract says you have.
The flip side of this however is that it’s a very worthwhile pursuit to know consumer protections and what your rights are in the jurisdiction in which you live - and how to enforce them.
Where I live, I unfortunately quite frequently find myself having to go “ok so you want to do the formal process with the regulator then?”, which usually gets them to reconsider - but not always. I have just reported a government agency here to the domestic and EU regulators for failing to fulfil EU FoM treaty rights - and they were even kind enough to put it in writing that they’re ignoring their own domestic laws. I have yet to lose a case I have brought before a regulator or justice of the peace.
So - sign away, but have teeth, and know where to bite.
This is honestly really cool. This is nitpicky but I wish when exploring a person's connection we can see that person's position in the family tree more highlighted. I know for now there's a golden ring surrounding but it's just a little hard to find. Either way, really fun to play around with!
Guidance in the UK is that you always attempt CPR with children and continue it until you get to hospital. This is mostly for the family. They have the knowledge that you did everything you could, and when the child is pronounced dead in hospital the family have a lot of support available in the hospital setting.
What I would really love is an option to have a small indicator light or visible signal on my earpiece that means “there’s no sound playing”. And if I’m using them just for noise cancellation but want to appear approachable, I can turn it on. Honestly would be great for sound my home, as sometimes I keep them in when doing chores just because I don’t have a free hand, but I would like my wife to know she can talk to and I’ll hear her.
Always pleased to see Typst mentioned. TeX made a lot of choices that made sense at the time, but TeX macros and C #defines especially when nested and/or not properly bracketed to allow nesting are a mess when things go wrong.
It is incredible! It is amazing that they implemented the Windows kernel yourself. It is also similar to gvisor in that it is a userspace kernel. I am curious about the process of making this.
> (i.e. loud and busy environments with many strangers, often physically closer than comfortable) is unnatural to begin with.
That's very natural when it comes to life in an urban setting. Love it or hate it, we wouldn't have been here now (I'm talking from a civilizational pov) without us humans moving into the cities.
I'm not sure what you mean. Markdown compared to typst or latex is extremely limited and using it for books or academic papers is very niche. I certainly would (and have for all my previous publications) prefer typst or latex over markdown. I also don't understand your point about not permitting typesetting during writing. Latex and text are the prime examples of separating writing from typesetting.
> Just as there are many young people on MAGA, there are also many young Koreans who are caught up in right-wing conspiracy theories.
You're literally talking to one. Search for any thread remotely related to Korean companies or politics in the last month and you'll see this user in the comments spouting classic conspiracy theories. Of course never replying when called out, as on HN we luckily have people like you and me who bring the facts and the majority doesn't have time for that kind of nonsense unlike the Korean communities they get these conspiracies from. See also [0].
My experience of Chicago (North side) was that it was full of polite but unfriendly people. This was jarring to my experience growing up in NY, where people tend to be more rude but friendly. I settled in Atlanta, where people are more polite but quite friendly.
There are plenty of cases where flattening an object that takes 64bits would make sense.
The current code will help with `Integer[]`, `Char []`, etc, as well as combinations of `byte`, `char`, and `int`. Past that it doesn't really help much.
It would be fantastic if we could also flatten something like `Pair` or `Tuple`. However, even with compressed pointers, that is 64 bits, so that, plus the `null` bit, means it can't be flattened, which is a real shame. For various reasons, I have `List<Long>` in numerous places in my code, It would be great if that could also be flattened. However, since a Long is 64 bits, it _also_ can't be flattened. https://openjdk.org/jeps/8316779 would go a long way to to helping here, since then at least the null bit could be thrown away, which would allow more things to be flattened.
And then, if you want to go Wishlist land, something that would allow SSO (Small String Optimisation) would also be awesome, but that would require something akin to unions in Java, which we can _kind_ of do with sealed classes, but, since String is a final class, can't be retrofitted back into the language.
Does anyone know if Valhalla will flatten "simple" sealed classes, where every sealed class is small enough to be flattened? Since that would also be a powerful example to share.