-
NetCoreUsefullEndpoints-2–MVP
So let’s start the implementation for user / error / environment. The only difficulty resides in the fact that IEndpointRouteBuilder is not defined into a usual library,but the dll csproj must contain <ItemGroup> <FrameworkReference Include=”Microsoft.AspNetCore.App” /> </ItemGroup> Otherwise,it is work as usual. For example,for seeing a user public static void MapUser(this IEndpointRouteBuilder route) { ArgumentNullException.ThrowIfNull(route);…
-
NetCoreUsefullEndpoints–1- Idea
For every web Api that I produce I want to see if it is well configured . That means The error flows how it should,where it should ? ( API for error ) The user is authorized and authenticated ? What is the current environment that I have ? ( name of the host )…
-
Friday links 484
https://twitter.com/seldo/status/1453094314439942149 Hitting the High Notes – Joel on Software LAWS OF THE UNIVERSE (2) – HILOBROW unjs/ohmyfetch: A better fetch API. Works on node,browser and workers. Transform Your Technical Expertise into Leadership keithwhor/audiosynth: JS Dynamic Audio Synth What is the CAP Theorem? | IBM Configure Azure Static Web Apps | Microsoft Docs www.jeli.io Ethereal Email
-
DIForFunctions–improving generating of a constructor for a existing class with Roslyn
It is not so difficult to generate a new constructor for a existing class with Roslyn – however,there are some difficulties: 1. The original class must be declared “partial” – you cannot declare the second as partial if the first was not 2. The new class must be in the same namespace ( or without…
-
Friday links 483
Top 10 Advanced VS Code Settings for Senior Developers | by Dr. Derek Austin | Nov,2021 | JavaScript in Plain English Announcing .NET 6 – The Fastest .NET Yet – .NET Blog Lessons on ML Platforms — from Netflix,DoorDash,Spotify,and more | by Ernest Chan | Towards Data Science Feature Stores – A Hierarchy of Needs…
-
[ADCES] Links React si SqlServer
React React Projecthttps://stackblitz.com/edit/react-ts-fq3kio?file=App.tsxMicro Front Endshttps://github.com/alexandru360/React-Typescript-Module-FederationBlog Alexandru Baditahttp://alexandru360.blogspot.com/ Analiza deadlock-uri SqlServer https://www.sommarskog.se/sqlutil/beta_lockinfo.html https://www.sentryone.com/plan-explorer https://github.com/BogdanSahlean/TSQL/blob/master/XdlAnalysis.md
-
[ADCES]Introducere in React si Analiza DeadLock in SqlServer
Prezentare 1:Titlu: Introducere in REACTPrezentator: Alexandru Badita,http://alexandru360.blogspot.com/Descriere:Cum pot crea o pagina rapid (ce unelte am ladispozitie)Cum pot crea un formular (validari pe formular) sialte unelte ce pot fi integrate cu react.Mfe (Micro front ends) cum se pot crea cu Reactarhitectura de proiect Prezentare 2:Titlu: Analiza blocajelor de tip deadlock in SqlServerPrezentator: Bogdan Sahlean,Descriere: Reading and…
-
DIForFunctions – Improving constructor–part 5
I have received a suggestion : what if we just put into constructor what we need,and everything else ( such as ILogger ) are into fields ? The Roslyn Source Code Generator will generate a constructor that calls the this constructor and will assign fields needed. Let’s give an example : We wrote public partial…
-
Friday links 482
CQRS Journey | Microsoft Docs 50 Top Open Source Tools for Big Data | Datamation Using Cell-Level Encryption in SQL Server | Basit’s SQL Server Tips The Seven Sins against TSQL Performance – Simple Talk Security issue: compromised npm packages of ua-parser-js (0.7.29,0.8.0,1.0.0) – Questions about deprecated npm package ua-parser-js · Issue #536 · faisalman/ua-parser-js…
-
MVP again
It is nice to receive again the MVP award.
I am ok , you are ok