Recent Posts

Java Note

less than 1 minute read

Note for Advanced Java Programming Generics Generic method public <T> List<T> arrayToList(T[] array, List<T>) { for (T t : array...

Docker ENTRYPOINT vs CMD

1 minute read

Both ENTRYPOINT and CMD allow you to specify the startup command for an image, but there are subtle differences between them. There are many times where you’...