Archives for Tips and Tricks
How to turn on/off ambient mode during charging in MIUI 12/Redmi Phones
Here is step by step guide to turn on/off ambient mode from Charging screen. I personally don't like it so I have figured out the way to turn off Ambient mode from charging screen. Here is steps to turn on/off Ambient mode in MIUI 12 Settings --> Google ---> Account…
How to install Curl on Windows 10
Here is the step by step guideline to install curl on windows 10 machine. Step 1. Download curl from the official website ;download page. Choose your operating system version. Step 2: After download, extract the zip file and copy ; from src/ folder to your desired directory. In my case I…
How to install Java 8 on Windows ?
Step by step guideline to install JAVA 8 on windows 10. Download the JAVA installer from the official website. Direct link
How to set JAVA_HOME path in Windows 10
I know this is very simple things to do and specially if you are an expert developer :) . But it will be better if we have all the steps in a single place. So here is the step by step guideline to set JAVA_HOME path in Windows 7 /…
How to Port Your Number to Reliance Jio 4G
As Reliance Jio 4G launched cheapest data and voice calls plans with several benefits to the Mobile users. Everyone wants to take benefits of these plan. You have two options to take advantages of Reliance Jio 4G , Buy new Reliance Jio 4G sim or Port you number to Reliance…
Deleting Lines Containing Specific string from multiple files
Deleting Lines Containing Specific string from multiple files Deleting Lines Containing Specific string from multiple files recursively Syntax: grep -Rl "STRING" /directory/path/ | xargs sed -i "/STRING/d" Example: Below example delete lines containing @license tag from src/main/php directory all files recursively grep -Rl "@license" src/main/php | xargs sed -i "/@license/d"…
Get the List of Files and Directories Recursively in Linux
Simple bash Script to get the list of files and directories inside the specified path Sometimes we want to get the list of files and directories recursively, but it is tedious to navigate each directory to check all the files. Here are the simple commands which will help you to…

