Advertisement · 728 × 90
#
Hashtag

#Mvpbuzz

Advertisement · 728 × 90
Preview
Planner Agent brings work management directly into Microsoft 365 Copilot | Microsoft Community Hub Learn how Planner Agent brings work across Microsoft 365 into one place, so you can see what matters and take action.

Planner Agent brings work management directly into Microsoft 365 Copilot techcommunity.microsoft.com/blog/planner... #Microsoft365 #Microsoft365Copilot #MVPBuzz

0 0 0 0
Preview
AI Skills Are Now in Public Preview: Teaching AI in SharePoint What to Know and How to Act | Microsoft Community Hub In March, we shared our vision for AI in SharePoint: We’re transforming how teams build solutions, publish content, and organize information using AI. With...

AI Skills Are Now in Public Preview: Teaching AI in SharePoint What to Know and How to Act techcommunity.microsoft.com/blog/spblog/... #SharePoint #Microsoft365 #Microsoft365Copilot #MVPBuzz

0 0 0 0
Preview
Introducing Markdown support in SharePoint and OneDrive | Microsoft Community Hub Today, we’re introducing native Markdown support in SharePoint and OneDrive, now rolling out to general availability across both consumer and commercial...

Introducing Markdown support in SharePoint and OneDrive techcommunity.microsoft.com/blog/onedriv... #Microsoft365 #Microsoft365Copilot #SharePoint #MVPBuzz

0 0 0 0
Preview
Innovations in OneDrive for collaboration, intelligence, and control | Microsoft Community Hub Last year, we made a promise: your files should work for you, not the other way around. That meant reimagining OneDrive not just as a place to store files,...

Innovations in OneDrive for collaboration, intelligence, and control techcommunity.microsoft.com/blog/onedriv... #Microsoft365 #OneDrive #SharePoint #Microsoft365Copilot #MVPBuzz

0 0 0 0
Preview
Making Boot/Recovery Media CA-2023 Compliant - Ed Tittel Making Boot/Recovery Media CA-2023 Compliant means replacing the CA-2011 bootloader with its CA-2023 equivalent. Deets provided.

Yesterday I determined NONE of my bootable UFDs was CA-2023 compliant. Today I fixed them: deets follow... #WindowsInsiders #MVPbuzz www.edtittel.com/blog/making-...

0 0 0 0
Post image Post image

Off to go to #sqlbits
And finally I have free minutes to fix few issues in #FabricTools 🛠️
#mvpbuzz

2 0 0 0
Preview
Azure Arc for Windows: Hybrid and Multi‑Cloud Management Made Simple - Ciraltos Manage any Windows Server or Client with Azure Arc: on‑premeses, multi‑cloud, and beyond.

One portal. Any Windows machine. Anywhere. 🚀 Learn how Azure Arc lets Microsoft Azure manage Windows servers, clients, and more, even outside Azure. Watch the video now!
👉 buff.ly/0wXe1Q8
#AzureArc #Azure #Windows #HybridCloud #MultiCloud @azureweekly.endj.in #MVPBuzz

0 0 0 0
Preview
General Performance: Optimizing Enum Value Name Retrieval The article delves into the optimization of Enum value name retrieval in .NET, comparing three approaches. It demonstrates that one of these methods is 13.3 times more efficient, with no memory all…

Not all Enum name retrieval methods riff at the same speed.
If you’re still using the usual approach without thinking about the cost, this one’s for you.
Turn it up here!
#dotnet #MVPBuzz #Enums #CodePerformance
dotnettips.com/2024/05/01/g...

0 0 0 0
Preview
General Performance: Optimizing Random Number Generation The .NET Random type generates random numbers effectively, but using RandomNumberGenerator is significantly more efficient, offering a 7.08× speed increase. Both methods allocate equal memory; howe…

Random number generation should hit like a power chord, not drag like a weak soundcheck.
This .NET performance tip shows a faster way to get the job done.
#dotnet #MVPBuzz #CodePerformance
dotnettips.com/2024/03/27/g...

