Skip to main content
Ionuț Barangă
Software Engineer

Software Engineer passionate about JVM technologies, Spring, and Java best practices.

View all authors

Sandboxing AI Codegen CLIs: Part 1 - CLI Tooling

· 3 min read
Ionuț Barangă
Software Engineer

Containers

Photo by Tom Fisk on Pexels

AI-powered code generation CLIs like Claude Code, Gemini CLI, OpenAI Codex, and GitHub Copilot are incredibly productive tools. They can scaffold projects, refactor code, and even run bash commands on your behalf.

But here's the catch: they can also hallucinate. And a hallucinated rm -rf or a runaway npm install that fills your disk is not something you want happening on your main OS.

Spring Boot Integration Testing with Testcontainers and JUnit5

· 3 min read
Ionuț Barangă
Software Engineer

Testing

Photo by CHUTTERSNAP on Unsplash

Spring Boot testing library offers an out-of-the box @SpringBootTest annotation that boots the entire application and gets it ready for testing.

However, getting backing services (e.g. databases, caches, message brokers) available and not interfering with development or other environments might still be a challenging task.