Week 22, 2023
Monday, 29 May 2023 - Sunday, 4 June 2023
F# Weekly #22, 2023 – fsharpConf 2023, June 26
Check it out. You can get examples of any .NET method/API in Microsoft Visual Studio directly from GitHub #visualstudio #github #dotnet
📣 .NET Developer Roadmap 🚀 ➡️ Learn C# and .NET Development efficiently. · The .NET Platform · Development Environment · Basic C# · OOP in C# · Intermediate C# · Arrays & Collections in C# · Advanced C# · Introduction to LINQ · Basic Testing in C#. 🧵👇 #dotnet #developers
Here's how the required modifier can make your app better! If you enjoyed this, you might want to subscribe to my channel: youtube.com/c/Codewrinkles #dotnet #csharp #programming #programmingtips
• How do I create an HttpClient instance? • Should I use Dependency Injection? • What if I want more instances? • ClientFactory? • Singleton? On Monday morning I will write about possible implementations of HttpClient. Join: stefandjokic.tech #Dotnet
Deep dive into .NET performance and native AOT | BRK205H
Let's try out implementing HATEOAS (Hypermedia as the Engine of Application State) in our ASP.NET Core Web APIs! #DEVCommunity #dotNET dev.to/osempu/impleme…
Translate Microsoft 365 License GUIDs to Product Names in PowerShell
How to Send Emails With the SendGrid API in C#
How to Build Dynamic Queries With Expression Trees in C#
Let's check out how this open source framework can help us efficiently create, process, and manage background tasks in an ASP.NET application. #DEVCommunity #dotNET dev.to/chinonsoike/ba…
What’s one VS @code extension you can’t work without? 🤔 #DevCommunity #VSCode #VisualStudio
How the GARBAGE COLLECTOR works in .NET 👇🏻 ... Thanks to Steven Giesel on LinkedIn for the original post -> linkedin.com/posts/steven-g… #dotnet #csharp
Deploy ASP .NET Core on Linux with Nginx by @CodeMazeBlog code-maze.com/deploy-aspnetc… #aspnetcore
Announcing an update for .NET Upgrade Assistant with a new CLI tool!
Here's a very practical example of the Action<T> class. I use it all the time! If you enjoyed this, you might want to subscribe to my #youtube channel: youtube.com/c/Codewrinkles #dotnet #programming #programmingtips
.NET Annotated Monthly | June 2023
Introduced in C# 11. When creating a new object instance, you can employ it to specify that a particular field or property must be initialized. This keyword is especially useful when used alongside nullable reference types as it helps in creating a more robust design. #Dotnet
What's the latest .NET roadmap?
Speech Recognition in .NET MAUI with CommunityToolkit
Debugging Lists in Visual Studio - viewing, sorting, and exporting
Let’s Hangout, Ask Me Anything C# 12, .NET 8 🔴 LIVE
C# | .Net Tip (I love to ask candidates about this) 😁 What is the difference between 𝐅𝐢𝐫𝐬𝐭𝐎𝐫𝐃𝐞𝐟𝐚𝐮𝐥𝐭() and 𝐒𝐢𝐧𝐠𝐥𝐞𝐎𝐫𝐃𝐞𝐟𝐚𝐮𝐥𝐭()? 🧵 #Dotnet
Custom authorization policies are insanely powerful in #aspnetcore If you enjoyed this video, you might want to subscribe to my YouTube channel: youtube.com/c/Codewrinkles #dotnet #csharp #programming #programmingtips
Why F# evangelism isn't working (2015)
There's so many gems in the .NET ecosystem that don't get the love they deserve. Here's a list of (in my opinion of course 🙂) some of the underrated bits in .NET. 🔥 .NET Interactive 🚀 YARP 👀 OData 💪🏾 Reactive Extensions Curious to hear what you think #dotnet #AspNetCore
A new version of #MLdotNET Model Builder is now available. AND, it includes support for object detection using your local CPU or GPU. Read about the updates we made that enables integration of custom machine learning models into your #dotNET apps. 📖 msft.it/6019gbKyf
On .NET Live - Better paranoid than offline: Secure ASP.NET Core apps
How to Use SFTP For Secure File Upload in .NET
How to Convert a String to a Span in C#
Create a Microsoft Power App for your ASP.NET Core Web API
Level Up with Live Templates in JetBrains Rider
Authorization in #aspnetcore doesn't need to be complicated. Here's my simple approach to it: youtu.be/OcCKmodXW-Q #dotnet #programming
Administering Windows Defender with PowerShell
ASP.NET Core authentication using Microsoft Entra External ID for customers (CIAM)
JavaScript Import Maps For ASP.NET Core Developers
Getting .NET Library Projects to Output Dependent Assemblies
The Best Way to Add Health Checks in Any .NET App
How List<T> resizing works in .NET 👇🏻 ... Thanks to Steven Giesel on LinkedIn for the original post -> linkedin.com/posts/steven-g… #dotnet #csharp
Global Error Handling in .NET 🚀 In .NET 5+, the recommended approach to implement global error handling is using middleware. This is absolutely the simplest and most effective way, the implementation of which takes only 5 minutes. Here you can see how it's done 👇🧵 #Dotnet
Unit testing .NET Minimal APIs is actually very easy! If you enjoyed this, you might want to subscribe to this channel: youtube.com/c/Codewrinkles #dotnet #csharp #programming #programmingtips
What is the simplest way to create middleware in .NET? Middleware allows you to introduce additional logic before or after executing an HTTP request. There are three approaches to creating middleware: - With Request Delegates - By Convention - Factory-Based #dotnet