0 0 0 0
Preview
Collection Performance: High-Performance Collection Randomization in .NET The article examines shuffling options in .NET 8, highlighting the performance of three APIs: LINQ.Shuffle(), Random.Shuffle(), and RandomNumberGenerator.Shuffle().

Shuffling collections isn’t a toy problem. 🪀
In .NET 8, the wrong shuffle can quietly dominate your runtime.
I ran the benchmarks and analyzed the results.
#dotnet10 #MVPBuzz #Collections #CodePerformance
dotnettips.wordpress.com/2026/01/18/c...

0 0 0 0
Preview
Mastering the Art of Public Speaking: Lessons from a Lifetime of Teaching and Sharing For decades, the author has focused on improving code quality through teaching and speaking, emphasizing the joy of mentoring developers. Despite the shift to virtual formats, they believe in-perso…

🎤 Mastering the Art of Public Speaking isn’t about perfection—it’s about impact. Even one inspired person makes the effort worth it.
Read my lessons from decades of teaching & speaking. 📣
#PublicSpeaking #RockYourCode #MVPBuzz #Speaking #Teaching
dotnettips.wordpress.com/2025/10/19/m...

0 0 0 0

#TechTrends #AIGeneration #MVPBuzz #Security #MicrosoftTechCommunity
👉👉 tip.tbone.se/NBj2Pl
[AI generated, Human reviewed]

0 0 0 0
Post image

Excited to share that my Python package azureaicommunity-agent-file-search has reached 1K+ downloads in just 3 days.
Built to simplify file search integration for AI-powered applications.
Grateful for the support and excited to keep improving it.
#python #agent #mvpbuzz #ai #openai #ai #azure

1 0 1 0

#CloudComputing #AIInnovation #MVPBuzz #Security #MicrosoftTechCommunity
👉👉 tip.tbone.se/bPjwML
[AI generated, Human reviewed]

0 0 0 0

#CloudComputing #Azure
#MVPBuzz #Security #MicrosoftTechCommunity
👉👉 tip.tbone.se/HVUacD
[AI generated, Human reviewed]

0 0 0 0
Preview
Reise von ChatGPT über DeepSeek zu Mistral Nein, ich rede nicht über OneDrive auch nicht über Synchronisation auch nicht über Kollaboration und nichts über Loop und erst recht nichts über Copilot+PC Ich rede von von Gesundheit³ von Datensch…

Die Reise von #ChatGPT über #DeepSeek zu #MistralAI
Warum, Weshalb, Wo und Wie könnt hier nachlesen bit.ly/4mKR8NW

#CommunityRocks #Microsoft #ePA4Y #ePA #MVPBuzz #IntellityNet

1 0 0 0
Video

👀 Manage servers on-prem, Azure, and other clouds from ONE place! Azure Arc extends Azure management anywhere. See it in action!
📺 Full Video: youtu.be/ttb2a0_8p7o
#AzureArc #Microsoft #Azure #Windows #HybridCloud #MultiCloud #ITPro #MVPBuzz

0 0 0 0
Preview
General Performance: Null Coalescing Assignment C# 8 introduced the null-coalescing assignment operator (??=), allowing for clearer and more concise code. For instance, using “list ??= []” creates a new List() if list is null. Benchm…

Still doing old-school null checks in C#? Time to retire that tired riff. Null-coalescing assignment helps modernize your code and clean up the noise. I cover it in this latest General Performance tip.
#dotnet #MVPBuzz #Performance
dotnettips.com/2024/02/06/g...

0 0 0 0
Preview
String Performance: Why Some String Searches Are Slower Than You Think String searching is fundamental to modern applications, yet its performance impact is often overlooked. This article explores how common string search patterns can quietly slow down your code—and h…

😈🤘 String searches look innocent… until they bite.
In this Rock Your Code Performance excerpt, I expose why some .NET string searches are way slower than you think—and how tiny mistakes turn into massive performance pain.
🔥 Benchmarks included
#MVPBuzz
dotnettips.wordpress.com/2026/04/19/s...

0 0 0 0
Preview
The Fastest Way to Get a String’s Length in Microsoft .NET This article analyzes the performance of different methods for retrieving the character count of a string in .NET.

