Design Patterns - Observer pattern
Design Principle Strive for loosely coupled designs between objects that interacts. Loosely coupled designs allow us to build flexible OO systems that can...
Design Principle Strive for loosely coupled designs between objects that interacts. Loosely coupled designs allow us to build flexible OO systems that can...
Principles Encapsulate that varies. Identify the aspect of your application that vary and separate them from what stays the same. Program to an interfac...
Executables
CMake is an open-source, cross-platform family of tools designed to build, test and package software. CMake is used to control the software compilation proce...
Sample Dockerfile 1 2 3 4 5 6 7 8 FROM alpine LABEL maintainer="example@gmail.com" RUN apk add --update nodejs nodejs-npm COPY . /src WORKDIR /src ...