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…

Understand JavaScript splice method

In this article, we learn how to add, remove and replace elements from an array using the JavaScript splice method. The splice method takes a minimum of 1 argument that is the start index where it starts adding or removing the items.   In day-to-day development, you come across this situation when you have toIn this article, we learn how to add, remove and replace elements from an array using the JavaScript splice method. The splice method takes a minimum of 1 argument that is the start index where it starts adding or removing the items.   In day-to-day development, you come across this situation when you have to […]

Read More…

Pandas find column contains a certain value

In this article, we learn how to find columns containing a certain value in pandas. This is a very common scenario you came across during deployment. Let see how pandas find column contains a certain value – Suppose you have a data frame having the following columns – import pandas as pd1 df = pd1.DataFrame({In this article, we learn how to find columns containing a certain value in pandas. This is a very common scenario you came across during deployment. Let see how pandas find column contains a certain value – Suppose you have a data frame having the following columns – import pandas as pd1 df = pd1.DataFrame({ […]

Read More…

Convert SQL query result to Pandas DataFrame using Python

In this article, I’ll show you How to convert a SQL query result to pandas DataFrame using python script. Python has a pandas library that provides the high-level interface to the data that exist in SQL Database.   Businesses can use this data analysis tool for data visualization and data analytics. For the demo purpose,In this article, I’ll show you How to convert a SQL query result to pandas DataFrame using python script. Python has a pandas library that provides the high-level interface to the data that exist in SQL Database.   Businesses can use this data analysis tool for data visualization and data analytics. For the demo purpose, […]

Read More…