Category Archives: .Net

Permissions for ‘key.pem’ are too open When accessing Azure Linux

This blog article shows you one of the possible ways to eliminate the error message “Permissions for ‘key.pem’ are too open”. In a Azure VM installed with Ubuntu, you can get the pem key for SSH to login by using … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Operating System, Servers | Tagged | Leave a comment

Debug T-SQL using Visual Studio

This blog article shows you how to how to debug T-SQL statements using Visual Studio. In the blog article Querying All Tables in a Database Using Dynamic SQL in Microsoft SQL Server we have the SQL code as follows. Start … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform, programming | Tagged | Leave a comment

Add GitHub Copilot to Visual Studio

This blog article shows you how to add GitHub Copilot Completion and GitHub Copilot Chat to Visual Studio 2022. This article expects you to know how to create a Console App in Visual Studio 2022. The figure below is before … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, programming | Tagged | Leave a comment

CTO May 2024 articles and resources

These are the good reads found in this month. Is Kubernetes worth it? · What to consider · The importance of a TCO analysis… https://www.infoworld.com/article/3714768/is-kubernetes-worth-the-price-tag.html How to set – and achieve – DEI goals in IT · Take stock · … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform | Tagged | Leave a comment

Querying All Tables in a Database Using Dynamic SQL in Microsoft SQL Server

Are you dealing with a database where you need to query every table, but you’re not keen on writing out individual SELECT statements for each one? Microsoft SQL Server offers a solution through dynamic SQL and cursors, enabling you to … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Data Platform, programming | Tagged | 1 Comment

Azure Storage download files using PowerShell

This blog article shows you how to download the file from Azure Storage folder using PowerShell. Below is the code snippet to download the files from Azure Storage Container. Connect-AzAccount -Tenant TanantId -Subscription SubscriptionId $resourceGroupName=”resourcename”  $storageAccName=”accname”  $directoryPath=”document” $container = “container” … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, programming | Tagged | Leave a comment

Azure Migrate and Modernize

Create highly differentiated digital experiences and deliver continuous innovation with Azure Innovate, a new offering to help you plan and deploy Microsoft solutions across apps, data and AI to build intelligent applications. Get started with the Azure Migrate and Modernize … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform | Tagged | Leave a comment

Six Strategies for AI Implementation

Six Strategies for AI Implementation: Responsible AI practices on Azure Position your org for long-term success by responsibly implementing and scaling AI using Azure. Ensure compliance, mitigate risks,and build trust using the strategies for responsible and ethical AI in this … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, CTO, Data Platform | Tagged | Leave a comment

JavaScript Calls Web Api

This blog article shows you how to call a C# Web Api using JavaScript. For JavaScript to call the Web Api, you might need to add the CORS allows code in Program.cs in your Web Api like below. app.UseCors(builder => … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, programming | Tagged | Leave a comment

Create Web Api using Visual Studio C#

This blog article shows the basics on how to create Web Api using Visual Studio 2022. Start Visual Studio 2022. Click on Create a new project. In the search box, type web api, choose ASP.NET Core Web Api. Click Next. … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, programming | Tagged | 1 Comment