Skip to content
TILens What matters today in tech v0.0.9
Theme

Topic - Edition

Java

2 items on 14 Aug 2026
Java

The Codebase Is the Agent's Working Environment

Agents generate code in seconds, so investing in code quality looks obsolete. My daily work with agents shows the opposite. Every session starts by reading the existing code, and its quality decides how productive the…

Source: Adam Bien Blog
Java

Preparing for Change: Safe Switching over Sealed APIs

An exhaustive switch on a sealed type covers the permitted subtypes the compiler knows about; it does not cover future additions, which can cause MatchException at run time. API authors should document the expected…

Source: Inside Java Brian Goetz