Install
Java & Kotlin
JVM releases, Spring ecosystem, build tooling, and performance.
- 8 Tracked terms
- Last 30 days Feed window
What this topic collects on
An article joins this feed when it matches these terms. Each one is also a search of its own.
Related topics
Latest in Java & Kotlin
Your Full Guide To Learn HTTP Request Smuggling
35+ min ago (434+ words) From CL.TE to 0.CL — a progression through every major desync technique ( Over 25 Techniques To Approche The Vuln ) Why This Writeup Exists Most …...
Partitioning in Apache Spark: How to Control Parallelism and Improve Performance
2+ hour, 6+ min ago (5+ words) “” is published by Ved Prakash....
Structured outputs: getting JSON you can trust from LLMs
6+ hour, 56+ min ago (449+ words) Originally published at AI Frontier Post. Malformed JSON from LLMs doesn't have to be a fact of life. Here's the full reliability stack — strict schemas, provider enforcement, constrained decoding, and validation-and-repair loops — that ends the bug for good. This is…...
The Row Says 'system': Spring Data JPA Auditing Outside the HTTP Request
9+ hour, 13+ min ago (1466+ words) Every table in our platform has the same four columns at the end: created_by, created_at, updated_by, updated_at. Spring Data JPA fills them in for you with four annotations and one @EnableJpaAuditing. That part takes five minutes. Everything is in a companion repository: auditor-aware-demo. It…...
Why One Thread Is Enough: Building a Sequential TCP Server in Rust
9+ hour, 38+ min ago (650+ words) Look, I know "single-threaded server" sounds like you forgot to finish building it. We live in a... Tagged with programming, software, rust, backend....
Javadoc That Feels Like Your Website
10+ hour, 10+ min ago (357+ words) A Java 25 doclet turns the Codename One API model and Markdown comments into Hugo content. The site gains integrated search and theming while preserving member links and the offline Javadoc archive. Tagged with java, mobile, android, ios....
The Second Race Condition: When Updating a Record Is Just as Dangerous as Creating One
12+ hour, 25+ min ago (1301+ words) A Django concurrency story about read-then-mutate, silent no-ops, and why one fix is never enough. After I fixed the add_member race condition, I did what most developers do after a win: I closed the ticket and moved on. Then a small…...
NVIDIA TensorRT Edge Model Optimization
12+ hour, 50+ min ago (231+ words) Modern Physical AI systems are distributed pipelines. The goal is not simply higher FPS; it is predictable latency, controlled memory use, reasonable power consumption, and reliable behavior. Before changing code, record: Keep the test scenario identical between benchmark runs. Measure…...
LangChain vs LlamaIndex vs CrewAI 2026: Full Comparison
13+ hour ago (866+ words) Before comparing benchmarks and pricing, it helps to be precise about what each framework was built for, because the three are not perfect substitutes. All three projects ship updates aggressively, which is itself a signal of how competitive this space…...
Interfaces in Java, Explained
13+ hour, 26+ min ago (314+ words) An interface in Java is a blueprint of behavior — a contract that any implementing class agrees to fulfill. Interfaces are often used as an alternative (or complement) to abstract classes, especially since Java doesn't support multiple inheritance with classes but…...