.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • The SARIF Viewer Is Now Available in CLion 2026.1.2

    calendar May 20, 2026 · blog.jetbrains.com
    The SARIF Viewer Is Now Available in CLion 2026.1.2

    Starting with v2026.1.2, CLion includes the SARIFThe Static Analysis Results Interchange Format. Viewer, available out of the box. This is especially useful for embedded and automotive teams, for whom external static analysis is often part of the compliance toolchain. If you use tools that produce SARIF reports – such …


    Read More
  • Relocating With JetBrains: What to Expect

    calendar May 20, 2026 · blog.jetbrains.com
    Relocating With JetBrains: What to Expect

    Why JetBrains supports international relocation At JetBrains, we believe that top talent knows no borders. Exceptional people can come from anywhere, and we are committed to building the best possible team by looking beyond geography. That’s why we invest in international employee relocation support and help colleagues …


    Read More
  • How to upload files in an ASP.NET Core Web API

    calendar May 20, 2026 · blog.elmah.io
    How to upload files in an ASP.NET Core Web API

    Files are an integrated part of an application. From a social app to an ERP, some form of media exists in the ecosystem. .NET Core APIs provide built-in support for uploading and fetching documents. In today's post, I will show you how to cleanly and efficiently use .NET Link to article: …


    Read More
  • The next phase of OpenAI’s Education for Countries

    calendar May 20, 2026 · openai.com/blog
    The next phase of OpenAI’s Education for Countries

    OpenAI advances Education for Countries, expanding AI adoption in schools with new partnerships, teacher training, and tools to improve global learning outcomes. Link to article: https://openai.com/index/the-next-phase-of-education-for-countries


    Read More
  • C# Reflection Anti-Patterns: 8 Mistakes That Will Hurt Your App

    calendar May 19, 2026 · devleader.ca
    C# Reflection Anti-Patterns: 8 Mistakes That Will Hurt Your App

    Avoid costly C# reflection anti-patterns -- learn 8 common mistakes developers make with reflection and the .NET 10 alternatives that perform better. Link to article: https://www.devleader.ca/2026/05/19/c-reflection-antipatterns-8-mistakes-that-will-hurt-your-app


    Read More
  • Meet Gordon: Docker’s AI Agent For Your Entire Container Workflow

    calendar May 19, 2026 · docker.com
    Meet Gordon: Docker’s AI Agent For Your Entire Container Workflow

    Gordon understands your environment, proposes fixes, and takes action across your entire Docker workflow. Now generally available. Image 1: Gordon in Docker Desktop Why Gordon Exists Developers are more productive than ever. AI coding assistants are writing code, merging PRs and cutting review cycles. But the moment …


    Read More
  • How to run evals for the model router

    calendar May 19, 2026 · devblogs.microsoft.com
    How to run evals for the model router

    One endpoint. Smarter spend. Model router in Foundry Models picks the optimal LLM for every prompt in real time based on signals like complexity, reasoning, and task type. Now with access to 28 frontier models, the model router makes model selection easier for developers and reduces manual overhead. This article walks …


    Read More
  • Package Identity

    calendar May 19, 2026 · devblogs.microsoft.com
    Package Identity

    An MSIX package identity is composed of a five-part tuple that uniquely identifies a package. It consists of the following attributes: Name Version Architecture Link to article: https://devblogs.microsoft.com/insidemsix/package-identity


    Read More
  • Introducing Sample Profile Guided Optimization in MSVC

    calendar May 19, 2026 · devblogs.microsoft.com
    Introducing Sample Profile Guided Optimization in MSVC

    Profile Guided Optimization (PGO) has long been one of the most powerful tools in the MSVC compiler's arsenal for improving the runtime performance of C and C++ applications. By using execution profile data collected from representative workloads, PGO enables the compiler to make smarter decisions about inlining, code …


    Read More
  • Scalable voice agent design with Amazon Nova Sonic: multi-agent, tools, and session segmentation

    calendar May 19, 2026 · aws.amazon.com/blogs/machine-learning
    Scalable voice agent design with Amazon Nova Sonic: multi-agent, tools, and session segmentation

    In this post, you’ll learn how to use Amazon Nova Sonic, Amazon Bedrock AgentCore, and Strands BidiAgent to build scalable, maintainable voice agents that handle these challenges efficiently, resulting in more responsive and intelligent customer interactions. We’ll explore three popular architectural patterns for voice …


    Read More
  • Extending conversational memory in Kiro CLI using Amazon Bedrock AgentCore Memory

    calendar May 19, 2026 · aws.amazon.com/blogs/machine-learning
    Extending conversational memory in Kiro CLI using Amazon Bedrock AgentCore Memory

    In this post, we demonstrate how you can extend the conversational memory of Kiro CLI by implementing a custom Model Context Protocol (MCP) server that integrates with Amazon Bedrock AgentCore Memory. You can use Kiro CLI to interact with AI agents of Kiro directly from your terminal. Amazon Bedrock AgentCore Memory is …


    Read More
  • Accelerate ML feature pipelines with new capabilities in Amazon SageMaker Feature Store

    calendar May 19, 2026 · aws.amazon.com/blogs/machine-learning
    Accelerate ML feature pipelines with new capabilities in Amazon SageMaker Feature Store

    Today, we’re announcing three new capabilities available in SageMaker Python SDK v3.8.0. In this post, we walk through each capability with code examples you can use to get started. For complete end-to-end walkthroughs, see the accompanying notebooks for Lake Formation governance and Iceberg table properties in the …


    Read More
  • Implementing programmatic tool calling on Amazon Bedrock

    calendar May 19, 2026 · aws.amazon.com/blogs/machine-learning
    Implementing programmatic tool calling on Amazon Bedrock

    In this post, we show three ways to implement Programmatic tool calling (PTC) on Amazon Bedrock: a self-hosted Docker sandbox on ECS for maximum control, a managed solution using Amazon Bedrock AgentCore Code Interpreter, and an Anthropic SDK-compatible path through a proxy for teams that prefer that developer …


    Read More
  • Agentic-Agile: Why Agent Development Needs Agile (Not Just Prompts)

    calendar May 19, 2026 · devblogs.microsoft.com
    Agentic-Agile: Why Agent Development Needs Agile (Not Just Prompts)

    "A bad system will beat a good person [or agent] every time" ~Dr. William Edwards Deming (with apologies) I started vibe coding by writing prompts (often dictated into my phone), refining them with an agent in M365 Copilot, and creating handoff files to use with GitHub Copil Link to article: …


    Read More
  • Eliminate LLM Cold starts: Load models up to 6x Faster with Azure Blob Storage and Run:AI Model Streamer

    calendar May 19, 2026 · devblogs.microsoft.com
    Eliminate LLM Cold starts: Load models up to 6x Faster with Azure Blob Storage and Run:AI Model Streamer

    Link to article: https://devblogs.microsoft.com/azure-sdk/eliminate-llm-cold-starts-load-models-up-to-6x-faster-with-azure-blob-storage-and-runai-model-streamer


    Read More
  • Proxy Pattern Best Practices in C#: Code Organization and Maintainability

    calendar May 19, 2026 · devleader.ca
    Proxy Pattern Best Practices in C#: Code Organization and Maintainability

    Master proxy pattern best practices in C# including interface compliance, thread safety, DI integration, testability, and avoiding common anti-patterns. Link to article: https://www.devleader.ca/2026/05/19/proxy-pattern-best-practices-in-c-code-organization-and-maintainability


    Read More
  • Introducing the JetBrains Course Creators Program

    calendar May 19, 2026 · blog.jetbrains.com
    Introducing the JetBrains Course Creators Program

    Online programming education still has a major gap: students learn concepts through videos and browser-based exercises, but rarely get to code in the professional tools they’ll use in development jobs. As AI changes how people learn programming and write code, practical developer skills are becoming even more …


    Read More
  • Advancing content provenance for a safer, more transparent AI ecosystem

    calendar May 19, 2026 · openai.com/blog
    Advancing content provenance for a safer, more transparent AI ecosystem

    OpenAI advances AI content provenance with Content Credentials, SynthID, and a verification tool to help people identify and trust AI-generated media. Link to article: https://openai.com/index/advancing-content-provenance


    Read More
  • .NET finally gets union types🎉: Exploring the .NET 11 preview - Part 2

    calendar May 19, 2026 · andrewlock.net
    .NET finally gets union types🎉: Exploring the .NET 11 preview - Part 2

    In this post I discuss the support for union types released in .NET 11, how they're implemented, the choices made, and how to create your own Link to article: https://andrewlock.net/exploring-the-dotnet-11-preview-2-dotnet-gets-union-types/


    Read More
  • LLM Evaluation and AI Observability for Agent Monitoring

    calendar May 19, 2026 · blog.jetbrains.com
    LLM Evaluation and AI Observability for Agent Monitoring

    This is a guest post from Naa Ashiorkor, a data scientist and tech community builder. Artificial intelligence keeps evolving at a rapid pace. The latest major application of AI, specifically of LLMs, is AI agents. These are systems that use their perception of their environment, processes, and input to take action to …


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

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top