.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • Toolbox App 3.8: Improves IDE Update Handling on macOS and Fixes Keyboard Navigation

    calendar Sep 14, 2026 · blog.jetbrains.com
    Toolbox App 3.8: Improves IDE Update Handling on macOS and Fixes Keyboard Navigation

    Version 3.8 of the Toolbox App restores keyboard navigation in project and tool lists. On macOS, manual IDE updates stay available even when the system reports the installation directory as protected. IDE updates remain available on macOS macOS was sometimes incorrectly reporting an IDE installation directory as …


    Read More
  • How Ninth Wave built AI-powered open finance onboarding on Amazon Bedrock

    calendar Sep 14, 2026 · aws.amazon.com/blogs/machine-learning
    How Ninth Wave built AI-powered open finance onboarding on Amazon Bedrock

    Learn how Ninth Wave built Compass, a multi-agent AI onboarding assistant on Amazon Bedrock AgentCore that validates bank APIs against Financial Data Exchange (FDX) standards, scores compliance, and compresses open finance onboarding from weeks to minutes while meeting SOC 2 and PCI DSS requirements. Link to article: …


    Read More
  • The generative AI customization spectrum: From prompt engineering to custom models on AWS

    calendar Sep 14, 2026 · aws.amazon.com/blogs/machine-learning
    The generative AI customization spectrum: From prompt engineering to custom models on AWS

    Pick the right generative AI customization approach on AWS with an 8-step decision framework, from prompt engineering and RAG to fine-tuning, continued pre-training, and Amazon Nova Forge. Start simple and escalate only when you must. Link to article: …


    Read More
  • Automate replenishment with MMF, Databricks Genie, and Amazon Quick

    calendar Sep 14, 2026 · aws.amazon.com/blogs/machine-learning
    Automate replenishment with MMF, Databricks Genie, and Amazon Quick

    Foundation models made catalog-wide demand forecasting easy; the hard part is now acting on the forecast. This post builds a closed detect-decide-act loop on Databricks and Amazon Quick that reconciles demand surges against live supplier availability and places replenishment orders unattended, escalating to a human …


    Read More
  • Why didn't ReadDirectoryChangesW provide a way to correlate the two sides of a rename operation?

    calendar Sep 14, 2026 · devblogs.microsoft.com
    Why didn't <code>ReadDirectoryChangesW</code> provide a way to correlate the two sides of a rename operation?

    Brian Dellisanti asked why Read­Directory­ChangesW didn't provide a way to correlate the two sides of a rename operation. I wasn't there, but I can guess. My guess is that the implementation alwa Link to article: https://devblogs.microsoft.com/oldnewthing/20260914-00/?p=112696


    Read More
  • MulticloudDB SDK: Cross-cloud portability in the coding agent era

    calendar Sep 14, 2026 · devblogs.microsoft.com
    MulticloudDB SDK: Cross-cloud portability in the coding agent era

    Building cross-cloud solutions with best-of-breed cloud-native databases means learning multiple SDKs, translating queries, handling different errors, and testing across providers. The Multicloud DB SDK for Java lets you share that work across Link to article: …


    Read More
  • Dynamic Filtering, Sorting, and Pagination With Specifications

    calendar Sep 14, 2026 · devleader.ca
    Dynamic Filtering, Sorting, and Pagination With Specifications

    Dynamic filtering, sorting, and pagination stay safe with allowlisted EF Core specifications, unique ordering, bounded pages, and reliable relational tests. Link to article: https://www.devleader.ca/2026/09/14/dynamic-filtering-sorting-and-pagination-with-specifications


    Read More
  • How Fyxer built an AI executive assistant people trust

    calendar Sep 14, 2026 · openai.com/blog
    How Fyxer built an AI executive assistant people trust

    Fyxer uses OpenAI models, fine-tuning, memory, and real user feedback to organize inboxes and draft emails in each user’s voice. Link to article: https://openai.com/index/fyxer


    Read More
  • XPath for custom types in .NET

    calendar Sep 14, 2026 · meziantou.net
    XPath for custom types in .NET

    XPath is widely known as the query language for XML documents. Most .NET developers associate it with XPathNavigator, XmlDocument, or XDocument. But what most people don't realize is that XPath can work with custom types too. In this post, I'll show you how to implement XPath for your own types and how it can be useful …


    Read More
  • Building a Japanese LLM Evaluation Pipeline: Lessons from a Two-Day Hackathon

    calendar Sep 14, 2026 · devblogs.microsoft.com
    Building a Japanese LLM Evaluation Pipeline: Lessons from a Two-Day Hackathon

    Introduction A: かしこまりました。ご注文番号をお教えいただければ、配送状況をお調べいたします。 B: ご不安ですよね。ご注文番号をお教えいただければ、すぐにお調べいたします。 Which sentence do you think is more appropriate as a response from call center AI? Link to article: https://devblogs.microsoft.com/ise/japanese-llm-evaluation-pipeline-hackathon


    Read More
  • What’s New for C++ Developers in Visual Studio 2026 (18.7 – 18.10)

    calendar Sep 14, 2026 · devblogs.microsoft.com
    What’s New for C++ Developers in Visual Studio 2026 (18.7 – 18.10)

    Over the past few months, we have continued shipping monthly Visual Studio 2026 releases, delivering improvements across all stages of the development cycle. In this blog post, we'll recap everything that changed from version 18.7 through 18.10 (released this month) that is relevant for C++ developers. This includes …


    Read More
  • Microsoft at CppCon 2026

    calendar Sep 14, 2026 · devblogs.microsoft.com
    Microsoft at CppCon 2026

    Microsoft will be at CppCon 2026 in Aurora, Colorado, which is taking place from September 14 through 18. Join us for talks from Microsoft speakers and colleagues across the C++ community and visit the Microsoft booth Monday through Thursday to meet the team and discuss the tools, technologies, and challe Link to …


    Read More
  • Perplexity trusts GPT-6 Astra with end-to-end systems

    calendar Sep 14, 2026 · openai.com/blog
    Perplexity trusts GPT-6 Astra with end-to-end systems

    Perplexity uses Astra to write communications, change software, and monitor production systems, and checks in much less frequently than with earlier models. Link to article: https://openai.com/index/perplexity-improving-accuracy-with-astra


    Read More
  • Observing .NET RAG Systems: OpenTelemetry, Latency, and Cost

    calendar Sep 13, 2026 · devleader.ca
    Observing .NET RAG Systems: OpenTelemetry, Latency, and Cost

    Learn OpenTelemetry RAG .NET tracing to connect retrieval, generation, latency, and cost boundaries with privacy-minimizing telemetry and evaluation signals. Link to article: https://www.devleader.ca/2026/09/13/observing-net-rag-systems-opentelemetry-latency-and-cost


    Read More
  • Task vs. ValueTask: Reducing Async Allocations and Boosting Performance

    calendar Sep 13, 2026 · dotnettips.wordpress.com
    Task vs. ValueTask: Reducing Async Allocations and Boosting Performance

    When writing asynchronous methods, consider returning ValueTask instead of Task for performance-sensitive scenarios, especially when methods frequently complete synchronously. ValueTask can improve speed and reduce memory allocation, but it comes with usage restrictions. Use Task as a default while applying ValueTask …


    Read More
  • Let Postgres Enforce Tenant Isolation

    calendar Sep 12, 2026 · milanjovanovic.tech
    Let Postgres Enforce Tenant Isolation

    EF Core query filters can be bypassed. PostgreSQL row-level security enforces tenant isolation on reads and writes, if you connect with the right database role… Link to article: https://milanjovanovic.tech/blog/postgres-row-level-security-with-ef-core


    Read More
  • Monitoring production agent lifecycle with AWS DevOps Agent and AgentCore Evaluations

    calendar Sep 11, 2026 · aws.amazon.com/blogs/machine-learning
    Monitoring production agent lifecycle with AWS DevOps Agent and AgentCore Evaluations

    Multi-agent systems fail in ways traditional monitoring misses. This post presents a dual-layer approach to monitoring production agents: Amazon Bedrock AgentCore Evaluations for continuous quality scoring and AWS DevOps Agent for autonomous infrastructure investigation, shown on a four-agent airline reservation …


    Read More
  • Beyond the price per token: Choosing the right OpenAI model on Amazon Bedrock for your workload

    calendar Sep 11, 2026 · aws.amazon.com/blogs/machine-learning
    Beyond the price per token: Choosing the right OpenAI model on Amazon Bedrock for your workload

    Comparing models on dollars per million tokens misses what production workloads actually pay for: outcomes. This post shares an open-source benchmarking harness that measures cost per correct answer, agent trajectory cost, and rubric-graded deliverable quality across OpenAI models on Amazon Bedrock. Link to article: …


    Read More
  • Build interactive MCP Apps using Amazon Bedrock AgentCore

    calendar Sep 11, 2026 · aws.amazon.com/blogs/machine-learning
    Build interactive MCP Apps using Amazon Bedrock AgentCore

    Learn how to build and deploy an MCP App with interactive HTML widgets on Amazon Bedrock AgentCore. Because MCP Apps is a host-agnostic standard, the same server delivers the same rich experience across AI hosts like ChatGPT and Claude that support the extension. Link to article: …


    Read More
  • 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
    • ««
    • «
    • 1
    • 2
    • 3
    • 4
    • 5
    • »
    • »»

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top