Key Vault – Failed to sync the certificate.: The service does not have access to ‘*’ Key Vault

TLDR; How to fix Failed to sync the certificate.: The service does not have access to ‘*’ Key Vault Hello! You may want to read this post if you have come across one of the following errors related to Key Vault: Failed to update all the resources with the latest certificate Failed to sync the … Read more

Error CS0234: The type or namespace name ‘HelloWorld.Core’ does not exist in the namespace ‘HelloWorld’

Warning MSB3245: Could not resolve this reference. Could not locate the assembly “HelloWorld.Core”. Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors. Error CS0234: The type or namespace name ‘Core’ does not exist in the namespace ‘Document360’ (are you missing an assembly … Read more

How to run Console Applications on Azure Pipelines

Learn how to run console apps on Azure DevOps without hosting! I came across multiple similar questions on StackOverflow for running a Console Application on Microsoft Azure. Answers mostly suggesting running the console app on WebJobs. Here I’m sharing another way of running console apps on Microsoft Azure DevOps, with Azure Pipelines. [Azure]: Run your … Read more

How to fix window.open(url) opening two tabs

#javascript #tip: How to fix window.open(url) opening two tabs window.open(‘url’) may open double tabs when clicked in IE/FF/etc. Google Chrome is superior and is the first one to bring the latest updates from the W3C announcements, in my opinion! Browsers may behave differently for “window” functions.Prefix “javascript:” for getting standard implementation output. use javascript:window:open(‘url’) instead

ssh: connect to host x.x.x.x port 22: Connection timed out

aah-connection-timeout-port-22

Did you just change some network configuration on your Ubuntu virtual machine and now you’re not able to connect? Here’s how you can fix the ssh connection. how to fix – ssh: connect to host x.x.x.x port 22: Connection timed out Background I spinned up an Ubuntu (18.04.3 LTS, Bionic Beaver) virtual machine on Azure … Read more

HTTP Error 500.0 – ANCM In-Process Handler Load Failure

With ASP.NET Core 2.2 support added to Azure Web Apps – it’s a bit tricky to host multiple applications using Virtual Directories. If you just publish your web apps using Visual Studio on different virtual, directories – not more than one will work at the time I’m writing this. You need to make certain changes … Read more

Azure DevOps

Azure DevOps

Azure DevOps is a suite of services for Managing, collaborating, building and deploying code. Azure DevOps Organizations are the starting point for Azure DevOps. You need a Microsoft account to sign-in. If you do not have one – sign up for a free account. Organizations are free up to 5 team members. An Organization can … Read more

Office 365 Export | Perfect Tool to Backup Office 365 Mailbox to PST

[Guest Post] Many times, admin as well as individuals wants to save their crucial data from cloud to a local system. Well, there are several reasons due to which users want to switch to the desktop email application. Thus, Outlook is one of the most commonly used email programs with a great number of benefits. … Read more

How to Convert a SQL Table to C# Class

Run the following SQL query and it will print the SQL table in a formatted C# Class: ———————————————————– DECLARE @tbl sysname = ‘doc360_User_Role’ DECLARE @ClassStr varchar(MAX) = ‘public class ‘ + @tbl + ‘ {‘ SELECT @ClassStr = @ClassStr + ‘ public ‘ + ColumnType + NullableSign + ‘ ‘ + ColumnName + ‘ { … Read more