🎸 Think all methods of getting a string’s length in .NET are equal? Think again.
I benchmarked Span<T>, Length & LINQ Count() to see which one truly shreds on performance.
Read the breakdown here 👇
#dotnet10 #MVPBuzz
dotnettips.wordpress.com/2025/04/20/t...

0 0 0 0
Preview
Microsoft .NET Code Analysis: Ensuring Proper Resource Management – Implementing IDisposable for Disposable Objects One persistent issue I have noticed throughout my experience working on projects for the past 12 years is the improper handling of disposable objects and the lack of implementation of IDisposable f…

📢 Check out "Microsoft .NET Code Analysis: Types That Own Disposable Fields Should Be Disposable."💡 Learn about the importance of properly handling disposable objects and implementing IDisposable. Don't miss this insightful read! 👇 dotnettips.wordpress.com/2023/07/19/m...
#dotnet #MVPBuzz

0 0 0 0
Preview
Rock Your Regex: High-Performance Patterns for .NET Developers Regular expressions (regex) are essential for text manipulation in programming but can be complex. This article explains their fundamentals, applications, and best practices for optimization, parti…

Boost your .NET regex performance! 🚀 Learn how to optimize regular expressions with caching, source generators, and benchmarking. Get expert tips and best practices in my latest article. Read now: dotnettips.wordpress.com/2023/04/14/p...
#dotnet #CSharp #regex #performance #MVPBuzz

0 0 0 0
This time, the update check found the new version, downloaded same, and offering installation. Here goes!

This time, the update check found the new version, downloaded same, and offering installation. Here goes!

Logi Options finally gets the update in-app that appeared in the company's release notes a week ago. Go figure! #WindowsInsiders #MVPbuzz

0 0 0 0
Preview
Checking Boot/Recovery Media CA-2023 Status - Ed Tittel After Checking Boot/Recovery Media CA-2023 Status, I realize that MS has yet to release compliant boot/install media. Sheesh!

Imagine my surprise when I determine that MS hasn't yet released CA-2023 compliant EFI boot files. Yours, too? #WindowsInsiders #MVPbuzz www.edtittel.com/blog/checkin...

0 0 0 0
Post image

Hong Kong is the #2 place hitting dotNetTips.com today! Amazing.

I visited Hong Kong during New Year’s when I was in the Navy, and I’d love to come back and speak at a conference there. Who’s going to make that happen?
#dotnet #MVPBuzz #HongKong

0 0 0 0
Post image

dotNetTips.com: One Cup. One Site. Endless Fixes.
#dotnet #RockYourCode #MVPBuzz

0 0 0 0
Post image

🚨 Attention .NET Teams! 🚨
Want a veteran engineer who’s been rocking .NET since day one to review your codebase? I’ve written the books on clean, high-performance .NET code—and I know how to spot trouble fast.
Let’s talk. I can help.
📩 Contact me with your needs!
#RockYourCode #MVPBuzz

0 0 0 0
Image

Image

🥩🥩Mr T-Bone tip!🥩🥩[New from Tech Community]
Big updates for RC4 in January 2026 Windows patch! Find out what’s new and why it matters to your security toolbox. Dive in!

#Cybersecurity #WindowsUpdate #MVPBuzz #Security #MicrosoftTechCommunity

0 0 1 0
Post image Post image Post image Post image

I had a great time hosting our live #GlobalAzure 2026 @ #NorthTorontoUG.

Thank you to everyone who attended our event.

#MVPBuzz #Azure #AI #MicrosoftFoundry #OpenClaw #AzureFunctions #Bicep #IaC #GitHub @globalazure.bsky.social @northtorontoug.bsky.social

2 2 0 0
Post image Post image Post image Post image

What an amazing #GitHubCopilot Dev Day in Cape Town! 🚀 Huge thanks to everyone who braved the cold, our sponsors, speakers, organizers, and the incredible community for making it special. Here’s to an Agentic future together! 😍💪 #DevCommunity #TechEvents #AI #mvpbuzz #cptmsdug

2 0 0 0