Blog Posts
How to implement a microservice-based application, packaged with Helm and CI/CD pipelines.
- Samson Ajulor
- Devops
- 23 Jul, 2023
1. **What is Helm?** Helm is a package manager for Kubernetes, an open-source container orchestration platform. It simplifies the deployment, management, and scaling of applications on Kuberne
read moreBackend Cheat Sheet
- Samson Ajulor
- Backend
- 21 Jul, 2023
# 1. Data Structures and Algorithms:### Linked List Implementation in Python: ```python class Node: def __init__(self, data): self.data = data self.next = Noneclass LinkedList
read more