What is Power BI? Power BI is a powerful Business Intelligence (BI) and Data Visualization tool developed by Microsoft. It is widely used for Data Analysis and reporting purposes in organizations and across various industries. Why Power BI? Power BI is popular for several key reasons: User-Friendly Interface Data Integration: Can integrate data from different […]
Introduction Bicep is a domain-specific language (DSL) that deploys Azure resources with declarative syntax. With a flexible syntax designed especially for Azure Resource Manager (ARM) templates, the Bicep language offers a useful way to manage Azure infrastructure installations.Bicep provides an attractive solution for environments where enterprises want to apply Infrastructure as Code (IaC) principles. It […]
By default MariaDB, MySQL/Percona, PostgreSQL and SQLite databases are available for Drupal. The purpose of this blog is to Use MSSQL as Default Database with Drupal 10 (Windows). Let’s start installing Xdebug 3 on MacOs Step 1 : First we need to install MSSQL database on Windows Go to https://www.microsoft.com/en-in/sql-server/sql-server-downloads and download setup file Step […]
Front End DevelopmentMEANNode.js
In this blog post, we embark on a journey to explore the inner workings of these fundamental array methods and learn how to craft polyfills for them. So, let’s roll up our sleeves and dive into the world of JavaScript polyfills, unlocking the true potential of our favorite programming language. Pollyfill for Array.map() Array.map() syntax: […]
Front End DevelopmentReact.jsTesting
In the always growing web development world, ensuring the reliability and stability of your application is significant. Testing our Web applications is crucial for quality control and catching bugs early in the development process. Jest is an exciting JavaScript testing framework that has become a popular choice for testing React applications due to its simplicity, […]
In Jetpack compose state determine what is shown on UI. It is a value that changes over time. There are 2 ways to maintain state. Stateless composable: Stateless composable does not have any state or rely on parent state. This kind of composable does not require re- composition of UI. It is used to display […]
JavaScript programming takes a lot of development time because it’s always changing, and its unique features make learning and managing code a challenge. But ChatGPT can help you become more productive. Here are the different ways to use ChatGPT for JavaScript development. 1. Understand the given code. Due to the changing nature of JavaScript, it […]
Introduction AWS CodeGuru utilizes Machine Learning and Automated Reasoning to identify security and quality issues in your application code, offering guidance on addressing and resolving them. It provides a comprehensive offering of functionalities like: ● Code Review with Amazon CodeGuru Reviewer: This tool Profiler visualizes your application performance, showing you the methods that take the […]
Front End DevelopmentMEANNode.js
When we have multiple promises, and we have to execute them parallelly, then we have plenty of promise methods to achieve that based on the requirement. Let’s explore those methods of Promises:: Promise.all() Promise.allSettled() Promise.race() Promise.any() Promise.all() The Promise.all() static method takes an iterable(array) of promises as input and returns a single Promise. If all the […]