What is the Arduino programming language

In this article, we discuss what is the Arduino programming language which programming language Arduino uses for development and why you have to use Arduino programming language, and how to get started with Arduino programming language.     What is the Arduino programming language? Arduino is an open-source electronics platform that uses a simple programmingIn this article, we discuss what is the Arduino programming language which programming language Arduino uses for development and why you have to use Arduino programming language, and how to get started with Arduino programming language.     What is the Arduino programming language? Arduino is an open-source electronics platform that uses a simple programming […]

Read More…

How to switch git branches

In this article, I show you how you can switch git branches while working on git. These are very often you have to do while working on git.     Suppose you have two branches one for development where as a developer you have been working and one is the main branch where everyone inIn this article, I show you how you can switch git branches while working on git. These are very often you have to do while working on git.     Suppose you have two branches one for development where as a developer you have been working and one is the main branch where everyone in […]

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…