How to fix Google cloud FTP permission denied

Are you using google cloud WordPress hosting for your website? Although WordPress provides a lot of settings to manage the site sometimes you have to modify the WordPress file in the host server. In this tutorial, we learn how to modify the file using FTP so that you didn’t get google cloud FTP permission deniedAre you using google cloud WordPress hosting for your website? Although WordPress provides a lot of settings to manage the site sometimes you have to modify the WordPress file in the host server. In this tutorial, we learn how to modify the file using FTP so that you didn’t get google cloud FTP permission denied […]

Read More…

Python get last element from list

In this tutorial, I show you how to get the last element of the list in Python. This is a very common scenario when you manipulate any list in python.     There are two ways in python to get the last element from the list – The popular way using the list[-1] method. TheIn this tutorial, I show you how to get the last element of the list in Python. This is a very common scenario when you manipulate any list in python.     There are two ways in python to get the last element from the list – The popular way using the list[-1] method. The […]

Read More…

Choose the correct html tag to make a text italic

In this tutorial, we understand how to choose the correct HTML tag to make a text italic. The HTML tag is used to format the webpage.     Html tag to make a text italic   The <i> Html tag is used to make a text italic in HTML below is the format <i></i> WriteIn this tutorial, we understand how to choose the correct HTML tag to make a text italic. The HTML tag is used to format the webpage.     Html tag to make a text italic   The <i> Html tag is used to make a text italic in HTML below is the format <i></i> Write […]

Read More…

Apply SharePoint master page using PnP PowerShell

In this article, we learn how to apply SharePoint master page using PnP PowerShell to a particular site collection or its subsites. SharePoint has two master pages one for site pages and one for system pages. PnP PowerShell provides several commands which can be executed from a remote machine instead to run from the server.In this article, we learn how to apply SharePoint master page using PnP PowerShell to a particular site collection or its subsites. SharePoint has two master pages one for site pages and one for system pages. PnP PowerShell provides several commands which can be executed from a remote machine instead to run from the server. […]

Read More…

How to sort JavaScript array

The JavaScript array is commonly used in client-side development and quite often we use filtering and sorting in the array. In this article, we learn how to sort JavaScript array objects with single and multiple columns.     The array.sort() method is used to sort the array elements and the sort method has compared functionThe JavaScript array is commonly used in client-side development and quite often we use filtering and sorting in the array. In this article, we learn how to sort JavaScript array objects with single and multiple columns.     The array.sort() method is used to sort the array elements and the sort method has compared function […]

Read More…