Week 31, 2024
Monday, 29 July 2024 - Sunday, 4 August 2024
Why is this C# code so slow?
Locksmith 2024.8 is out! The newest release of this little ADCS security tool for operations / defenders includes bug fixes, improved detections, and remediations. Thanks to everyone who contributed issues and code! 🔐 github.com/TrimarcJake/Lo… #PowerShell #PKI #ActiveDirectory ⭐️
F# Weekly #31, 2024 – Enhancing #help in F# Interactive
ASP .NET Core Web API CRUD Operations using Entity Framework Core and SQL Server by @nitish_kaushik youtube.com/watch?v=YjQwGK… #aspnetcore
In the next preview of @VisualStudio we will add support for Request Variables in HTTP files. You can send a request, and then use a value from the response (or request) in a future request. For ex, you can login and then pass the token on future requests. See ex in image.
#dotnet life 🤣
The Singleton pattern in modern C# is not your dad's one!
The Worst .NET Bug I've Ever Fixed
Use #PowerShell Format-Hex (fhx) to examine a file that you're not sure what it is like an unconfirmed*.crdownlod file . Here we can see it is a (PK)zip file. I wrote a script that can identify many different file types from their contents github.com/guyrleech/Gene…
Be Careful with Primary Constructors in C#
SignalR distributed tracing is coming in .NET 9. Before: A mess of operations under one long running connection 🥀 After: Organized hub invocations, traced from the client to the server 🔥 #dotnet #dotnetaspire #signalr
Enhancing #help in F# Interactive
What is the best way to make a Desktop App with .NET in 2024?
ASP .NET Core Best Practices 💡 Nice article providing guidelines from Microsoft for maximizing performance and reliability of ASP .NET Core apps. Which of these techniques are you using in your apps right now? Link in 2nd tweet below. #dotnet
Creating source-only NuGet packages
5 Reasons F# is a great Python alternative for scripting, side projects, and enterprise applications
.NET 9 Preview 6 is now available and has major enhancements across the .NET Runtime, SDK, libraries, C#, and frameworks including #ASPNET Core, Blazor, and #dotNETMAUI. See what else is in it. 📖 msft.it/6019lp4FJ
.NET MAUI Community Toolkit Monthly Standup, August 2024
.NET 6: Don’t Panic Yet - But .NET 6 End of Support Is On The Horizon
#PowerShell 1 liner for pinging something & reporting back - like ping -t but with date/time so you can look back to see dropouts . { while(1){ tnc -Computer 192.168.0.44 | select @{n='Date';e={[datetime]::now}},computername,RemoteAddress,PingSucceeded,@{n='RTT…