Week 11, 2023
Monday, 13 March 2023 - Sunday, 19 March 2023
🌟 C# Tip You've got a large collection of data that has to be processed. Thankfully you can to do it in parallel, with the batching in place. What's the easiest way to divide your data into equal-size pieces? LINQ Chunk method is the solution 👇 #dotnet
"Middleware in ASP .NET Core" dotnetcurry.com/aspnet-core/mi… #dotnetcore #aspnetcore
Loading RSA Keys in .NET
Show HN: Easy-to-use licensing library for .NET apps
F# Weekly #11, 2023 – Fable 4, .NET 8 Preview 2, GPT-4
ASP.NET Core7: Use endpoint groups to manage minimal APIs versioning
New release of Entity Framework Core Power Tools - my free Visual Studio extension. You can now: Visualize your database schema! (using all supported providers) github.com/ErikEJ/EFCoreP… #efcore #dotnet
8 years and counting! Exactly 8 years ago, I pushed first commit on the project that would become @IonideProject I'd have never imagined something started due to a random Twitter conversation with @tomaspetricek would become one of the most important parts of #fsharp ecosystem
Webinar – Object-Oriented vs. Functional Programming With C# and F#
.NET MAUI For C# Developers
Together with @NObuljen visited #Ukrainian Humanitarian Lyceum,a member of #UNESCO Associated Schools Network. Discussed cooperation within #ASPnet &🇺🇦-ðŸ‡ðŸ‡· initiative to celebrate 70th anniversary of @ASPnetUNESCO by organizing joint contest for school children from our countries.
Xamarin Android and Shadows for Irregular Transparent Images
Stable Diffusion is an AI model that can generate images based on a text prompt. And now, you can generate images with AI using Stable Diffusion and your preferred #dotNET technologies like C# and Visual Studio. Unleash your creativity and get started. msft.it/60115tm1N
Improving the Spell Checker - Visual Studio Blog
Help us investigate a new Welcome Experience in Visual Studio 17.6 Preview 2
How Async/Await Really Works in C# - .NET Blog
How Async/Await Really Works in C#
Announcing Polyglot Notebooks! Multi-language notebooks in Visual Studio Code
DotRunpeX - demystifying new virtualized .NET injector used in the wild - Check Point Research
Azure Pipeline: Publish Unit Test And Code Coverage Results With .NET 7 Solution Using VSTest, Cobertura, And Coverlet | Build5Nines
📣 .NET 8 Preview 2 is now available 📣 and has an exciting array of theme updates, new features, and improvements. To learn more about his release, see for yourself what’s next in .NET! msft.it/60185LmFy #dotNET
Visual Studio 2022 v17.6 Preview 2 is now available
Hack Together: Microsoft Graph and .NET week #2 recap and final week overview
Static Interface Members, Generic Attributes, Auto-Default Structs – Using C# 11 in Rider and ReSharper
ASP.NET Core updates in .NET 8 Preview 2
Working with Git in JetBrains Rider
Announcing .NET 8 Preview 2
.NET March 2023 Updates – .NET 7.0.4, .NET 6.0.15
Monsters Weekly 264 - Debugging a .NET process at start-up with Visual Studio
Solving .NET JSON Deserialization Issues
I released a new NuGet library that enables using Razor to produce templated responses from #aspnetcore Minimal APIs, middleware, etc. w/ a focus on performance & PAYG feature implementation. NuGet: nuget.org/packages/Razor… GitHub: github.com/DamianEdwards/…
On .NET Live - Scheduling & Queuing Background Jobs In .NET With Coravel
PSReadLine 2.3.0-beta0 Release - PowerShell Team
Output Caching in ASP.NET Core
The Easiest Way to Create Serverless APIs in .NET
C# Resume and Portfolio Review
🌟C# Tip How often do you have to traverse two collections at a time? Often it's a for-loop with by-index retrieval from both collections. Not so cool. But there's an elegant solution in LINQ - Zip method. Check that out 👇 #dotnet