Blog Posts

How to implement a microservice-based application, packaged with Helm and CI/CD pipelines.

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 more

Backend Cheat Sheet

# 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