Discovering Hidden Content

It is very common for applications to contain content and functionality which is not directly linked or reachable from the main visible content. A common example of this is functionality that has been implemented for testing or debugging purposes and has never been removed. Another example arises where the application presents different functionality to different … Read more

Installing Google Chrome on CentOS

Follow the steps listed below to install Google Chrome on your CentOS system: Start by opening your terminal and downloading the latest Google Chrome .rpm package with the following wget command: wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm Once the file is downloaded, install Google Chrome on your CentOS 7 system by typing: sudo yum localinstall google-chrome-stable_current_x86_64.rpm The command above … Read more