.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • Amazon Nova Act is now HIPAA eligible

    calendar May 21, 2026 · aws.amazon.com/blogs/machine-learning
    Amazon Nova Act is now HIPAA eligible

    In this post, you will learn what Nova Act offers, how HIPAA eligibility applies to agentic AI, and how to get started. Link to article: https://aws.amazon.com/blogs/machine-learning/amazon-nova-act-is-now-hipaa-eligible/


    Read More
  • Reflection Performance in .NET 10: Benchmarks, Caching, and Delegates

    calendar May 21, 2026 · devleader.ca
    Reflection Performance in .NET 10: Benchmarks, Caching, and Delegates

    Understand C# reflection performance in .NET 10 -- learn caching strategies, compiled delegates, FrozenDictionary, and when reflection is fast enough. Link to article: https://www.devleader.ca/2026/05/21/reflection-performance-in-net-10-benchmarks-caching-and-delegates


    Read More
  • TeamCity 2025.11.5 Is Out

    calendar May 21, 2026 · blog.jetbrains.com
    TeamCity 2025.11.5 Is Out

    Our (most likely) final update for TeamCity 2025.11 On-Premises servers has just been released. This updage addresses a tiny amount of issues, but includes four security problem fixes, so we recommend that you do not skip this update. See TeamCity 2025.11.5 Release Notes for the complete list of resolved issues. Why …


    Read More
  • Intelligent radiology workflow optimization with AI agents

    calendar May 21, 2026 · aws.amazon.com/blogs/machine-learning
    Intelligent radiology workflow optimization with AI agents

    Many healthcare organizations report that traditional worklist systems rely on rigid rules that ignore critical context, radiologist specialization, current workload, fatigue levels, and case complexity. This creates a persistent challenge: radiologists cherry-pick easier, higher-value cases while avoiding complex …


    Read More
  • Sneak Peek at Critter Stack 2026

    calendar May 21, 2026 · jeremydmiller.com
    Sneak Peek at Critter Stack 2026

    This is in lieu of the “official” release post I’ll make early next week after the Memorial Day holiday when I have enough rest and energy to do something much better by hand. Until then, here’s a peek at the new releases we’ll be announcing early next week — but with some published updates to … Continue reading Sneak …


    Read More
  • The AX stack: what's fixed, where you can win

    calendar May 21, 2026 · devblogs.microsoft.com
    The AX stack: what's fixed, where you can win

    AI coding agents promise to make you more productive. On the surface they do, but in practice they fall short: agents generate code that doesn't compile, use a deprecated SDK, or pick the wrong service entirely. Is it you using it wrong? Is it your tech stack? Or is it the tools you haven't configured yet? The stack …


    Read More
  • Plan Before You Build: Introducing the Plan agent in Visual Studio

    calendar May 21, 2026 · devblogs.microsoft.com
    Plan Before You Build: Introducing the Plan agent in Visual Studio

    You ask Copilot to tackle something big, it gets to work, and a dozen file changes later you realize you had a completely different approach in mind. The code isn't wrong... it just isn't what you were going for. Last year, we introdu Link to article: …


    Read More
  • Announcing Agent Governance Toolkit MCP Extensions for .NET

    calendar May 21, 2026 · devblogs.microsoft.com
    Announcing Agent Governance Toolkit MCP Extensions for .NET

    The Model Context Protocol (MCP) has made it much easier to connect tools and resources to AI applications. But once those tools are exposed to agents, you also need a reliable way to govern what gets registered, what gets executed, and what comes back from tool calls. For a detailed loo Link to article: …


    Read More
  • Integrating AWS API MCP Server with Amazon Quick using Amazon Bedrock AgentCore Runtime

    calendar May 21, 2026 · aws.amazon.com/blogs/machine-learning
    Integrating AWS API MCP Server with Amazon Quick using Amazon Bedrock AgentCore Runtime

    This post shows you how to use Amazon Bedrock AgentCore Runtime with Model Context Protocol (MCP) support to connect Amazon Quick with AWS services through the AWS API MCP Server, creating a conversational AI assistant that translates natural language into AWS Command Line Interface (AWS CLI) commands, without the need …


    Read More
  • Building multi-tenant agents with Amazon Bedrock AgentCore

    calendar May 21, 2026 · aws.amazon.com/blogs/machine-learning
    Building multi-tenant agents with Amazon Bedrock AgentCore

    This post explores design considerations for architecting multi-tenant agentic applications and the framework needed to address SaaS architecture challenges with Amazon Bedrock AgentCore. Link to article: https://aws.amazon.com/blogs/machine-learning/building-multi-tenant-agents-with-amazon-bedrock-agentcore/


    Read More
  • Break the context window barrier with Amazon Bedrock AgentCore

    calendar May 21, 2026 · aws.amazon.com/blogs/machine-learning
    Break the context window barrier with Amazon Bedrock AgentCore

    In this post, you will learn how to implement Recursive Language Models (RLM) using Amazon Bedrock AgentCore Code Interpreter and the Strands Agents SDK. By the end, you will know how to process documents of varying lengths, with no upper bound on context size, use Bedrock AgentCore Code Interpreter as persistent …


    Read More
  • Improving C# Memory Safety

    calendar May 21, 2026 · devblogs.microsoft.com
    Improving C# Memory Safety

    We're in the process of significantly improving memory safety in C#. The unsafe keyword is being redesigned to inform callers that they have obligations that must be discharged to maintain safety, documented via a new safety comment style. The keyword will expand from m Link to article: …


    Read More
  • Build AI agents for business intelligence with Amazon Bedrock AgentCore

    calendar May 21, 2026 · aws.amazon.com/blogs/machine-learning
    Build AI agents for business intelligence with Amazon Bedrock AgentCore

    In this post, we show you how OPLOG developed three AI agents using the Strands Agents SDK, deployed them to Amazon Bedrock AgentCore, and integrated Amazon Bedrock with Anthropic’s Claude Sonnet and Amazon Bedrock Knowledge Bases for Retrieval Augmented Generation (RAG). Link to article: …


    Read More
  • Build an AI-powered recruitment assistant using Amazon Bedrock

    calendar May 21, 2026 · aws.amazon.com/blogs/machine-learning
    Build an AI-powered recruitment assistant using Amazon Bedrock

    In this post, we demonstrate how to build an AI-powered recruitment assistant using Amazon Bedrock that brings efficiencies to candidate evaluation, generates personalized interview questions, and provides data-driven insights for human hiring decisions. This post presents a reference architecture for learning purposes …


    Read More
  • Build AI-powered dashboard automation agents with NLP on Amazon Bedrock AgentCore

    calendar May 21, 2026 · aws.amazon.com/blogs/machine-learning
    Build AI-powered dashboard automation agents with NLP on Amazon Bedrock AgentCore

    This solution combines the power of Amazon Bedrock AgentCore, Strands Agents, and Amazon Quick transforms to deliver a secure, scalable, and intelligent system for building and operating AI agents while transforming data into actionable business insights. Link to article: …


    Read More
  • PowerShell is now notarized and hardened for macOS

    calendar May 21, 2026 · devblogs.microsoft.com
    PowerShell is now notarized and hardened for macOS

    We're excited to announce that the PowerShell packages for macOS are now properly notarized and hardened, meeting both Apple's security requirements and Microsoft's internal compliance standards. This has been one of the most consistently requested improvements from our macOS community, and we're gla Link to article: …


    Read More
  • Proxy vs Decorator Pattern in C#: Key Differences Explained

    calendar May 21, 2026 · devleader.ca
    Proxy vs Decorator Pattern in C#: Key Differences Explained

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


    Read More
  • AdventHealth advances whole-person care with OpenAI

    calendar May 21, 2026 · openai.com/blog
    AdventHealth advances whole-person care with OpenAI

    AdventHealth is using ChatGPT for Healthcare to streamline workflows, reduce administrative burden, and return more time to patient care. Link to article: https://openai.com/index/adventhealth


    Read More
  • KotlinConf’26 Keynote Highlights: Advances in Language Design, Tooling, AI-Driven Workflows, and Multiplatform Development

    calendar May 21, 2026 · blog.jetbrains.com
    KotlinConf’26 Keynote Highlights: Advances in Language Design, Tooling, AI-Driven Workflows, and Multiplatform Development

    Kotlin turns 15 this year, and it really is everywhere. It powers systems behind everyday moments, such as tapping to pay, buying commuter rail tickets, using in-flight entertainment, and even filing tax returns online. As AI continues to reshape how software gets built, Kotlin’s growing real-world impact reflects the …


    Read More
  • Introducing a Security Support Policy for the Kotlin Standard Library

    calendar May 21, 2026 · blog.jetbrains.com
    Introducing a Security Support Policy for the Kotlin Standard Library

    Upgrade rhythms vary significantly among Kotlin’s user base. Some teams update whenever a new release lands without a second thought. On the other hand, a team inside a regulated organization moves on a multi-quarter cycle and treats every dependency as something that has to be reviewed, approved, and then frozen in …


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

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top