.NET The New Request Short Circuiting of .NET 8 (via Nick Chapsas) Why You Might Not Need Interfaces in C# 12 (via Nick Chapsas) Management 4 Ways to Earn the Respect of a More Powerful Colleague (via HBR) Process DORA…
All posts filed under “Career”
Professional Development – 2023 – Week 26
AI/ML 3 Steps to Prepare Your Culture for AI (via HBR) 13 Principles for Using AI Responsibly (via HBR) C# The New “Interceptors” Feature of C# 12 Is WILD! (via Nick Chapsas) Continuous learning How Managers Can Make Time for…
Professional Development – 2023 – Week 25
.NET The Auth Setting that Everyone Must Change in .NET (via Nick Chapsas) The 3 Biggest Mistakes of Object Mapping in .NET (via Nick Chapsas) Managing Up 28 Questions to Ask Your Boss in Your One-on-Ones (via HBR) This article…
Professional Development – 2023 – Week 24
.NET The Right Way to Check for Null in C# (via Nick Chapsas) We’ve all been taught that this is how you check for null references: if (x == null). However, you can get into strange (albeit unlikely) behavior if…
Professional Development – 2023 – Week 23
.NET Writing C# in VS Code Is Finally Awesome! (via Nick Chapsas) AI/ML Managing the Risks of Generative AI (via HBR) Culture To Build a Top Performing Team, Ask for 85% Effort (via HBR) Management 7 Ways to Make Employees…
Professional Development – 2023 – Week 22
Development GPT-4 Powered GitHub Copilot for Docs Is So Good! (via Nick Chapsas) Health and Wellness How to Take Better Breaks at Work, According to Research (via HBR) Machine learning The AI Hype Cycle Is Distracting Companies (via HBR) TL;DR…
Professional Development – 2023 – Week 21
.NET What’s the Result Type Everyone Is Using in .NET? (via Nick Chapsas) Management Thriving in Chaos (via SWLW)
Professional Development – 2023 – Week 20
.NET 3 .NET “Best Practices” I Changed My Mind About (via Nick Chapsas) The New Way of Parsing ANY Type in .NET (via Nick Chapsas) AI Who Is Going to Regulate AI? (via HBR) This post shared some current conversations…
Professional Development – 2023 – Week 19
.NET The Biggest Lie about the .NET Logger (via Nick Chapsas) The message argument isn’t the message, but a message template. Instead of making new strings (which need to be garbage-collected) use a formatted string then pass the arguments in…
Professional Development – 2023 – Week 18
.NET The Most Confusing C# 12 Feature Yet (via Nick Chapsas) Before C# 12, you couldn’t alias primitive types such as int, int[], or int?. Now you can. What’s interesting is that you can alias tuples — using Point2d =…