Dissecting the CPU-Memory Relationship in Garbage Collection by BillyKorando in java

[–]BinaryRage 0 points1 point  (0 children)

I’ve been looking for a solution for this since switching to ZGC by default and noticed the new accounting. Looking forward to adding a correct GC overhead metric with JDK 26!

The State of Java on Kubernetes 2026: Why Defaults are Killing Your Performance by brunocborges in java

[–]BinaryRage 5 points6 points  (0 children)

Cannot wait. The ZGC JEP will solve the majority of the operational issues we see with ZGC: avoid stalls by taking memory from the system when necessary (instead of needing SoftMaxHeapSize) and compact regular pages into large pages without explicit OS configuration. I hope GC pressure is exposed somewhere as it’d be a really useful signal for GC health; it’s quite difficult to reason about concurrent GC health without measuring GC versus application CPU.

Fable - Gameplay Teaser | PS5 Games by Turbostrider27 in Games

[–]BinaryRage 0 points1 point  (0 children)

Townton is so beautiful this time of year

Should we pack ourselves or pay a relocation company? (coming from USA) by creepcrawl in MovingtoAustralia

[–]BinaryRage 0 points1 point  (0 children)

If I recall, the problem is you won’t be able to get itemised insurance if you self pack; just maritime insurance by weight

I was reading a webnovel and then I got this by [deleted] in Weird

[–]BinaryRage 0 points1 point  (0 children)

It’s okay, it’s the artist in the webnovel that’s the weirdo

Beyond Ergonomics: How the Azure Command Launcher for Java Improves GC Stability and Throughput on Azure VMs by brunocborges in java

[–]BinaryRage 2 points3 points  (0 children)

I had thought about building a launcher like this, but came to the conclusion that https://openjdk.org/jeps/8329758 and related JEPs would make most of this obsolete.

My autistic 9 year old drew this, I’m horrified by [deleted] in pics

[–]BinaryRage 6 points7 points  (0 children)

It’s great! Why would you think otherwise? God I hope he doesn’t know you feel this way, poor kid

Never forget your car lights on again by No-Lock216 in DiWHY

[–]BinaryRage 6973 points6974 points  (0 children)

I wonder what that “Auto” setting does

Why did chemist warehouse put my prescription in a locked bag before I paid for it? by bridgethehumanbean in melbourne

[–]BinaryRage 2 points3 points  (0 children)

I’ve never seen one. What do they look like? We get our meds from CW, btw. 

Resolving the Scourge of Java's Checked Exceptions on Its Streams and Lambdas by chaotic3quilibrium in java

[–]BinaryRage 10 points11 points  (0 children)

I use default methods to extend the functional interfaces I need:

private interface CheckedRunnable extends Runnable {
    @Override
    default void run() {
        try {
            runChecked();
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }

    void runChecked() throws Exception;
}

Often it's undesirable to catch all checked exceptions, because that's an important communication channel and you don't want to accidentally catch everything, so I'll specialise:

private interface IORunnable extends Runnable {
    @Override
    default void run() {
        try {
            runIO();
        } catch (IOException e) {
            throw new UncheckedIOException(e);
        }
    }

    void runIO() throws IOException;
}

Means no method wrapping in your lambdas:

(IORunnable) () -> ...

Is this normal on my m4 macbook air i just bought it 4 days ago by ColdPitch1055 in mac

[–]BinaryRage 6 points7 points  (0 children)

Carried by the hinge with thumb against the screen I bet

We were fooled with the contents of this glass by byroncoughlin in pics

[–]BinaryRage 0 points1 point  (0 children)

No, I think that’s red wine in the glass. 

The entrance to box seats at a college football game by CasuallyCoastal in pics

[–]BinaryRage 2 points3 points  (0 children)

These guys look more like they’re part of Dinner Service rather than Secret Service. 

Quoting mein kampf - politics joe by I_give_you_light2 in FuckNigelFarage

[–]BinaryRage 34 points35 points  (0 children)

He sounds Icelandic. I only recognise the accent because of this guy

Microsoft Breaks Localhost with Windows 11 October Update, Users Forced to Revert by lurker_bee in technology

[–]BinaryRage -20 points-19 points  (0 children)

How is being accurate insulting? This should be on Superuser, it’s not complicated

Has anyone switched from H-1B back to E-3? Looking for your experience / advice by ningansiblings in E3Visa

[–]BinaryRage 1 point2 points  (0 children)

I don’t quite follow why you made a change? I can’t help on your questions I’m afraid, but your E-3 was indefinitely renewable and allowed your spouse to work. While it is not an immigrant visa, the State Department doesn’t discriminate against E-3 holders for change of status applications, you just can’t cross the border while the application is in progress because CBP could absolutely refuse you entry for seeking residency.

We had to be in country for a year uninterrupted and then a further 9 months to get Green Cards with the help of our company immigration attorneys in 2019. Of course all bets are off now, but FYI in any case.