.NET The First Feature of C# 13 is Here! (via Nick Chapsas) The params keyword has been around for a while, and gives you syntactic sugar to do this: Example(1, 2, 3) where the method signature is void Example(params int[]…
All posts filed under “Career”
Professional Development – 2023 – Week 52
.NET Measuring Your Application’s Performance in .NET (via Nick Chapsas) .NET Aspire gives you premade dashboards to look at logs, traces, the API itself, and metrics. You get several standard things from the metrics such as number of requests, time…
Professional Development – 2023 – Week 51
.NET Don’t Use the Wrong LINQ Methods (via Nick Chapsas) .All() and .TrueForAll() perform differently even though they yield the same behavior. The .All() method is slower and allocates memory because it uses a foreach loop, which requires using an…
Professional Development – 2023 – Week 50
.NET NativeAOT in .NET Has One Big Problem (via Nick Chapsas) Nick set up a GET API scenario where the code base is the same, and the only difference is whether ahead-of-time (AOT) compilation was used. The AOT application started…
Professional Development – 2023 – Week 49
.NET 6 INSANE Things You Didn’t Know You Could Write in C# (via Nick Chapsas) Note that these concepts are possible but aren’t best practices. Why Aren’t More Developers Using C#? (via Nick Chapsas) Leadership How Leaders Fake Psychological Safety…
Professional Development – 2023 – Week 48
.NET Microsoft Is SECRETLY Changing Your Code in .NET 8 (via Nick Chapsas) How Are .NET APIs So Much Faster than Everything Else? (via Nick Chapsas) Most of this video describes Martin Fowler’s (from Microsoft) response to a post in…
Professional Development – 2023 – Week 47
.NET What Is .NET Aspire? The Insane Future of .NET! (via Nick Chapsas) How to Deploy .NET 8’s New .NET Aspire Stack (via Nick Chapsas) Aspire is agnostic of deployment; it creates a manifest.json that describes what’s happening in your…
Professional Development – 2023 – Week 46
.NET Measuring Code Performance The Right Way | Code Cop #008 (via Nick Chapsas) Should You Use The Async Suffix in C#? (via Nick Chapsas) AI/ML Improve Your Company’s Use of AI with a Structured Approach to Prompts (via HBR)…
Professional Development – 2023 – Week 45
.NET The Missing Piece of Your .NET Logs (via Nick Chapsas) The Coolest Way to Await Multiple Tasks in .NET (via Nick Chapsas) Every New Feature Added in C# 12 (via Nick Chapsas) Game Theory The deadly trap that could…
Professional Development – 2023 – Week 44
.NET The Easiest Way to Create PDFs in .NET (via Nick Chapsas) “Your Code Has a SQL Injection!” | Code Cop #007 (via Nick Chapsas) AI AI is dangerous, but not for the reasons you think (via TED) Many critics…