Docker Deep Dive
Containers are white hot at the moment especially Docker and Kubernetes. Reckon: to think or believe i,e.. I reckon you will love it. waffle: to talk or write a lot without giving any useful information or any clear answers modular: consisting of separate parts that, when combined, form a complete whole. primitive: are the simplest elements available in a programming language. A primitive is the smallest 'unit of processing' available to a programmer Refactoring: is the process of altering an application's source code without changing it's external behaviour. The purpose code Refactoring is to improve some of the nonfunctional properties of the code, such as readability, complexity, maintainability, extensibility Swapping: the act of swapping two variables refers to mutually exchanging the values of the variables. Usually, this done with the data in memory ex: in a program data_item x := 1 data_item y := 0 swap (x, y); After swap x become...