Create Azure Purview using Bicep. Learn how to deploy Azure Purview using… | by Dave R – Microsoft Azure MVP☁️ | CodeX | Dec, 2021

Azure Purview is a unified data governance solution that helps you manage and govern your on-premises, multi-cloud, and software-as-a-service (SaaS) data. This article intends to show you how to leverage Bicep, a domain-specific language (DSL) that uses a declarative syntax to deploy Azure Purview. An active Azure subscription Permission to create resources in the subscription … Read more

Big O Notation For Beginners

Understanding Code Efficiency Big O notation is a mathematical notation that denotes the limiting behavior of an algorithm when the input tends towards infinity. It is the most widely used notation in computer science when defining time and space complexity, and a staple to understanding code efficiency. In this article I will specifically be going … Read more

Big O Notation For Beginners

Understanding Code Efficiency Big O notation is a mathematical notation that denotes the limiting behavior of an algorithm when the input tends towards infinity. It is the most widely used notation in computer science when defining time and space complexity, and a staple to understanding code efficiency. In this article I will specifically be going … Read more

Python Web Scraping Using BeautifulSoup.

Now let’s dive into how the web scraping is actually done. In python, we use a module called, bs4 to acquire BeautifulSoup which comes as a part of it. In addition, we do need requests module to actually send the HTTP request. Once you install both bs4 and requests modules, you can import them as … Read more