Recent Posts

BoxLang AWS, Azure, and Google Secrets Manager Module Released

Author: Cristobal Escobar Original post on Foojay: Read More Every production application carries secrets: database passwords, API tokens, encryption keys. The question is never whether to manage them — it’s how badly the current approach is going to hurt you. Hardcoded credentials in config files get committed to repos. Environment variables sprawl across deployment pipelines with no audit trail. Custom …

Read More »

First Test of Java on Banana Pi (ARM and RISC-V), Plus a Blinking LED with Pi4J

Author: Frank Delporte Original post on Foojay: Read More As part of my 2026 learning goals around Java on RISC-V (see this post about x86 versus ARM versus RISC-V), I’ve asked various suppliers to send me evaluation boards. I already published these: LattePanda IOTA (x86) OrangePi 5 Ultra (ARM) and OrangePi RV2 (RISC-V) VisionFive 2 Lite (RISC-V) BeagleBoards (ARM and …

Read More »

Toward a Durable Spring PetClinic

Author: Geertjan Wielenga Original post on Foojay: Read More Overview Durable Execution is a way of running code so that its progress survives failure. A normal program keeps its state in memory: if the process crashes, the machine reboots, or a network call times out halfway through a multi-step operation, that state is gone and the work is left half-done. …

Read More »