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…
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:…
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…
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…
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…
Get the List of All Files and Directory Recursively in Linux
List files and directories inside the specified path Some time we want to check list all files in a directory recursively. But its hard to navigate each and every directory…