Kasten
My Kasten
Hello! I’m Diing, a Computer Science graduate currently striving for true mastery of Cloud Native Systems. This is a place I call My Kasten, a word derived from German language meaning a box, crate or container. From the word “Kasten” this is digital space that will act as the storage of my notes that I am creating and constantly updating while I’m learning DevOps, linux, networking, docker, kubernetes etc.
Recent Notes
DevOps with Docker (Course)
This is my summary/takeaway from a free Docker course provided by **[The University of Helsinki MOOC Centre](https://courses.mooc.fi/org/uh-cs/courses/devops-with-docker)**. **Docker** ---> A set of tools used to …
Containerization Fundamentals
A Container - A linux process(one or many) with a set of kernel features applied to it.
Another definition - A regular linux process with restricted view of;
- the filesystem
- other processes
- networking
- system …
HTTP/HTTPS,SSL/TLS and CA
## HTTP/HTTPS Hypertext Transfer Protocol (HTTP) ---> Protocol used by browsers to communicate with web servers. Hypertext Transfer Protocol Secure (HTTPS) ---> Encrypts this communication ## Scenario When on a browser …
NGINX
NGINX is a high-perfomance open-source software that acts as a websever, reverse proxy and a load balancer, efficiently handling thousands of simulataneous connections by serving static content, managing traffic and …
bash-scripting
- A bash script is a file containing lines of code either simple commands or complex ones tha can either navigate directories or create other stuff; in simple words they can do a series of actions. Basically they can …