Blogs
Building a Golang backend system with JWT authentication
When creating a website's backend, one very important term we get to hear is JWT authentication. JWT authentication is one of the most popular ways of securing APIs. JWT stands for JSON Web Token and it is an open standard that defines a way for transmitting information between parties as a JSON object and that too securely...
Beginners guide to Kubernetes namespaces
Introduction to Kubernetes Native Policy Management with Kyverno
Kubernetes Statefulsets
In simplest terms StatefulSets are Kubernetes component that is used specifically for stateful applications. These are workload API object used to manage stateful applications. They manage the deployment and scaling of a set of Pods (Creating more replicas or deleting them), and StatefulSets are also responsible for the ordering and uniqueness of these Pods. StatefulSet was released in the Kubernetes 1.9 release, let see K8s Statefulsets in this article...
Unit testing using Golang - a beginner's guide
A beginners guide to writing unit tests in Golang · Let's first start with what unit testing is. Unit Testing is a way of testing where the behavior of a...
5 Mistakes to Avoid for cracking GSoC Proposal: Lessons from My GSoC'23 Experience
Avoid these 5 mistakes to get selected in GSoC. · Let's first start with a quick intro about what GSoC is : So, GSoC (Google Summer of Code) is an annual...
Databases - the easy way
Databases in the simplest yet most powerful way ever. Keeping in mind placements and development. · Databases: just a digital tool that stores and...
Datatypes in Python
Datatypes in Python in simplest yet most effective way. · Python includes 6 types of built-in datatypes - Numeric datatype Boolean datatype Sequence...
DBMS - the easy way
Database Management System in the simplest but most powerful way. · What is DBMS? if you have created or are going to create a database, obviously, you...