comment 0

Professional Development – 2024 – Week 14

Image Credit: https://www.flickr.com/photos/54585499@N04/

.NET

“Stop Wasting Memory on Strings in C#!” | Code Cop #016 (via Nick Chapsas)

String interning in .NET is where there is a special section of memory where you can put strings; if a string in the app has the exact same value, you can point to the pre-allocated strings. String literals are already interned. It’s very unlikely you’ll need to intern a string (e.g., string.Intern(“Hello world”)). Remember that interning a string comes with a cost. (Toward the end, Nick revealed that the original post was an April Fool’s joke; however, it looked like any other C# post that has lousy advice.)

Technology

How AI Features Can Change Team Dynamics (via HBR)

I’m making an assumption that the input to the virtual meeting tools (Zoom, Teams) is the auto-generated transcript. Having read some of those transcripts (at least from Teams), there are some limitations that would likely lead to a “garbage-in, garbage out” scenario. I do, however, like the approach the article takes to get quantitative data on who’s speaking, what gets said, and where speaking is happening.

Leave a Reply

Your email address will not be published. Required fields are marked *


This site uses Akismet to reduce spam. Learn how your comment data is processed.