Restore list from Existing in Modern SharePoint Online

Recently, we have observed that save list as a template option is missing for Modern SharePoint Online site. Because of which many users are getting confuse on how to restore their existing list into another site which is mostly required and quite normal in terms of SharePoint. Save as s template was very handy option to copy list definition as well as to migrate it … Continue reading Restore list from Existing in Modern SharePoint Online

What is deployment slots in Azure App Service.

Background In Conventional web hosting, we deploy or publish an application to hosting and soon after publishing, user can access the application via an endpoint or a domain (say myapplication.com). Consider a scenario of releasing next version of same application, we again need to release the solution into another staging environment which need to have environment settings which is a manual and time-consuming job. In … Continue reading What is deployment slots in Azure App Service.

Scaling in Azure App Service – Almost All You need to know

Background In terms of web applications, underlying infrastructure plays vital role to cope of with applications performance, traffic surge, complex logic, long running process or execution time. It is one of the most difficult job to calculate the specifications in terms of infrastructure for web applications either it is public facing applications or for particular company. Most of the cases, there is high chances that … Continue reading Scaling in Azure App Service – Almost All You need to know

The error output was: An unhandled exception occurred: Cannot find module ‘posix-character-classes’

Scenario: One of our developer was getting this error, after she took the latest code of DevOps. This application was angular 11 with ASP.net core 3.1. Exact Error: AggregateException: One or more errors occurred. (One or more errors occurred. (The NPM script ‘start’ exited without indicating that the Angular CLI was listening for requests. The error output was: An unhandled exception occurred: Cannot find module … Continue reading The error output was: An unhandled exception occurred: Cannot find module ‘posix-character-classes’

Auto-Start and Auto-shutdown in Azure Virtual Machines

Azure services cost varies based on utilization and uptime and is one of the important factors for overall billing amount. In most of the scenarios, we use azure VM during office hours or some specific duration only but remain useless in off-hours. And paying azure virtual cost during off-hours is simply unnecessary amount. In other words, we might not need to run the 24hours for … Continue reading Auto-Start and Auto-shutdown in Azure Virtual Machines

Some unique, uncommon but very useful HTML elements (tags)

In this article we will explore some of the unique and quite useful html tags where are ignored or less common among the web designers or developers. However, they put extra effort to achieve same results in web though they have already available elements. 1. Address (<address>) Almost every website is using some kind address in their pages where they display business or author address with … Continue reading Some unique, uncommon but very useful HTML elements (tags)

Implement Most Popular AdminLTE Bootstrap Theme in Angular 11

When we start the development of any application, the first thing is implementing a theme for the solution. As per current industries trends, it is seen that developers try to use one of available popular theme or framework. AdminLTE is one of the most popular and open source specifically for admin dashboard, however we can use this theme for several other type of applications. In … Continue reading Implement Most Popular AdminLTE Bootstrap Theme in Angular 11

Unable to resolve service for type ‘Swashbuckle.AspNetCore.Swagger.ISwaggerProvider’

Recently, one of my team member faced this error while implementing swagger in asp.net core. Environment Details: Visual Studio 2019 ASP.NET Core 3.1 Swashbuckle.AspNetCore 5.6.3 Error: Unable to resolve service for type ‘Swashbuckle.AspNetCore.Swagger.ISwaggerProvider’ while attempting to Invoke middleware ‘Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware Issue was with swagger generator. Swagger generator was not call or registered in container services of startup file. Below code: (startup.cs file) add services.AddSwaggerGen(); Additionally, You … Continue reading Unable to resolve service for type ‘Swashbuckle.AspNetCore.Swagger.ISwaggerProvider’

How to Compare Two Databases, find differences and update using Visual Studio

In this article, we are going to learn how to compare two databases using SQL Server Database Project (Template) available in Visual Studio. I will cover the following points: Introduction of SQL Server Database Project. Connect two databases: source and target. Compare and identify differences among the two databases. Update or generate script to update the target database.  In the last article, we learned how … Continue reading How to Compare Two Databases, find differences and update using Visual Studio