.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • Terraform: Easier Azure Region Pairing and Governance with the Build5Nines Region Map Module

    calendar May 11, 2026 · build5nines.com
    Terraform: Easier Azure Region Pairing and Governance with the Build5Nines Region Map Module

    Managing Azure regions in Terraform sounds simple at first. You define a location variable, pass in something like eastus, and move on. That works fine for a small deployment. But once you start building real enterprise-scale Azure environments, region management gets messy fast. You need consistent region …


    Read More
  • Propagating OpenTelemetry context in .NET

    calendar May 11, 2026 · meziantou.net
    Propagating OpenTelemetry context in .NET

    When building distributed systems, maintaining observability across process boundaries is crucial for understanding the flow of requests through your application. OpenTelemetry provides a standard way to propagate tracing context, but implementing it correctly requires understanding several key concepts. This post …


    Read More
  • How enterprises are scaling AI

    calendar May 11, 2026 · openai.com/blog
    How enterprises are scaling AI

    How enterprises scale AI: from early experiments to compounding impact through trust, governance, workflow design, and quality at scale. Link to article: https://openai.com/business/guides-and-resources/how-enterprises-are-scaling-ai


    Read More
  • OpenAI Campus Network: Student club interest form

    calendar May 11, 2026 · openai.com/blog
    OpenAI Campus Network: Student club interest form

    Join the OpenAI Campus Network—connect student clubs worldwide, access AI tools, host events, and build an AI-powered campus community. Link to article: https://openai.com/index/openai-campus-network-student-club-interest-form


    Read More
  • The GoLand 2026.2 Early Access Program Has Started

    calendar May 11, 2026 · blog.jetbrains.com
    The GoLand 2026.2 Early Access Program Has Started

    The Early Access Program (EAP) for GoLand 2026.2 is now open. It’s a great opportunity to try upcoming features for free and help shape the product. EAP builds give you early access to what we’re working on, so you can test new functionality in your real workflows and share feedback with the GoLand team. Your […] Link …


    Read More
  • Our 2026 Direction: AI and Classic Workflows in JetBrains IDEs

    calendar May 11, 2026 · blog.jetbrains.com
    Our 2026 Direction: AI and Classic Workflows in JetBrains IDEs

    Two valid ways of writing code. One place to own it. Quick version for AI-news-tired readers: press here There are two ways developers create code now: We don’t think one is better than the other. Our goal is to ensure both workflows can coexist inside JetBrains IDEs without hindering each other. In practice, this …


    Read More
  • Code Maintainability: What is it and Why It’s Important

    calendar May 11, 2026 · blog.jetbrains.com
    Code Maintainability: What is it and Why It’s Important

    Writing code that’s clean, readable, and easy to modify without causing unintended side effects is vital to ensuring a seamless development process. Good code encourages a smoother long-term software lifecycle that enables different developers to work with it, applying fixes, updates, and enhancements over time, making …


    Read More
  • Using configurable token lifetimes in Microsoft Entra ID, .NET and Microsoft Graph

    calendar May 11, 2026 · damienbod.com
    Using configurable token lifetimes in Microsoft Entra ID, .NET and Microsoft Graph

    Configurable token lifetimes in the Microsoft identity platform went GA and I thought I would look at implementing this using a .NET console application using Microsoft Graph . This article looks at implementing this with an delegated user credential as well as an application client credential. Code: …


    Read More
  • OpenAI launches DeployCo to help businesses build around intelligence

    calendar May 11, 2026 · openai.com/blog
    OpenAI launches DeployCo to help businesses build around intelligence

    OpenAI launches DeployCo, a new enterprise deployment company built to help organizations bring frontier AI into production and turn it into measurable business impact. Link to article: https://openai.com/index/openai-launches-the-deployment-company


    Read More
  • LINQ Ordering in C#: OrderBy, ThenBy, Order, and Custom Comparers

    calendar May 10, 2026 · devleader.ca
    LINQ Ordering in C#: OrderBy, ThenBy, Order, and Custom Comparers

    Master LINQ ordering in C# with OrderBy, ThenBy, and the .NET 7 Order() method. Covers custom IComparer, stable sort, StringComparer, and real-world examples. Link to article: https://www.devleader.ca/2026/05/10/linq-ordering-in-c-orderby-thenby-order-and-custom-comparers


    Read More
  • 6 Multi-Agent Orchestration Design Patterns Every Developer Should Know

    calendar May 10, 2026 · build5nines.com
    6 Multi-Agent Orchestration Design Patterns Every Developer Should Know

    When teams start building multi-agent AI systems, the first instinct is to wire agents together with ad-hoc scripts. Call Agent A. Then call Agent B. Add some if statements for error handling. Ship it. That works for a demo. It does not work for anything you need to trust. The problem is not the agents […] The article …


    Read More
  • How to Implement Flyweight Pattern in C#: Step-by-Step Guide

    calendar May 10, 2026 · devleader.ca
    How to Implement Flyweight Pattern in C#: Step-by-Step Guide

    Step-by-step guide to implement flyweight pattern in C# with practical code examples covering shared state, flyweight factories, and memory optimization. Link to article: https://www.devleader.ca/2026/05/10/how-to-implement-flyweight-pattern-in-c-stepbystep-guide


    Read More
  • Collection Performance: AddRange() vs. InsertRange() When Populating Lists

    calendar May 10, 2026 · dotnettips.wordpress.com
    Collection Performance: AddRange() vs. InsertRange() When Populating Lists

    When populating collections in .NET, choosing the right bulk operation improves both clarity and efficiency. Methods like AddRange() and InsertRange() allow multiple items to be added in a single call, reducing overhead compared to repeated individual inserts and clearly expressing intent. When combined with proper …


    Read More
  • The Software Dark Factory and the Future of Software Development

    calendar May 10, 2026 · build5nines.com
    The Software Dark Factory and the Future of Software Development

    The term “dark factory” comes from manufacturing. It refers to a factory that is so automated it can run with the lights off. No people walking the floor. No operators watching machines. No manual handoffs between stations. The machines do the work, the systems coordinate the flow, and humans step in only when …


    Read More
  • LINQ Projection in C#: Select, SelectMany, and Flattening Collections

    calendar May 9, 2026 · devleader.ca
    LINQ Projection in C#: Select, SelectMany, and Flattening Collections

    Learn LINQ projection in C# with Select, SelectMany, and the .NET 9 Index() method. Covers anonymous types, records, flattening nested collections, and real examples. Link to article: https://www.devleader.ca/2026/05/09/linq-projection-in-c-select-selectmany-and-flattening-collections


    Read More
  • Bridge vs Adapter Pattern in C#: Key Differences Explained

    calendar May 9, 2026 · devleader.ca
    Bridge vs Adapter Pattern in C#: Key Differences Explained

    Compare bridge vs adapter pattern in C# with side-by-side code examples, key structural differences, and guidance on when to use each. Link to article: https://www.devleader.ca/2026/05/09/bridge-vs-adapter-pattern-in-c-key-differences-explained


    Read More
  • API Versioning Should Be Your Last Resort

    calendar May 9, 2026 · milanjovanovic.tech
    API Versioning Should Be Your Last Resort

    Most teams reach for v2 too early because they don't have a contract evolution strategy. Here's the API change management approach I prefer: evolve contracts safely, deprecate deliberately, and version only when the old and new worlds can't coexist. Link to article: …


    Read More
  • Generate Embeddings Function and External Model Object Support Are Now Generally Available in Azure SQL

    calendar May 8, 2026 · devblogs.microsoft.com
    Generate Embeddings Function and External Model Object Support Are Now Generally Available in Azure SQL

    We are excited to announce the General Availability (GA) of AI_GENERATE_EMBEDDINGS and CREATE Link to article: https://devblogs.microsoft.com/azure-sql/generate-embeddings-function-and-external-model-object-support-are-now-generally-available-in-azure-sql


    Read More
  • LINQ Filtering in C#: Where, Any, All, Contains, and OfType

    calendar May 8, 2026 · devleader.ca
    LINQ Filtering in C#: Where, Any, All, Contains, and OfType

    Learn LINQ filtering in C# with Where, Any, All, Contains, and OfType. Covers compound predicates, null handling, and performance tips with .NET 6-9 examples. Link to article: https://www.devleader.ca/2026/05/08/linq-filtering-in-c-where-any-all-contains-and-oftype


    Read More
  • Announcing the public preview of the Microsoft 365 Copilot Agent Evaluations tool

    calendar May 8, 2026 · devblogs.microsoft.com
    Announcing the public preview of the Microsoft 365 Copilot Agent Evaluations tool

    Today we're announcing the public preview of the Microsoft 365 Copilot Agent Evaluations tool. The Agent Evaluations CLI tool helps developer Link to article: https://devblogs.microsoft.com/microsoft365dev/announcing-the-public-preview-of-the-microsoft-365-copilot-agent-evaluations-tool


    Read More
    • ««
    • «
    • 1
    • 2
    • 3
    • 4
    • 5
    • »
    • »»

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top