Martin Smelt

Offline Crypto Address Validation in Java

Author: Oleksandr Dendeberia Original post on Foojay: Read More Backend validation often starts with simple questions. Is the input empty? Does it have the expected shape? Can it be parsed? Does it belong to the selected domain? Crypto wallet addresses are no different, except the formats vary across chains and simple regular expressions are rarely enough. If a Java backend …

Read More »

The Third-Generation GUI Builder: One Workspace for Every Form

Author: Shai Almog Original post on Foojay: Read More We have rebuilt the Codename One GUI Builder again. This is its third generation. The interesting part is not another drag-and-drop surface. It is what we kept, what Maven broke, and why a visual editor must understand the whole project instead of opening one generated form at a time. What is …

Read More »

Aggregation Optimization in MongoDB: Optimizing Many-to-Many Relationships (Part 3)

Author: Graeme Robinson Original post on Foojay: Read More And why MongoDB might be a better relational database than you ever realized. Design reviews are one-on-one meetings where MongoDB experts deliver advice on data modeling best practices and application design challenges. In this series, we are going to explore common real-life scenarios where design reviews helped developers achieve meaningful success …

Read More »

Azul August 2026 Release: Java’s First Monthly CSPU

Author: Frank Delporte Original post on Foojay: Read More If someone discloses a critical Java vulnerability the day after a quarterly update, you could wait up to three months for a patched build. That gap is closed now. The August 2026 release is the first monthly Critical Security Patch Update (CSPU) in Java’s history, and Azul shipped it on schedule …

Read More »

Introducing BoxLang AI Explorer: A Local Catalog for Every AI Pattern

Author: Cristobal Escobar Original post on Foojay: Read More Learning a new AI API usually means jumping between scattered documentation pages, guessing at imports, and copy-pasting code that may or may not still work. We wanted something better for BoxLang AI, so we built the BoxLang AI Explorer: a local, browser-based catalog of runnable BoxLang AI examples, organized by category …

Read More »

Vibe Coding, Maven, and the Dependencies You Didn’t Choose

Author: Steve Poole Original post on Foojay: Read More When I write about bad actors, I sometimes try to imagine where they are and how they work. For this article, it’s clearer than usual because there is some evidence around. You can use your imagination to fill in the gaps. Imagine there’s a job going in Pyongyang. Long hours, of …

Read More »

DuckDB in Spring Batch: Replace In-Memory Java Loops with One SQL Statement

Author: Geertjan Wielenga Original post on Foojay: Read More Spring Batch jobs usually follow the same pattern: an ItemReader streams rows, an ItemProcessor transforms each one, and an ItemWriter writes them out, chunk by chunk. A chunk-oriented step wires those three pieces together: new StepBuilder("transform", jobRepository) .<Order, Summary>chunk(1_000, transactionManager) .reader(reader) // stream rows .processor(processor) // transform each row .writer(writer) // …

Read More »

Introduction to Retrieval-Augmented Generation with Java and MongoDB

Author: Otavio Santana Original post on Foojay: Read More Modern organizations store large volumes of information in documents, databases, internal platforms, support systems, policies, and operational tools. However, having data does not guarantee that employees or applications can access the right information when needed. As data grows, traditional search tools often fail to identify context, meaning, and relationships between distributed …

Read More »