-
Friday Links 504
Tim Deschryver Type-Level TypeScript ??? Introduction Adding validation to strongly typed configuration objects in .NET 6 Console.ReadKey improvements in .NET 7 – .NET Blog FutureMe: Write a Letter to your Future Self
-
NetCoreUsefullEndpoints–part 7–restart application
In order to do the shutdown,I have added the following extension public static CancellationTokenSource cts=new (); public static void MapShutdown(this IEndpointRouteBuilder route,string? corsPolicy = null,string[]? authorization = null) { ArgumentNullException.ThrowIfNull(route); var rh = route.MapPost(“api/usefull/shutdown/”, (HttpContext httpContext) => { var h= cts.Token.GetHashCode(); cts?.Cancel(); return h; }); rh.AddDefault(corsPolicy,authorization); } This code defines a…
-
Friday Links 503
Working With .NET Console Host Lifetime Events abseil / Software Engineering at Google
-
2022 in 12 links
Faker and color Exchange Y2K22 bug Angular v14 Lambda powershell AWS WinApp SDK 1.1 .NET MAUI Next JS 13 . Net 7 Github codespace free 60 Angular 15 Typescript 4.9 And of course,https://chat.openai.com/
-
Friday Links 502
Conway law F0-Talks-SourceGenerators/NET.md at main ?? Flash0ver/F0-Talks-SourceGenerators ?? GitHub Profiling QuestPDF: In Pursuit of Performance https://twitter.com/davidfowl/status/1585130438779359232? faressoft/terminalizer: ?? Record your terminal and generate animated gif images or share a web player 98.css – A design system for building faithful recreations of old UIs Things your manager might not know
-
Friday links 501
Let’s Make September Our Free Community Tools Awareness Month. – Brent Ozar Unlimited?? September Free Community Tools Awareness Month – wiseDATAman September Free Community Tools Awareness Month Microsoft SQL Server Utilities and Tools ??? SQLServerCentral Magical Music Theory Tools to Learn Music Online for Free Lucide Developer Roadmaps microsoft/Semi-supervised-learning: A Unified Semi-Supervised Learning Codebase (NeurIPS’22)…
-
.NET 7 Latest features
.NET 7 is a version of the .NET platform that was released on November 10,2021. It is a major release that includes many new features and improvements. Some of the notable features of .NET 7 include: Improved performance: .NET 7 includes many improvements that result in faster startup time and better overall performance. Enhanced support…
-
Friday links 500
AlexeyBoiko/DgrmJS: DgrmJS is a JavaScript library for creating SVG flow diagrams. The main goal of the library is to set up workflows in BPM (Business Process Management) systems. Works on desktop and mobile,has no dependency,3.5 KB gzipped. LibraryOfCongress/api.congress.gov: congress.gov API gui-cs/Terminal.Gui: Cross Platform Terminal UI toolkit for .NET nemanjarogic/DesignPatternsLibrary: A comprehensive design patterns library implemented…
-
[ADCES] .NET Conf 2022
Thank you for coming to my presentation at ADCES for .NET Core 7 What’s new . You can find the presentation (and the code ) at https://ignatandrei.github.io/Presentations/WhatsNewNet7prez.html#1 . However,take note that ,after you read the presentation,those are (some of) the links to be consulted / learned : https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotnet-7 https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-11 https://learn.microsoft.com/en-us/aspnet/core/client-side/dotnet-interop?view=aspnetcore-7.0 https://learn.microsoft.com/en-us/aspnet/core/release-notes/aspnetcore-7.0?view=aspnetcore-7.0 https://learn.microsoft.com/en-us/ef/core/what-is-new/ef-core-7.0/whatsnew https://learn.microsoft.com/en-us/dotnet/csharp/whats-new/tutorials/static-virtual-interface-members https://learn.microsoft.com/en-us/dotnet/standard/native-interop/pinvoke-source-generation?source=recommendations
-
Rate Limiter–CORS limited
The problem is that,for the site ( Angular,React,plain HTML ) deployed into wwwroot of .NET Core,I want to have unlimited requests. Also,if I made requests to localhost ( when I try from local),I want also unlimited requests. However,if other site make requests to my AP( CORS enabled ) I,should have limited requests . There is…
I am ok , you are ok