×


Search For:


Change the Location Settings on Google Chrome - Step by step guide ?

This article covers how you can conveniently change the location settings of your Google Chrome browser. In fact, you can easily control whether your location would be visible to the different websites that you visit or not. 


How to Change your default location settings on Google Chrome ?

  • On your computer, open Chrome Chrome.
  • At the top right, click More More and then Settings.
  • Click Privacy and security and then Site Settings.
  • Click Location.
  • Choose the option you want as your default setting.


Block Dangerous Websites on Google Chrome - Step by step guide ?

This article covers how to block the potentially dangerous websites on Google Chrome while using Linux Mint 20. In fact, you can prevent yourself from all the harms associated with visiting such websites.


Use the URL blocklist and allowlist to:

  • Allow access to all URLs except the ones you block—Use the blocklist to prevent users from visiting certain websites, while allowing them access to the rest of the web.
  • Block access to all URLs except the ones you allow—Use the blocklist to block access to all URLs. Then, use the allowlist to allow access to a limited list of URLs. 
  • Define exceptions to very restrictive blocklists—Use the blocklist to block access to all URLs. Then, use the allowlist to let users access certain schemes, subdomains of other domains, ports, or specific paths.
  • Allow Chrome browser to open apps—Allow specific external protocol handlers so that Chrome browser can automatically open certain apps.


Add a New Language on Google Chrome - Step by step guide ?

This article covers how to add a new language to the Google Chrome browser while using a Linux Mint 20 system.


How to Change the language of your Chrome browser ?

You can set Chrome to show all settings and menus in the language you want. This option is only available on Windows computers.

On Mac or Linux? Chrome will automatically display in the default system language for your computer.

  • On your computer, open Chrome.
  • At the top right, click More More and then Settings.
  • At the bottom, click Advanced.
  • Click Languages and then Language.
  • Next to the language you'd like to use, click More More.
  • If the language isn't listed, add it by clicking Add languages.
  • Click Display Google Chrome in this language. 
  • This option is only available on Windows computers.
  • Restart Chrome to apply the changes.


Install Skype on openSUSE Leap 15.3 - Step by step guide ?

This article covers how to install Skype on openSUSE Linux System. In fact, you can also look at some alternatives of Skype such as Slack, Microsoft Teams, Zoom, Zimbra, Nextcloud, etc.


Enable SSH on openSUSE Leap 15.3 - Step by step guide ?

This article covers how you can enable SSH on your openSUSE system. In fact, after enabling the SSH server, it is important to secure your SSH server to avoid various security risks. 


How to install  and enable FirewallD on openSUSE system ?

Run the following zypper command:

$ sudo zypper ref
$ sudo zypper update
$ sudo zypper install firewalld

Enable the firewall at boot time using the systemctl command:

$ sudo systemctl enable firewalld

Start the firewall on OpenSUSE Linux:

$ sudo systemctl start firewalld

Get status of your firewall:

$ sudo systemctl status firewalld


Python String partition() Method - Explained with examples

This article covers the usage of the partition() method in Python. In fact, Python partition() function is used to partition a string at the first occurrence of the given string and return a tuple that includes 3 parts – the part before the separator, the argument string (separator itself), and the part after the separator.


Python partition() function partition() Parameters

The partition() function accepts a single parameter:

  • separator – a string parameter that separates the string at the first occurrence of it.
  • Note – If the separator argument is kept empty, then the Python interpreter will throw a TypeError exception.