How To Linux

How to – Remove Files and Directories Using Linux Command Line

In this tutorial, we will see how to use the rm, unlink, and rmdir commands to remove files and directories in Linus using Terminal (command line). Remove Files: To remove (or delete) a file on Linux using the command line, use either rm (remove) or unlink command. unlink command allows you to remove only a single file. rm command allows you to remove multiple files […]

Arrays

Arrays

Array are the simplest data structures, build into most programming languages and we use them to store list of items like list of numbers, string, objects and literally anything. These items get stored sequentially in memory. In many languages arrays are static – which means – when we allocate them we must specify their size […]

Apache Kafka

Apache Kafka- Fundamentals

In the previous post, we learned what a messaging system is and the Role of Apache Kafka. In this post we will dive deep into Apache Kafka – We will learn Kafka cluster, brokers, topics, partitions, replicas, producers, consumers, consumer groups, Zookeeper, and how together make Kafka work. Most of Kafka revolves around Kafka Cluster, […]