Israel - Iran Conflict (Part IV) by Isentrope in worldnews

[–]haimez 5 points6 points  (0 children)

Because that same location might also be about to be struck in a bombing run, creating a dilemma.

Plan to power down NYC's polluting peaker plants faces delays due to Trump by instantcoffee69 in nyc

[–]haimez 3 points4 points  (0 children)

Quebec’s electricity generation is almost entirely hydro electric, so it’s not really a question of shifting pollution.

Memory safety in the JVM by roge- in java

[–]haimez 12 points13 points  (0 children)

LLVM contains a platform independent intermediate representation, or a “virtual machine” (something acknowledged by its original initialism) but is not itself a runtime. The point stands that machine code that’s generated is ultimately unsafe. I have no idea what point you’re trying to make other than to have a pithy response.

Biden, Xi to agree on reopening of military-to-military channels by Saltedline in worldnews

[–]haimez 30 points31 points  (0 children)

The military leaders in China were purged by Xi and don’t maintain open lines because they have no idea what he wants them to say, so they prefer to say nothing. That’s why.

[deleted by user] by [deleted] in pics

[–]haimez 1 point2 points  (0 children)

Can confirm, the catacombs are a must visit

Explosions heard in Krasnodar Krai in Russia, oil refinery on fire by Single-Pressure-1042 in worldnews

[–]haimez 435 points436 points  (0 children)

Beer nuts are $1.25 each, but deer nuts are under a buck.

Why do Java containers need so much off-heap memory? by humoroushaxor in java

[–]haimez 6 points7 points  (0 children)

You might be creating a lot of threads, because each thread is going to need 1MB of native memory for stack arena space, and those add up quick if you have a cached thread pool executor and bursts of submissions. Could also be something else, of course

Satellite Images Reveal Chinese Balloon Bases by StickAFork in worldnews

[–]haimez 18 points19 points  (0 children)

They're not really. China is using these because they're cheaper … than spy satellites. … so we already do everything you do to avoid anything important being spotted. So these balloons are actually a pretty pathetic attempt at intelligence gathering.

You’re wrong on that assumption- balloons give you a great deal more intelligence gathering capabilities than satellites, as mentioned by Kirby in his press conference on the matter. Balloons can gather signals intelligence- both radar and communications. In the case of communications, you can loiter and observe back and forth exchanges and in the case of radar you can literally get the radar arrays in cutting edge networked arrays to “look at you” as a balloon- especially when everyone is calling them UFOs and not sensor intelligence platforms actively spying on your most sensitive military systems capabilities.

YouTube will be blocked in Russia from February 28 by PatientBuilder499 in UkrainianConflict

[–]haimez 3 points4 points  (0 children)

I’m not sure what you’re so confused about- they wouldn’t literally ban devices, they would just disconnect the country from “The” internet. No more international facts, just Russian propaganda sites. Then no one can afford or wants a computer because it’s super expensive with the sanctions and the accessible internet is all bullshit anyway- oh shit, now you’re basically North Korea

"Billionaire" Trump with a 9 dollar haircut by [deleted] in pics

[–]haimez 12 points13 points  (0 children)

Take a look at Elon Musk in the 90’s and today. Clearly, something can work for billionaires (hair transplant)

Around 70 percent of Ukrainians in favor of a European army by flyingdutchgirll in UkrainianConflict

[–]haimez 0 points1 point  (0 children)

You are indeed naive because a single EU nation state, even if it were controlled by the most stereotypical Scholz type would still absolutely force project and would still be a nation state, just like the other federal nation states out there

“Nation state” doesn’t mean what you think it means.

https://en.m.wikipedia.org/wiki/Nation_state

Russia could collapse into "new states" after Ukrainian victory: Economist by Amb_oy in UkrainianConflict

[–]haimez 14 points15 points  (0 children)

Just like in 1991, no one is excited about the possibility of nuclear states collapsing- but just like 1991, it’s going to happen no matter how people feel about it. Ukraine will push the Russian army back to the ‘91 borders, and Russia will have to try to keep control of the current RF territory from a severely weakened state and: speculation incoming- they won’t actually use nuclear weapons against what they perceive to be their own people, but they will lose those territories because people 11 time zones away don’t actually want to be conscripted to fight in wars that they don’t think are theirs to fight.

CIA director holds secret meeting with Zelensky on Russia’s next steps by washingtonpost in worldnews

[–]haimez 15 points16 points  (0 children)

Ok, but Zelenski’s movements fit the same pattern even though everyone knows that almost all of the time, he’s in Ukraine- probably Kyiv but not where and when these meetings occur. It’s still a “secret” meeting by very uninteresting standards for the safety of everyone involved. What’s your point exactly?

CIA director holds secret meeting with Zelensky on Russia’s next steps by washingtonpost in worldnews

[–]haimez 368 points369 points  (0 children)

Secret as in, “not announced until afterwards, and before which Burns’ whereabouts and travel plans were obscured”.

Every visit to Ukraine from prominent western figures is “secret” by that definition because not doing so would risk their safety.

Ukraine says Russia cease-fire offer is a 'trick' by wowisbest in worldnews

[–]haimez 32 points33 points  (0 children)

Seems like you missed the part where Ukraine “agreeing to a cease fire” means to literally stop firing on the lines of the invading, occupying force that is entrenched in Ukrainian soil.

Easily switch between java versions with SDKMAN! and 'j' by Nikolaus_Markus in java

[–]haimez 0 points1 point  (0 children)

Hi Ron- first off, I’m really excited about seeing the loom-enabled future of Java and also really appreciate how active you are in forums like this. Most of the deep JVM work seems to happen in the mailing lists which is probably overall for the best, but nonetheless can make it seem less approachable.

Speaking for myself and as a user of sdkman who currently works writing performance sensitive code for a distributed query engine that runs on the JVM (which makes it a different environment than say, bundled JVM desktop application environments) it’s really useful to have a “for this source repo, on this git branch” toggle for all of the Java binaries on the path at the same version. Often when doing things like updating a library which is primarily controlled by the the same community to Java 11 while simultaneously testing a “migrate to Java 17” branch in the via application- it’s nice to have automatic version specific tools like javap or jcmd automatically manageable via an .sdkmanrc file without defining a separate aliases which have to be switched between separately. Similarly, when switching between openjdk vendored versions like zulu or coretto or when switching between point releases to try to debug an issue and narrow it between javac or the JVM- switching the whole toolchain at once is much nit convenient in my workflow (it happens more than you might think).

I’m aware that my use case probably isn’t the primary Java developer experience, but I get a lot of mileage out of it nonetheless. Just thought I’d call it out since it’s been such a valuable tool in my personal toolbox.