
xgh
XGH / eXtreme Go Horse
I think therefore it's not XGH. In XGH you don't think, you do the first thing that comes to your mind. There's not a second option as the first one is faster.
xgh
I think therefore it's not XGH. In XGH you don't think, you do the first thing that comes to your mind. There's not a second option as the first one is faster.
.NET 6
Explore how to extend the native API key authentication in your application. Our guide provides detailed steps for customizing and enhancing API key security and functionality to fit your specific needs.
MongoDb
MongoDB is a document-oriented NoSQL database used for high volume data storage. Instead of using tables and rows as in the traditional relational databases, MongoDB makes use of collections and documents. MongoDb is very easy to get started - That is why I love MongoDb. I think it's
.NET 5
In this article, we're going to create the code (and understand how it works) to handle API Key authentication with just three lines of code extending the native Authentication mechanism. We want a simple and stupid solution and not some crazy implementation using MVC [Attributes] or any customized
azure-functions
Adding Dependency Injection feature to Azure Functions without third part libraries.
Azure
Let's explore the use of Microsoft Azure Application Insights to monitor the health of our application using the endpoint /healthcheck. Applications Insights it's a great tool for monitoring, error logging, performance monitoring, dependency mapping, and other things. In other words, it's a full APM
.NET 5
Enhance your application’s monitoring with our guide on adding a health checks UI. Discover how to visualize and manage health status effectively to ensure optimal performance and reliability.
https
A self-signed certificate it's very easy to create and helps on with local development and testing. With a Single Line of PowerShell code we create a certificate. First, open the PowerShell as Administrator and run the following command: New-SelfSignedCertificate ` –DnsName <DNS-Name> ` -CertStoreLocation "cert:\LocalMachine\My&
C#
Here is a code snippet of how to compress one or many files to a zip archive in memory using C#. It works in .Net Core and .Net Full Framework public static byte[] GetZipArchive(params InMemoryFile[] files) { byte[] archiveFile; using (var archiveStream = new MemoryStream()) { using (var archive = new ZipArchive(archiveStream,
C#
These days I was asking myself how to get the file name without the extension. I confess I was tempted to use a regex to solve this problem :) But no worries. There is a method in System.IO.Path specific for this situation. using System.IO; /// /// Get file name without
en
Yet Another AZ-203 Microsoft Official Course Delivered. Another AZ-203 official Microsoft course delivered with success! Class members feedback was great. And I loved to make over 22 new colleagues these two weeks. I should say, this course is awesome. The level of topics is at beginning easy, them going to
AZ-203
Quick Configuration Getting the public Ip Get-AzPublicIpAddress -ResourceGroupName "demo003" | Select "IpAddress" Full Configured Virtual Machine Getting the public Ip Get-AzPublicIpAddress -ResourceGroupName "demo004" | Select "IpAddress" Removing deployment Remove-AzResourceGroup -Name demo003 Remove-AzResourceGroup -Name demo004