.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • Natural Keys in the Critter Stack

    calendar Mar 16, 2026 · jeremydmiller.com
    Natural Keys in the Critter Stack

    Just to level set everyone, there are two general categories of identifiers we use in software: That very last sentence is where this post takes off. You see Marten can happily track event streams with either Guid identifiers (surrogate key) or string identifiers — or strong typed identifiers that wrap an inner Guid or …


    Read More
  • C# Source Generators: A Complete Guide to Compile-Time Code Generation

    calendar Mar 16, 2026 · devleader.ca
    C# Source Generators: A Complete Guide to Compile-Time Code Generation

    Master C# source generators with this complete guide. Learn how compile-time code generation works in .NET 10, why it beats reflection, and how to get started. Link to article: https://www.devleader.ca/2026/03/16/c-source-generators-a-complete-guide-to-compiletime-code-generation


    Read More
  • Chunking Strategies for RAG with Semantic Kernel in C#: Fixed-Size, Sentence, and Semantic Chunking

    calendar Mar 16, 2026 · devleader.ca
    Chunking Strategies for RAG with Semantic Kernel in C#: Fixed-Size, Sentence, and Semantic Chunking

    Learn chunking strategies for RAG with Semantic Kernel in C#. Compare fixed-size, sentence-boundary, paragraph, and semantic chunking approaches with complete .NET code examples to improve retrieval accuracy in your RAG pipelines. Link to article: …


    Read More
  • AWS and NVIDIA deepen strategic collaboration to accelerate AI from pilot to production

    calendar Mar 16, 2026 · aws.amazon.com/blogs/machine-learning
    AWS and NVIDIA deepen strategic collaboration to accelerate AI from pilot to production

    Today at NVIDIA GTC 2026, AWS and NVIDIA announced an expanded collaboration with new technology integrations to support growing AI compute demand and help you build and run AI solutions that are production-ready. Link to article: …


    Read More
  • Foundry Agent Service is GA: private networking, Voice Live, and enterprise-grade evaluations

    calendar Mar 16, 2026 · devblogs.microsoft.com
    Foundry Agent Service is GA: private networking, Voice Live, and enterprise-grade evaluations

    The hardest part of shipping production AI agents isn't the prototype — it's everything after. Network isolation requirements. Compliance audits. Voice channels your operations team actually wants to use. Evaluations that aren't just a pre-ship checkbox. Today's GA release of the next Link to article: …


    Read More
  • Agentic AI in the Enterprise Part 2: Guidance by Persona

    calendar Mar 16, 2026 · aws.amazon.com/blogs/machine-learning
    Agentic AI in the Enterprise Part 2: Guidance by Persona

    This is Part II of a two-part series from the AWS Generative AI Innovation Center. In Part II, we speak directly to the leaders who must turn that shared foundation into action. Each role carries a distinct set of responsibilities, risks, and leverage points. Whether you own a P&L, run enterprise architecture, lead …


    Read More
  • Awesome GitHub Copilot just got a website, and a learning hub, and plugins!

    calendar Mar 16, 2026 · devblogs.microsoft.com
    Awesome GitHub Copilot just got a website, and a learning hub, and plugins!

    Back in July, we launched the Awesome GitHub Copilot Customizations repo with a simple goal: give the community a place to share custom instructions, prompts, and chat modes to customize the AI Link to article: https://devblogs.microsoft.com/blog/awesome-github-copilot-just-got-a-website-and-a-learning-hub-and-plugins


    Read More
  • Introducing Disaggregated Inference on AWS powered by llm-d

    calendar Mar 16, 2026 · aws.amazon.com/blogs/machine-learning
    Introducing Disaggregated Inference on AWS powered by llm-d

    In this blog post, we introduce the concepts behind next-generation inference capabilities, including disaggregated serving, intelligent request scheduling, and expert parallelism. We discuss their benefits and walk through how you can implement them on Amazon SageMaker HyperPod EKS to achieve significant improvements …


    Read More
  • Azure Cosmos DB at FOSSASIA Summit 2026: Sessions, Conversations, and Community

    calendar Mar 16, 2026 · devblogs.microsoft.com
    Azure Cosmos DB at FOSSASIA Summit 2026: Sessions, Conversations, and Community

    The FOSSASIA Summit 2026 was an incredible gathering of developers, open-source contributors, startups, and technology enthusiasts from across the region. This year, Azure Cosmos DB and Azure DocumentDB were present at the summit with both technical sessions and a dedicated booth, giving us a great opportunity to …


    Read More
  • Get the Inside Scoop on Visual Studio Subscriptions, Straight to Your Inbox

    calendar Mar 16, 2026 · devblogs.microsoft.com
    Get the Inside Scoop on Visual Studio Subscriptions, Straight to Your Inbox

    Link to article: https://devblogs.microsoft.com/visualstudio/vss-newsletter-opt-in


    Read More
  • How Workhuman built multi-tenant self-service reporting using Amazon Quick Sight embedded dashboards

    calendar Mar 16, 2026 · aws.amazon.com/blogs/machine-learning
    How Workhuman built multi-tenant self-service reporting using Amazon Quick Sight embedded dashboards

    This post explores how Workhuman transformed their analytics delivery model and the key lessons learned from their implementation. We go through their architecture approach, implementation strategy, and the business outcomes they achieved—providing you with a practical blueprint for adding embedded analytics to your …


    Read More
  • How We Taught AI Agents to See the Bigger Picture

    calendar Mar 16, 2026 · blog.jetbrains.com
    How We Taught AI Agents to See the Bigger Picture

    The problem: Good code is not always accepted code AI agents can write working code. They can make changes that compile, pass tests, and finish tasks. And yet the pull request might still be rejected. That happens because every codebase has its own internal logic. Teams have naming conventions, preferred APIs, and …


    Read More
  • Build an offline feature store using Amazon SageMaker Unified Studio and SageMaker Catalog

    calendar Mar 16, 2026 · aws.amazon.com/blogs/machine-learning
    Build an offline feature store using Amazon SageMaker Unified Studio and SageMaker Catalog

    This blog post provides step-by-step guidance on implementing an offline feature store using SageMaker Catalog within a SageMaker Unified Studio domain. By adopting a publish-subscribe pattern, data producers can use this solution to publish curated, versioned feature tables—while data consumers can securely discover, …


    Read More
  • Windows stack limit checking retrospective: PowerPC

    calendar Mar 16, 2026 · devblogs.microsoft.com
    Windows stack limit checking retrospective: PowerPC

    We continue our historical survey of Windows stack-checking functions by looking at the PowerPC. The weird thing here is that on PowerPC, you ask for the negative of the stack frame size. We'll see why soon. ; on entry, r12 is the negative of the number of bytes to allocate ; on exit, stack has been validated (bu Link …


    Read More
  • Now Generally Available: Cosmos DB Mirroring in Microsoft Fabric with Private Networks

    calendar Mar 16, 2026 · devblogs.microsoft.com
    Now Generally Available: Cosmos DB Mirroring in Microsoft Fabric with Private Networks

    We’re excited to announce the general availability of private network support for Azure Cosmos DB mirroring in Microsoft Fabric, enabling customers to replicate operational data into Fabric from Azure Cosmos DB accounts secured with pr Link to article: …


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

    calendar Mar 16, 2026 · devleader.ca
    How to Implement Decorator Pattern in C#: Step-by-Step Guide

    Learn how to implement decorator pattern in C# with step-by-step code examples covering interfaces, abstract decorators, and decorator chaining. Link to article: https://www.devleader.ca/2026/03/16/how-to-implement-decorator-pattern-in-c-stepbystep-guide


    Read More
  • Trust, Two Truths, and the Coming Agent Swarm

    calendar Mar 16, 2026 · blog.jetbrains.com
    Trust, Two Truths, and the Coming Agent Swarm

    Picture a typical workday. You’re in a meeting. Someone asks the typical question: “So, how was revenue last month?” You pull up your dashboard and respond, “Looks like we’re up 5%.” The CFO then opens his laptop, checks his numbers, and says, “Well, from what I’m seeing, we’re down 2%.” And from that moment on, […] …


    Read More
  • Implementing RFC-compliant HTTP caching for HttpClient in .NET

    calendar Mar 16, 2026 · meziantou.net
    Implementing RFC-compliant HTTP caching for HttpClient in .NET

    HTTP caching is one of the most effective ways to improve application performance by reducing network traffic, minimizing server load, and decreasing response times. While browsers automatically implement HTTP caching, the same isn't true for HttpClient in .NET, which processes every request independently without …


    Read More
  • Kotlin 2.3.20 Released

    calendar Mar 16, 2026 · blog.jetbrains.com
    Kotlin 2.3.20 Released

    The Kotlin 2.3.20 release is out! Here are the main highlights: For the complete list of changes, refer to What’s new in Kotlin 2.3.20 or the release notes on GitHub. How to install Kotlin 2.3.20 The latest version of Kotlin is included in the latest versions of IntelliJ IDEA and Android Studio. To update to […] Link …


    Read More
  • Sunsetting Code With Me

    calendar Mar 16, 2026 · blog.jetbrains.com
    Sunsetting Code With Me

    Code With Me has been part of JetBrains IDEs for years, providing real-time collaborative coding and pair programming directly inside your development environment. It enabled teams to share a workspace, tackle issues together, and learn from one another without leaving the IDE. Today, we’re announcing plans to …


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

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top