OpenId User Impersonation in Asp.net core With Duende Identity Server - Doumer's Blog In this article, we will use Duende Identity server and ASP.net core on dotnet 7 to implement OpenId User Impersonation in Asp.net core
How (not) to compare 2D scatter plots How to calculate the statistical distance between two 2D distributions of points. But first a lesson in bad statistics, the pitfalls of visual solutions and ...
My first steps with Nix on Mac OSX as Homebrew replacement I finally had some time to play around with Nix - the immutable package manager and build system. This was on my agenda since a long time, but I finally took the plunge on my M1 OSX system. I by no means understand Nix fully yet, but making progress and ...
How to deploy your deep learning side project on a budget Imagine this scenario: you have successfully trained a nice big neural network model for your side project. The next step is deploying it, making it available for everyone to use and benefit from. …
Where to find a co-founder | By Anna Leijon In this article, I gather all the different successful approaches to finding a co-founder - whether it is knowingly or unknowingly.
SQLite Scripting I often inherit scripts in an assortment of programming languages written by predecessors and vendors who…
The Next Phase of Eleventy: Return of the Side Project—zachleat.com A post by Zach Leatherman (zachleat)
Some Elixir Testing Tricks Testing in Elixir is pretty great. ExUnit, combined with the functional nature of Elixir, makes it very easy to test almost everything in your codebase. However, it is very easy for boilerplate to creep into your tests. Common setup patterns, similar asse...
No, I don't want to chat with my documents | Engin Arslan Engin Arslan - Software developer, teacher, entrepreneur
Bean Machine Retrospective, part 5 Let’s take another look at the “hello world” example and think more carefully about what is actually going on: @random_variable def fairness(): return Beta(2,2) @random_variable…
Introducing Microsoft Teams tabs and building with SharePoint Framework Blog: https://aka.ms/dotnet/blogTwitter: https://aka.ms/dotnet/twitterTikTok: https://aka.ms/dotnet/tiktokMastodon: https://aka.ms/dotnet/mastodonLinkedIn...
How To Store Secrets For Local Development 💻Watch the full tutorial: https://youtu.be/bKCzoR01lpE🔥My Free .NET Backend Developer Roadmap: https://go.dotnetmicroservices.com/roadmapAre you storing yo...
Microsoft Forms Service’s Journey to .NET 6 - .NET Blog Microsoft Forms is an Office product with 130M monthly active users, recently we migrated our services to .NET 6, and we have seen 100%-200% increase in CPU efficiency.
Introducing the New T4 Command-Line Tool for .NET - .NET Blog Learn about the new T4 text template utility built with .NET 6
YouTube Enjoy the videos and music you love, upload original content, and share it all with friends, family, and the world on YouTube.
Understanding the pitfalls of preferring the median over the mean We discuss the problem of selecting the right measure of central tendency in statistical analysis, discussing the pros and cons of the mean, median, and Hodges-Lehmann estimator
Adding Filtering, Sorting And Pagination To a REST API | .NET 7 🚀 Support me on Patreon to access the source code: https://www.patreon.com/milanjovanovicREST APIs are the industry standard when it comes to building APIs....
Integer compression: Implementing FastPFor decoding in C# In the previous post, I discussed FastPFor encoding, now I’m going to focus on how we deal with decoding. Here is the decode struct: Note that t...
PostgreSQL reconsiders its process-based model In the fast-moving open-source world, programs can come and go quickly; a tool that has many users today can easily be eclipsed by something better next week. Even in this environment, though, some programs endure for a long time. As an example, conside...
Why is Windows using only even-numbered processors? - The Old New Thing Spreading out the load over cores.
Azure App Configuration and .NET API: a smart and secure way to manage configurations Centralizing configurations can be useful for several reasons: security, consistency, deployability. In this article, we’re gonna use Azure App Configuration to centralize the configurations used in a .NET API application.
Parsing websites in C# with Html Agility Pack or AngleSharp Learn how to parse a website from .NET/C# using the two most popular NuGet packages for the job: Html Agility Pack and AngleSharp.
Exploring .NET streaming API scenarios Use the IAsyncEnumerable<T> interface to stream data from a server to a client.
How to Use Bulk Updates in Entity Framework Core - Code Maze Discover how to perform bulk updates in Entity Framework Core. Explore the new ExecuteUpdate and ExecuteDelete methods.
C# Source Code Generators - Bruno Sonnino C# 9 introduced a new feature that allows you to inspect user code as it is being compiled and generate new C# source files that are added to the compilation. This enables you to write code that runs during compilation and produces additional source code ...
GraphQL Code Generator–Avoid generating types that are not needed If you are using GraphQL in your frontend(or even backend) applications I hope you are not creating all the types yourself. Thanks to the bu...
When is an implementation detail an implementation detail? On the tension between encapsulation and testability.
ASP.NET Community Standup - Create a Microsoft Power App for your ASP.NET Core Web API Learn how to quickly build a front-end for your .net web APIs (using Power Platform) with Julia Kasper and Marcel Ferreira.Featuring: Julia Kasper, Marcel Fe...
Saving Files with .NET MAUI Community Toolkit Knowing how to save files in our applications is very important, however, the perception has been that implementation can be tedious. Thanks to the .NET MAUI Community Toolkit using FileSaver, you can now save files much faster. In this article I will sho...
On .NET Live - Improving Productivity & Reducing Support Time with Tag Helpers Tag Helpers are one of the most useful features to save time in ASP.NET Core. In this week's episode, community MVP Mitchel Sellers shows us his open-source ...
How to use RuntimeHelpers.IsReferenceOrContainsReferences to micro-optimize collections - Gérald Barré In this post, I describe how to use RuntimeHelpers.IsReferenceOrContainsReferences to micro-optimize collections in .NET.