PinnedAll About Docker and Containers!Prerequisite - Before jumping to the article, create a personal docker hub account because it will be needed in later sections. Install Docker in WSL (Windows Subsystem for Linux) Ubuntu. Docker Desktop. Topics covered in this section are listed...Mar 12, 2023·3 min read·88
Bash Script to automate git-pushBash Script to automate git-push Operation - Bash Script program to automate git push operation , this program helps to automate the process of pushing files to remote repository on github . Refer to the following articles for more details -> Bash ...Sep 17, 2022·1 min read·58
How to clone a git repository ?Cloning a Repository On github, navigate to the main page of the repository and copy the URL of the respository which you want to clone. Open Git Bash. Change the current working directory to the location where you want the clone git remote repo...Sep 10, 2022·1 min read·49
How to push code to a github repository ?Steps to Push code to Github -> Create a new repository on Github After creating repository on github , move to linux or git bash. Move into that folder where files are present. Now initialize the folder with git init to make it a git repo...Sep 9, 2022·2 min read·154
What is Bash Scripting ?What is Bash scripting and how does it work? Bash, short for Bourne-Again Shell, is a Unix shell and a command language interpreter. It interprets a shell scripting language and executes the commands. Bash scripting can be used to automate linux t...Sep 5, 2022·2 min read·151
User-Defined Derived Data typesUser-Defined Derived Data types There are some derived data types that are defined by the user. These are class , structure , union and enumeration. Class A class represents a group of similar objects. To represent classes , it offers a user-def...Sep 5, 2022·2 min read·43
FunctionsFunctions A function is a subpart of a program which can be reused as and when required. Functions are the building blocks of programming. It is a named unit of a group of program statements. This unit can be invoked from other parts of program as...Sep 4, 2022·1 min read·29