Channel in Golang: [5 Best Examples]

In this tutorial, we will learn about channel in Golang with 5 best examples. Channels are really just a way for goroutines to communicate in synchronized manner. We will look at different use cases of channel in just a few minute and also see how channels are implemented in different ways. So let’s get started. … Read more

Concurrency in Golang with Best Examples

In this tutorial, We will learn about Concurrency in Golang with Best Examples. In programming world, concurrency can really be think of as decomposing a program into multiple parts and each part can run independently with each other. Traditional method of implementing the concurrency is by using the threads but they have complexities and challenges. … Read more

How to create Goroutine in Golang with Examples

In this tutorial, we will learn about how to create Goroutine in Golang with examples. It is a special feature of Golang which has been developed to mitigate the complexity of traditional thread which are used to achieve concurrency in programming world.   Overview To understand the Goroutine in Golang, we first must understand what … Read more

How to Install ChatGPT in VS Code [8 Steps]

In this tutorial, we will learn about how to install ChatGPT in VS Code using 8 steps. ChatGPT and CodeGPT are designed and developed by OpenAI which is an AI research and deployment company. Even though ChatGPT and Code GPT are based on the same GPT (Generative Pre-trained Transformer) architecture, there purpose are different and … Read more

How to Upgrade Python Version in Linux [ 7 Steps ]

In this tutorial, we will learn about how to upgrade Python version in Linux using 7 steps. Python upgrade can be done  in all Operating System be it be Windows, Linux or Mac. However, the  procedure to upgrade the Python version is different in different Operating Systems.   Python in Linux Overview Python is an … Read more

[Solved] bash: ifconfig: command not found

In this tutorial, we will learn about how to fix the error “bash: ifconfig: command not found“ in Linux. ifconfig command is supported by all Unix-based operating system. Similarly ipconfig command is used by Windows operating system.   ifconfig Overview ifconfig (interface configuration)  is CLI (command line interface) command which is part of net-tools utility. … Read more

How to Connect to EKS Worker Nodes [5 Steps]

In this tutorial, we will learn about how to connect to EKS worker nodes using 5 steps. In Kubernetes, workloads are deployed in containers and containers are deployed in pods. A pod can have one or more containers deployed. These can be combination of  main containers, sidecar containers and init containers. All the workload pods … Read more

[Solved] bash: helm3: command not found

Why Error is Seen? In this tutorial we will discuss about the common helm3 error “bash: helm3: command not found“. When we execute helm3 commands in Linux, we may come across this error. This is because when we installed helm3 in our machine, we did not change the helm binary file name. Today, we will … Read more