Skip to main content

dotnet

Interactuando con la IA en el mundo real
·17 words·1 min
dotnet kubernetes dotnet container apps dapr
Talk on how to use .NET, Azure Container Apps and Dapr to build modern and intellignet applications.
Modernizing your applications .NET with containers and serverless
·13 words·1 min
dotnet kubernetes dotnet container apps dapr
Use .NET, Azure Container Apps and Dapr to build modern and intellignet applications.
Create, Build, and Run .NET 7 WASM apps
·35 words·1 min
dotnet kubernetes dotnet kubernetes wasm
In this talk, we’ll look at how to create, build and run a server-side WebAssembly app in C#. Then we’ll push the resulting WASM binary to Azure Container Registry and run the app in Kubernetes!
Protect your Node.js or .NET API with Azure Active Directory
·1404 words·7 mins
dotnet azure dotnet nodejs aad azure active directory
One question I often get from by my customers is how to use Azure Active Directroy to protect their Node.js or .NET APIs. Every single time I answer by redirecting them to this amazing post (Proteger una API en Node.js con Azure Active Directory), written in spanish, by my friend and peer Gisela Torres (0gis0).
.NET Core, BenchmarkDotNet: for vs foreach performance
·581 words·3 mins
dotnet dotnet
So what is faster: looping through a List<> with for or with foreach? Today I’ll show you how to use BenchmarkDotNet with .Net Core to answer that question. Let’s start: Create a folder for your new project # Open a command prompt an run:
.NET Core, BenchmarkDotNet and string compare performance
·489 words·3 mins
dotnet dotnet
You have to choose between using string.compare or == to compare strings. How would you know which method performs faster? Today I’ll show you how to use BenchmarkDotNet with .Net Core to answer that question. Let’s start: Create a folder for your new project # Open a command prompt an run: