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… Read More »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… Read More »Get Current branch name in GIT
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… Read More »Maven Issue: No compiler is provided in this environment. Perhaps you are running on a JRE rather than JDK?
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… Read More »Why Adsense is displaying yellow color background for some of the ads
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… Read More »MySQL server has gone away
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… Read More »Git Add,Commit,Push in a single command
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… Read More »Fatal error:Allowed memory size of xxxxx bytes exhausted (tried to allocate xxxx bytes) in on line
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… Read More »Converting object and array in Javascript into JSON
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… Read More »How to display posts from a specific category on your homepage in WordPress?
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… Read More »How to setup Node.js without Administrator access
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… Read More »How to import multiple Google fonts in a Webpage
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… Read More »Finding the list of ports used by applications in Windows
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… Read More »How to get html value of the node using DOM in php
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… Read More »How to clean Temporary files in Windows
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… Read More »BDD : Behat with PHP using Visual Studio Code on Windows
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… Read More »How to pass variables to a Python script via Php