Get Current branch name in GIT
Generally there might be many branches inside a GIT repository and when you are working on multiple repositories you might know which branch you are currently working on. So there are 2 ways to...
Generally there might be many branches inside a GIT repository and when you are working on multiple repositories you might know which branch you are currently working on. So there are 2 ways to...
This error occurs when you are trying to run Maven to download some libraries for executing a Java program on a machine.This usually occurs when incorrect JDK path is set in the Environment variables....
You might have seen adsense ads displaying a yellow color background in some websites even if you have not choosen the background as yellow for some of the ads This is due to an...
The above error you may have encountered when importing a large SQL file. This error occurs frequently along with bundled software like xampp when you try to import a large sql file via phpmyadmin...
Sometimes you may find it difficult to enter Git add and then do a commit and then push in a single command Open the GIT and add this command Once you have added this...
You may have encountered an error more similar to the below one very often Allowed memory size of 134217728 bytes exhausted (tried to allocate 102400 bytes) in on line If you ever encounter an...
Here is an method to convert Javascript Object in Javascript Array into JSON so that it can be passed in url Let us create 2 Javascript objects as shown below Then push the objects...
Yes this is possible without installing any plugins or doing some custom coding by means of your wordpress theme options Follow the below steps (This is available in Hueman theme) Step 1: Go to...
Yes it’s possible to setup Node.js even without Administrator access on one’s computer.All you need to do is follow the below steps Step 1: Download Node.js along with NPM as a zip file from...
To import multiple Google fonts in a Webpage you can follow either one of the steps below In HTML Page: Suppose if you want to import fonts in a HTML page..All you need to...
Sometimes it’s necessary to see what ports are in your use, when you are trying to install an application so that you can either shutdown the old one or change the Port Number of...
Take a look at my post about HTML DOM here We know Php DOM can get values, attributes of an HTML node and there are inbuilt functions for it, but is there any way...
This small batch file will help us to clear the temporary files in Windows. All you need to do is save the below code and run it as a scheduled Task
Behat is a one of the BDD tools.It’s something like Cucumber which allows you to easily test Business scenarios and flows. Let us see here how to setup Behat with Php using Visual Studio...
Sometimes you may be in need of passing variables to a Python script that is being executed by Php as command line. To do this follow the below steps Here is our Python script...