Week 13, 2023
Monday, 27 March 2023 - Sunday, 2 April 2023
💡Stop using Non Cancellable Queries Running complex queries on SQL Server can cause performance issues, such as high CPU usage and memory consumption. To prevent these problems ⏬ #dotnet
WireMock.NET - Introduction
F# Weekly #13, 2023 – Fantomas 6
3 Features Java Got First And C# Later Copied
Async and Await in simple
PowerShellGet 3.0 Preview 20
🛠️ .NET malware decompiling challenges: Obfuscations of strings/constants can be tedious. Automate w/ IDA Pro's Python 🐍 interface for MSIL binary patching, even for simple cases: threatcat.ch/blog/undo-dotn… #CyberSecurity #MalwareAnalysis #IDAPro #DotNET
Advanced .NET MAUI Topics – Part 1
In #dotnet, two types represent date & time: DateTime and DateTimeOffset. Microsoft recommends the latest one to use, although I often see it as highly overlooked. Let's recall the memory, take a look at the code below. What's going to be the output?
#EFCore News and Progress: aka.ms/ef-news 🦄 Major overall of relationships docs! 🦄 ▶️ 12 one-to-many examples ▶️ 13 one-to-one examples ▶️ 16 many-to-many examples ▶️ FKs and AKs ▶️ Navigation configuration ▶️ Conventions ▶️ Data annotations #Dotnet #EntityFramework
.NET Rocks!
Vendor-Agnostic Telemetry Using OpenTelemetry Collector in .NET
ReSharper 2023.1 Goes Beta
ReSharper IL Viewer and Low-Level C#
The Problem with Time That .NET 8 Finally Fixed
Improving multi-platform container support - .NET Blog
Here's how to add #Azure Key Vault as a configruation source in your #aspnetcore app. If you enjoyed this video, make sure to subscribe to my #youtube channel: youtube.com/c/Codewrinkles #programming #programmingtips #dotnet #azure
On .NET Live - Driving API Quality with Postman + .NET
How to Create a Custom Authorize Attribute in ASP.NET Core
Understanding the .NET ecosystem: The introduction of .NET Standard
DotNetIsolator is an experimental package for running #dotNET code in an isolated sandbox using WebAssembly. On today's #ASPNET Community Standup, @stevensanderson and @jongalloway introduce us to it. Join LIVE at 10AM PT. msft.it/60175hkLb
Did you know that @VisualStudio allows you to create multiple files in one shot? Thanks @cjdutoit for the tip! #visualstudio #dotnet #csharp
I'm extremely proud to announce the release of my latest @pluralsight course: Object-oriented Programming in C# 10. It follows on the C# 10 Fundamentals and is the perfect introduction to OOP which you'll need in all your C# applications. pluralsight.com/library/course… #dotnet #csharp
Understanding the .NET ecosystem: The introduction of .NET Standard
Primary Constructors with C#
How to get the client IP in ASP.NET Core even behind a proxy
How to send push notifications to a browser in ASP .NET Core by @KStrubeG kristoffer-strube.dk/post/how-to-se… #aspnetcore
.NET MAUI App Stopped Working -- HELP!
How to Set up and Use ChatGPT in Windows Terminal using PowerShellAI
Custom Event Arguments in Blazor WebAssembly
#ASPNET web form tip when bypassing certain WAF rules using #COOKIELESS: ✔️WAF blocks `/admin/main.aspx` ✔️WAF uses canonicalization & not case sensitive Possible bypasses: 🍪/admin/(S(X))/main.aspx 🍪/admin/Foobar/(S(X))/../(S(X))/main.aspx 🍪/(S(X))/admin/(S(X))/main.aspx
Built in REST CLIENT (.http/.rest) file in Visual Studio 2022 | Best way to test the API by @nitish_kaushik youtube.com/watch?v=t75Uz5… #aspnetcore
HACKING C#: DEVELOPMENT FOR THE TRULY LAZY
Generating Fake Data in C# with Bogus
The Best .NET Mapper to Use in 2023
How to create a NuGet metapackage
Let's talk about primary keys. Often you see teams using either identity columns or GUIDs. The first gives an order, and the second is purely random and can be created by the client. But there's something that combines the beauty of both - ULID 👇 What IDs do you use? #dotnet