This is a simple comparison based off of Hand-coded (using SqlDataReader) benchmark of select mapping over 500 iteration – POCO serialization, which is 47ms.
Category: App Services
All about application services for example, Azure App Service. Angular application, Microsoft .NET Core and EF
Computer Graphic Cards
DirectX 12 Ultimate is the new gold standard for gaming graphics on both PC and the next generation of Xbox consoles:
DirectX is a technical tool that helps game developers interact with sound and graphics cards. Although it can be installed on any computer, most users won’t ever need it. It runs when you play a game made with DirectX and that’s it. You’re only going to need to get to know it better if you want to program with it yourself. It has one of the most agile runtime processes amongst this category.
Reference
https://devblogs.microsoft.com/directx/directx-12-ultimate-for-holiday-2020/
Intel NUC’s on edge – Case Study
Edge computing, the idea of having cloud-native resources at the edge of a network, is an emerging concept in IT, and it’s having an impact at fast food restaurant chain Chick-fil-A. The restaurant chain is also making use of the open-source Kubernetes container orchestration system and the concept of GitOps to help manage its edge deployments with a DevOps approach.
Read more here
Using appsettings.json in Asp.net core 6 Program.cs file
In case that we have in appsettings;
"settings": {
"url": "myurl",
"username": "guest",
"password": "guest"
}
and we have the class;
public class Settings
{
public string Url { get; set; }
public string Username { get; set; }
public string Password { get; set; }
}
we can use also;
var settings = builder.Configuration.GetSection("Settings").Get<Settings>();
var url = settings.Url;
Reference
What is a Builder Pattern?
Builder Design Pattern allows us to separate the construction of a complex object from its representation so that we can use the same construction code to produce different types and representations of an object. It is used to construct a complex object step by step and return the complete object after the final step.
Read more here