Kubernetes series Part 1: Understanding and Installing Kubernetes

What is Kubernetes? Kubernetes is an open-source container orchestration platform that automates the deployment, scaling, and management of containerized applications. Originally developed by Google, it is now maintained by the Cloud Native Computing Foundation (CNCF) and supported by a large community of contributors. Kubernetes has become essential infrastructure for modern application deployment and management. As organizations move towards microservices and cloud-native architectures, understanding Kubernetes is crucial for developers and operations teams alike. ...

December 22, 2021 · 4 min

Graphs

In this article we will look into another Abstract Data Type (ADT) called Graphs. First I will talk about what is a graph, then I will show how we represent them in code and finally I will show some common operations and algorithms that can be performed on graphs. Let’s get started! What is a graph? A graph is simply a web of nodes connected to each other in some way. These nodes are called vertices and the connections between them are called edges. Each node can have values associated with it. ...

March 8, 2021 · 14 min