Communicate between your Github Action Steps with custom outputs by Romain Manni-Bucau, 2021-11-10

When Github actions need some input computed from the input Github event or even the file system it is always possible to pass the input through the output of a custom step. Let see how to do it!

Docker SCRATCH base image mkdir issue by Romain Manni-Bucau, 2021-09-17

Docker SCRATCH image enables to start from an empty image but it has some limitation. Let’s dig into the mkdir one!

OpenJPA Jakarta tips by Romain Manni-Bucau, 2021-06-29

OpenJPA is a well known JPA implementation. Did you know it supports Jakarta namespace? Let see how to use it.

A Simple React.JS extension mechanism by Romain Manni-Bucau, 2021-06-02

React.JS is a great SPA library but extending SPA is always a challenge. Let see one proposal to do it easily.

How to correctly use RequestContextController by Romain Manni-Bucau, 2021-05-18

CDI 2.0 enables you to start/stop request scope using RequestContextController but take care its usage is not natural. Let’s see how to use it right.