bytecode.news

Layoffs at Oracle

Oracle laid off roughly 30,000 people, including Sharat Chander and others important to the Java ecosystem. Layoffs are never fun to endure or watch, but it's worth asking: how many of us have actually paid Oracle - or Sun before them - anything? If we haven't bought anything, should we expect a voice in corporate decisions? And what does this mean for the platform work that actually matters?

The Invoice You Don't See

From a health podcast, a guest ran into a situation where Claude - being used as an AI writing assistant - *offered to author content itself*, and the content is not only pretty good, but offers a chance for insight into how the entire modeling construct works.

OpenJDK says Structured Concurrency Now Writed In Python

OpenJDK leet koda Hanz Franz MacNamaramara told ByteCode.News today that the new structured concurrency implementation in the JVM was being rewritten in Python, using the most current AI modeling available.

The Wrong Boundary

Junior programmers mess up paradigms because they think they're more experienced than they actually are. They end up blaming the system for not working the way they think it should. I trusted the wrong thing, just like a junior programmer: I assumed my tests were wrong, my results were wrong, that I was wrong, and I was - but the error was in the location of the problem.

AIs Onboard, too

Yury Selivanov recently released lat.md, a knowledge graph for your codebase, stored as user-editable markdown. The tool itself sounds useful enough, but checking it out and working out what it provides for your code was more useful than the tool's existence itself: effective agent management means going through an onboarding process.

Miasma - a Poison Pill for Scrapers

Miasma is a new project in Rust that creates a maze of twisty passages, all alike, for AI scrapers. It's got documentation to protect "good" scrapers, and creates nonsense for "bad" scrapers, but the problem isn't as simple as "punish AI for existing."

Why Control Rooms Are Green - and Why That Matters

You've probably never thought about why your IDE's default theme uses the colors it does, or why every hospital, factory, and control room built between 1944 and 1980 looked the same. Beth Mathews' piece on Faber Birren answers the second question - and the answer has more to say about developer tooling than you might expect.

Two Articles on JSON Query Optimization: a tool and an approach

Two recent articles tackle JSON querying performance from opposite ends: one applies automata theory to eliminate interpretation overhead at query time, the other kills a $500K/year language-boundary tax by rewriting a JavaScript reference implementation in Go. The methodologies are different; the lesson is the same.

Kafka Offset Commit with Spring Boot

Piotr Minkowski's new article on Spring Kafka offset behavior ("Deep Dive into Kafka Offset Commit with Spring Boot") goes into how Spring's Kafka reader commits read offsets: it treats the read operation as a committable transaction, which means your code needs to be aware of the offset write semantics to make sure you don't lose messages. Kafka is powerful precisely because it's not a simple queue - messages can be replayed via offset manipulation - but that same model means offset commit semantics matter in ways they never would with a fire-and-forget message broker.