Top 10 Most important git Commands

In this article, we learn some most important git commands that every developer should know if their organization is using GitHub.     Most important git commands Here is the list of some most important git commands which can be used to maintain the code base-   1. git init This command initializes a newIn this article, we learn some most important git commands that every developer should know if their organization is using GitHub.     Most important git commands Here is the list of some most important git commands which can be used to maintain the code base-   1. git init This command initializes a new […]

Read More…

Posted in git

PowerShell grep with Example

In this article, we discuss do we have any PowerShell grep cmdlet if yes then how to use the same to search for specific strings or regular expressions in one or more files like we have the ‘grep’ command in Unix-like operating systems.     PowerShell grep In PowerShell, you can use the “Select-String” PowerShellIn this article, we discuss do we have any PowerShell grep cmdlet if yes then how to use the same to search for specific strings or regular expressions in one or more files like we have the ‘grep’ command in Unix-like operating systems.     PowerShell grep In PowerShell, you can use the “Select-String” PowerShell […]

Read More…

Run PowerShell script from batch file

In this article, I’ll show you how to run PowerShell script from batch file and how you can run all the PowerShell scripts that exist in a particular folder using a batch file. So let’s start first with how you can run a PowerShell script from the batch file.     Run PowerShell script fromIn this article, I’ll show you how to run PowerShell script from batch file and how you can run all the PowerShell scripts that exist in a particular folder using a batch file. So let’s start first with how you can run a PowerShell script from the batch file.     Run PowerShell script from […]

Read More…

CSS position fixed with Example

In this article, I show you how CSS position fixed property works and when you have to use position fixed value in your CSS. First, let’s understand what is CSS position fixed.     CSS Position Fixed The CSS position fixed property is used to set an element’s position relative to the browser window, andIn this article, I show you how CSS position fixed property works and when you have to use position fixed value in your CSS. First, let’s understand what is CSS position fixed.     CSS Position Fixed The CSS position fixed property is used to set an element’s position relative to the browser window, and […]

Read More…

Posted in css

Python newline in string

In this article, I will show you how you can include newline characters in strings using python. Below are some ways that you can use to print new lines –     Python newline in string Like most programming languages, the newline character in python is represented as “\n”. It is used to indicate theIn this article, I will show you how you can include newline characters in strings using python. Below are some ways that you can use to print new lines –     Python newline in string Like most programming languages, the newline character in python is represented as “\n”. It is used to indicate the […]

Read More…

Difference between Git and GitHub

In this article, I will explain about what the key difference between git and GitHub. So let’s first understand both git and GitHub.     What is git and how it works Git is a version control system that is used to track changes to files and manage projects with multiple developers. Here is anIn this article, I will explain about what the key difference between git and GitHub. So let’s first understand both git and GitHub.     What is git and how it works Git is a version control system that is used to track changes to files and manage projects with multiple developers. Here is an […]

Read More…

Posted in git