Integer in Golang
An Integer in Golang are number comprising zero, positive numbers, and negative numbers. Integers like their match counterparts are numbers without decimal parts. Types of Integers There are different types…
An Integer in Golang are number comprising zero, positive numbers, and negative numbers. Integers like their match counterparts are numbers without decimal parts. Types of Integers There are different types…
We will set up Golang in Visual Studio Code and create a Golang Hello World Project using Visual Studio Code. Visual Studio Code is an integrated Development Environment used for…
Go is an open-source programming language that makes it simple to build secure, scalable systems. Go is a statically typed, compiled high-level programming language designed at Google by Robert Griesemer,…
Let’s learn to install Golang on the Windows Operating System. Download Golang Installer for Windows Visit the official website of Golang to find their releases You will see the different…
Different Linux distributions are available in the market like Ubuntu, CentOS, and RHEL. we will try to learn a single installation process that helps you install Golang on a Linux…
A Kafka consumer is an application that reads the messages from a Kafka topic and then processes them. we will create a Kafka consumer in Python. Prerequisites Install Python Dependencies…
Kafka is a messaging queue comprising the Kafka broker, producers, and consumers. Producers publish messages to the broker and consumers consume the messages from the broker. Sometimes in the production…
We will create a Kafka producer in Python and publish some messages to the Kafka topic. Prerequisites Install Python dependencies we need to install two important Python modules that will…
Kafka CLI tools is a command line interface used to interact with the Kafka server and get different types of information like topic details, consumer lag, offset reset information, etc.…
Comments in Golang
Comments in Golang are used to add extra information to your code such that it becomes more readable. How Compiler Treats Comments in Golang When the Go compiler encounters a…