
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Satish Kumar has Published 1032 Articles

Satish Kumar
3K+ Views
What is W3C (World Wide Web Consortium)? The World Wide Web Consortium (W3C) is an international organization that develops standards for the World Wide Web (WWW or Web). It was founded in 1994 by Tim Berners-Lee, the inventor of the Web, with the goal of ensuring that the Web remains ... Read More

Satish Kumar
2K+ Views
What is Webmail? Webmail is a type of email service that allows users to access and manage their email messages through a web browser. Instead of using a dedicated email client like Microsoft Outlook or Apple Mail, users can log in to their email account using a web-based interface and ... Read More

Satish Kumar
5K+ Views
What is POP3 (Post Office Protocol 3)? Post Office Protocol version 3 (POP3) is a standard protocol used by email clients to retrieve email messages from a mail server. It is a simple, text-based protocol that allows a client to connect to a server, retrieve email messages, and mark them ... Read More

Satish Kumar
14K+ Views
Overview By utilizing Bash scripts, we can have access to a powerful programming language. Writing such scripts is an efficient way to run several commands one after the other. Even if one command fails, the others will still be executed. We’ll learn how we can add some safeguards so that ... Read More

Satish Kumar
3K+ Views
Overview The zip command is one of the most useful tools available on any operating system. It allows you to compress multiple files into a single compressed archive file. You can then decompress that archive file using the unzip command. This tutorial will show you how to use the zip ... Read More

Satish Kumar
1K+ Views
Overview As a Linux system administrator, dealing with processes is a frequent task. Generally, they're easy to stop, however in certain cases - when there are large numbers of processes within the same groups - additional steps might be needed. We’ll take a closer look at how to manage processes ... Read More

Satish Kumar
25K+ Views
Overview When using Linux, we often perform various operations on our own personal data. One common operation is to create an empty file of a specific size. There are many ways or command to achive this, here we’ll cover some of these methods − “dd” command dd − The dd ... Read More

Satish Kumar
7K+ Views
Overview curl is a command line tool that supports many different types of websites including https sites. It can be used to connect to any website, but it's most commonly used for connecting to web servers and retrieving data from them. In this tutorial we will learn how to use ... Read More

Satish Kumar
2K+ Views
Overview This article examines how to total up numeric columns of data in a bash shell, looking at the bash tools available for the task and comparing their speed. Using The awk Tool We’ll start by calculating the sum of the values in a particular column using the awk (awk) ... Read More

Satish Kumar
6K+ Views
Overview Extracting a substring from a string is a basic and common operation of text processing in Linux. We're looking at different ways to extract substrings from strings using the Linux command line here. Extracting an Index-Based Substring Let’s first take a quick glance at how to extract index-based substring ... Read More