.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • Pipeline Pattern vs System.IO.Pipelines in .NET

    calendar Sep 11, 2026 · devleader.ca
    Pipeline Pattern vs System.IO.Pipelines in .NET

    Compare the Pipeline Pattern vs System.IO.Pipelines in .NET, including PipeReader, PipeWriter, byte-buffer ownership, flow control, parsing, and completion. Link to article: https://www.devleader.ca/2026/09/11/pipeline-pattern-vs-systemiopipelines-in-net


    Read More
  • Reduce LLM latency with prefix-aware routing on Amazon SageMaker Inference

    calendar Sep 10, 2026 · aws.amazon.com/blogs/machine-learning
    Reduce LLM latency with prefix-aware routing on Amazon SageMaker Inference

    Amazon SageMaker Inference now offers prefix-aware routing, a routing strategy that sends requests sharing the same prompt prefix to the same instance so the KV cache stays warm. In benchmarks on Llama 3.1 70B, it reduced P50 time-to-first-token by up to 77% and raised KV cache hit rates from about 25% to over 80%. …


    Read More
  • Reduce inference cold starts on Amazon SageMaker HyperPod with model caching

    calendar Sep 10, 2026 · aws.amazon.com/blogs/machine-learning
    Reduce inference cold starts on Amazon SageMaker HyperPod with model caching

    Amazon SageMaker HyperPod now supports model caching for inference, which pre-loads model weights and container images onto cluster nodes so pods read from local NVMe storage instead of downloading over the network. Learn how model caching cuts cold starts from tens of minutes to seconds, how it works, and how to …


    Read More
  • MSVC C++23: constexpr cmath with LLVM Libc

    calendar Sep 10, 2026 · devblogs.microsoft.com
    MSVC C++23: constexpr cmath with LLVM Libc

    Proposal P0533R9 made numerous math functions in the standard library compile-time evaluable in C++23. Implementing the feature required a good bit of time and effort, but MSVC is preparing its experimental implementation for the 14.52 build tools (compiler vers Link to article: …


    Read More
  • Video and image search in Amazon Bedrock Knowledge Base using Marengo 3.0

    calendar Sep 10, 2026 · aws.amazon.com/blogs/machine-learning
    Video and image search in Amazon Bedrock Knowledge Base using Marengo 3.0

    TwelveLabs Marengo Embed 3.0 is now generally available as an embedding model in Amazon Bedrock Knowledge Bases, bringing fully managed natural language search to video, image, and audio content. This walkthrough shows how to build a knowledge base powered by Marengo 3.0 and run semantic queries against your media. …


    Read More
  • Amazon Quick is now generally available on desktop

    calendar Sep 10, 2026 · aws.amazon.com/blogs/machine-learning
    Amazon Quick is now generally available on desktop

    Your teams get an AI assistant that handles real work while your data stays in your environment and your conversations stay private Today, the Amazon Quick desktop application is generally available on macOS and Windows. We’re also adding a new activity feed to the mobile experience on iOS and Android that consolidates …


    Read More
  • Announcing Azure AI Speech LLM 2607: Better Multilingual Accuracy, Easier Customization

    calendar Sep 10, 2026 · devblogs.microsoft.com
    Announcing Azure AI Speech LLM 2607: Better Multilingual Accuracy, Easier Customization

    Azure AI Speech continues to deliver regular improvements to LLM Speech throughout the year, helping developers build more accurate and capable voice experiences. We’re announcing LLM Speech 2607, our latest model update, which brings improvements in multilingual recognition and mixed-language audio inputs, along with …


    Read More
  • Use C# unions and closed hierarchies in ASP.NET Core

    calendar Sep 10, 2026 · devblogs.microsoft.com
    Use C# unions and closed hierarchies in ASP.NET Core

    Sometimes an API contract says that a value can have more than one JSON type. Kubernetes has a practical example: maxUnavailable can be an absolute number, such as 2, or a percentage, such as "25%". Imag Link to article: https://devblogs.microsoft.com/dotnet/unions-and-closed-hierarchies-in-aspnetcore


    Read More
  • Build an end-to-end RFI questionnaire workflow using Amazon Quick Automate

    calendar Sep 10, 2026 · aws.amazon.com/blogs/machine-learning
    Build an end-to-end RFI questionnaire workflow using Amazon Quick Automate

    Learn how to build an end-to-end RFI questionnaire workflow with Amazon Quick Automate. Read a multi-tab RFI workbook from Amazon S3, use natural-language prompts to extract and structure the questionnaire data, refine the workflow through conversation, and write clean CSV output back to Amazon S3 — cutting development …


    Read More
  • Model-agnostic PII detection with LLMs

    calendar Sep 10, 2026 · aws.amazon.com/blogs/machine-learning
    Model-agnostic PII detection with LLMs

    A configurable, model-agnostic detector that turns any large language model on Amazon Bedrock into a PII detector. Because the entities to detect live in a prompt rather than in code, one detector adapts to new entity types without retraining, and it outperforms an off-the-shelf tool across five public corpora and nine …


    Read More
  • How a researcher uses Codex and ChatGPT to search for new antimicrobial molecules

    calendar Sep 10, 2026 · openai.com/blog
    How a researcher uses Codex and ChatGPT to search for new antimicrobial molecules

    César de la Fuente’s lab uses Codex and ChatGPT to search living and extinct genomes for antimicrobial candidates to fight drug-resistant infections. Link to article: https://openai.com/index/using-codex-chatgpt-to-search-for-new-antimicrobials


    Read More
  • Agent Evaluation Metric for multi-turn conversations

    calendar Sep 10, 2026 · aws.amazon.com/blogs/machine-learning
    Agent Evaluation Metric for multi-turn conversations

    Multi-turn agents fail in ways single-turn evaluation misses: one early mistake corrupts every later turn. This post introduces the Agent Evaluation Metric (AEM), a decomposable, turn-level way to measure agent quality, applied to its first dimension, correctness, to pinpoint the turn that caused a failure and separate …


    Read More
  • How AvioBook builds turnaround insights from operational data with Amazon Bedrock AgentCore

    calendar Sep 10, 2026 · aws.amazon.com/blogs/machine-learning
    How AvioBook builds turnaround insights from operational data with Amazon Bedrock AgentCore

    AvioBook, a Thales Group Company, prototyped Connected Analytics on Amazon Bedrock AgentCore to turn AvioBook Connect's operational data into plain-language, evidence-based answers for airline managers and dispatchers, helping them find and act on the causes of flight turnaround delays. Link to article: …


    Read More
  • Now everyone can put data to work

    calendar Sep 10, 2026 · openai.com/blog
    Now everyone can put data to work

    Meet the Data agent in ChatGPT Work. Connect company data, uncover insights, and build interactive dashboards with AI using natural language. Link to article: https://openai.com/index/put-data-to-work


    Read More
  • EF Core Specifications for Includes, Projection, and Tracking

    calendar Sep 10, 2026 · devleader.ca
    EF Core Specifications for Includes, Projection, and Tracking

    Learn how EF Core specifications can shape DTO projections, deliberate includes, tracking behavior, and single or split queries without over-fetching. Link to article: https://www.devleader.ca/2026/09/10/ef-core-specifications-for-includes-projection-and-tracking


    Read More
  • Join Us at the Zephyr Project Meetup in Amsterdam

    calendar Sep 10, 2026 · blog.jetbrains.com
    Join Us at the Zephyr Project Meetup in Amsterdam

    Register for the Meetup On September 15, the Zephyr community is coming together for an in-person meetup at the JetBrains office in Amsterdam. The Zephyr Project is an open-source collaboration project hosted by the Linux Foundation. Its community brings together developers, users, silicon vendors, device …


    Read More
  • Expanding AI access and cyber defense for federal, state, local, and tribal governments

    calendar Sep 10, 2026 · openai.com/blog
    Expanding AI access and cyber defense for federal, state, local, and tribal governments

    OpenAI and GSA will offer eligible federal, state, local, and tribal governments $0 license fees, 50% off usage, and expanded cyber defense support. Link to article: https://openai.com/index/expanding-ai-access-us-government


    Read More
  • Introducing ChatGPT for Financial Services

    calendar Sep 10, 2026 · openai.com/blog
    Introducing ChatGPT for Financial Services

    Introducing ChatGPT for Financial Services, combining built-in financial data and GPT-6 Astra for research, modeling, and client-ready materials. Link to article: https://openai.com/index/introducing-chatgpt-financial-services


    Read More
  • Build more natural voice experiences with GPT‑Live‑1 in the API

    calendar Sep 10, 2026 · openai.com/blog
    Build more natural voice experiences with GPT‑Live‑1 in the API

    GPT‑Live‑1 brings natural, full-duplex voice conversations to the API, with stronger instruction following, custom voices, and telephony support. Link to article: https://openai.com/index/introducing-gpt-live-1-in-the-api


    Read More
  • Introducing the Agents API

    calendar Sep 10, 2026 · openai.com/blog
    Introducing the Agents API

    Build and launch cloud agents with the Agents API, a managed service powered by the Codex harness for orchestration, long-running sessions, and tool use. Link to article: https://openai.com/index/introducing-the-agents-api


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

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top