A very efficient paradigm in application development is the "Code a little, test a little" paradigm. This means that you should not program everything and after you have finished all of you stuff, you start testing everything, but you should program small pieces, test them and then continue with other small pieces. The second aspect … Continue reading "Testing – Code a little, test a little"
An overview about the usage of Docker containers like benefits, the build process via the Dockerfile, managing persistent data, docker-compose, etc. ETR: 25 min Introduction Containerization is a technique to encapsulate software installation and execution into a so called container. The container is based on a pre-installed operating system like Ubuntu, CentOS, Alpine, etc. and … Continue reading "Docker Containers – The Ultimate Overview"