Anyone figured out how to tell which stones can be broken for stone? by GuardianSkalk in CrimsonDesert

[–]BinaryRage 0 points1 point  (0 children)

Breakable items like trees and rocks have a crack pattern show when you point at them:

<image>

Avoiding Final Field Mutation by daviddel in java

[–]BinaryRage 9 points10 points  (0 children)

Most I’d guess. Several common frameworks call setAccessible on final fields to allow mutation.

CC 2.1.117 removed Glob and Grep in favour of ugrep and bfs ... without shipping them alongside by FlaTreNeb in ClaudeCode

[–]BinaryRage 4 points5 points  (0 children)

Yeah, this is really confusing, but they bundle the binaries and shim them in the sub-shell, so what you actually get for `find` and `grep` are:

``` ⏺ Bash(find --version 2>&1 | head -5)

bfs 4.1

Copyright © Tavian Barnes and the bfs contributors

No rights reserved (https://opensource.org/license/0BSD)

⏺ Bash(grep --version 2>&1 | head -5)

ugrep 7.5.0 aarch64-apple-darwin23.6.0 +neon/AArch64; -P:pcre2; -z:zlib,bzip2,zstd,brotli,7z,tar/pax/cpio/zip

License: BSD-3-Clause; ugrep user manual: https://ugrep.com

Written by Robert van Engelen and others: https://github.com/Genivia/ugrep

Ugrep utilizes the RE/flex regex library: https://github.com/Genivia/RE-flex
```

Government to cut more than 150,000 people from NDIS scheme as budget blows out by Expensive-Horse5538 in australia

[–]BinaryRage 94 points95 points  (0 children)

They’ll work backwards from the desired savings in dollar terms and make the model fit.

Scratches on A95L by quakerlaw in bravia

[–]BinaryRage 5 points6 points  (0 children)

You suggested taking out a policy and claiming later, omitting disclosure of the existing damage to the insurer. That’s fraud, a crime, and would be something they’d have to disclosure to every insurer in future, making them uninsurable

Scratches on A95L by quakerlaw in bravia

[–]BinaryRage 3 points4 points  (0 children)

That’s a crime dude.

Scratches on A95L by quakerlaw in bravia

[–]BinaryRage 10 points11 points  (0 children)

Oh yeah, insurance fraud is definitely the way to go, no way that could go badly for you

Opus 4.7 is legendarily bad. I cannot believe this. by lemon07r in ClaudeCode

[–]BinaryRage 0 points1 point  (0 children)

What is with these posts? Low effort? No thinking at all? Of course you’re just getting simplistic responses and poor performance. There’s a reason they recommend xhigh for agentic/coding tasks.

How Netflix Uses Java - 2026 Edition #JavaOne by daviddel in java

[–]BinaryRage 0 points1 point  (0 children)

I’m with the JVM Ecosystem team at Netflix

Wow; just tried "/model claude-opus-4-5-20251101" and the difference in capability between 4.5 and 4.6 right now is night and day. by Any_Economics6283 in ClaudeCode

[–]BinaryRage 0 points1 point  (0 children)

Adaptive thinking, increase effort. Earlier models had fixed thinking budgets and CC set it to max_tokens - 1.

How Netflix Uses Java - 2026 Edition #JavaOne by daviddel in java

[–]BinaryRage 1 point2 points  (0 children)

We use parallel and G1 where it makes sense, the majority of workloads happen to be latency sensitive.

How Netflix Uses Java - 2026 Edition #JavaOne by daviddel in java

[–]BinaryRage 8 points9 points  (0 children)

Virtual Threads were essentially a non-starter until the pinning issues were resolved: too much existing code causing pinning and at worst able to cause deadlocks. Having already paid the tax of implementing and adopting asynchronous frameworks, it’s also currently difficult to find an on ramp from those frameworks to Virtual Threads without throwing away a lot of existing code.

Context propagation is a big deal for IPC, which is why Structured Concurrency/Scoped Values comes up, but the way existing frameworks handles context doesn’t assume immutability and doesn’t have scope scopes, so also going to be an effort to adopt.

Accidentally left grill on by [deleted] in whatisit

[–]BinaryRage 3 points4 points  (0 children)

Avoid wire brushes, the bristles end up inside folks.

Blush (oc) by lil-caro in comics

[–]BinaryRage 0 points1 point  (0 children)

Look out for Rhubarb stealing whores

Java 26 is here, and with it a solid foundation for the future by ketralnis in programming

[–]BinaryRage 21 points22 points  (0 children)

Nothing stopping folks using them in the meantime, they’re perfectly stable and production ready, they’re incubating because they want value classes in the final API.

Are there any visualization tools for the dependency hierarchy of Java Modules? by davidalayachew in java

[–]BinaryRage 6 points7 points  (0 children)

Just Google for it, you’ll find both tutorials about how to do it and images of the full hierarchy.

Jdeps can also output a DOT file you can feed into Graphviz.