.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • Introducing the agent performance loop: AgentCore Optimization now in preview

    calendar May 4, 2026 · aws.amazon.com/blogs/machine-learning
    Introducing the agent performance loop: AgentCore Optimization now in preview

    Generate recommendations from production traces, validate them with batch evaluation and A/B testing, and ship with confidence. AI agents that perform well at launch don’t stay that way. As models evolve, user behavior shifts, and prompts get reused in new contexts they were never designed for. Agent quality quietly …


    Read More
  • Agent-guided workflows to accelerate model customization in Amazon SageMaker AI

    calendar May 4, 2026 · aws.amazon.com/blogs/machine-learning
    Agent-guided workflows to accelerate model customization in Amazon SageMaker AI

    Amazon SageMaker AI now offers an agentic experience that changes this. Developers describe their use case using natural language, and the AI coding agent streamlines the entire journey, from use case definition and data preparation through technique selection, evaluation, and deployment. In this post, we walk you …


    Read More
  • Microsoft Agent Framework - Building Blocks for AI Part 3

    calendar May 4, 2026 · devblogs.microsoft.com
    Microsoft Agent Framework - Building Blocks for AI Part 3

    Welcome back to the building blocks for AI in .NET series! In part one, we explored Microsoft Extensions for AI (MEAI) and how it provides a unified interface for working with large language models. In Link to article: https://devblogs.microsoft.com/dotnet/microsoft-agent-framework-building-blocks-for-ai-part-3


    Read More
  • Generate dashboards from natural language prompts in Amazon Quick

    calendar May 4, 2026 · aws.amazon.com/blogs/machine-learning
    Generate dashboards from natural language prompts in Amazon Quick

    Building meaningful dashboards demands hours of manual setup, even for experienced BI professionals. Amazon Quick now generates complete multi-sheet dashboards from natural language prompts, taking you from one or more datasets to a production-ready analysis in minutes. Data analysts building recurring operations …


    Read More
  • SQL MCP Server as an App Service

    calendar May 4, 2026 · devblogs.microsoft.com
    SQL MCP Server as an App Service

    Placing SQL MCP Server between your AI agent and your SQL database lets your agent interact with data through a controlled API surface instead of direct database access. Built on Data API builder (DAB), SQL MCP Server brings DAB features to agentic solutions, including caching, telemetry, authentication, and …


    Read More
  • There is no Install - it's 'Stage' and 'Register'

    calendar May 4, 2026 · devblogs.microsoft.com
    There is no Install - it's 'Stage' and 'Register'

    "Is ContosoParts.msix installed?" is a common - but misleading - question The term install is not a formal concept in MSIX. This may seem paradoxical for a deployment technology, but it makes perfect sense once you understand MSIX deployment’s core ar Link to article: …


    Read More
  • Meet the Finalists: JetBrains x Codex Hackathon

    calendar May 4, 2026 · blog.jetbrains.com
    Meet the Finalists: JetBrains x Codex Hackathon

    Put a capable coding model inside a developer’s primary workspace, and the IDE stops being a place where you write code. It becomes a place where you direct an agent, watch how it reasons, manage what it pays attention to, and decide when its output is worth shipping. That was the defining theme of the […] Link to …


    Read More
  • From data lake to AI-ready analytics: Introducing new data source with S3 Tables in Amazon Quick

    calendar May 4, 2026 · aws.amazon.com/blogs/machine-learning
    From data lake to AI-ready analytics: Introducing new data source with S3 Tables in Amazon Quick

    Amazon Quick introduces Amazon S3 Tables (Apache Iceberg tables) as a new data source. With this feature, customers can directly query and visualize Apache Iceberg tables stored in an Amazon S3 table bucket without the need for intermediate data layers. In this post, we explored how Amazon Quick’s new Amazon S3 Tables …


    Read More
  • Introducing Dataset Q&A: Expanding natural language querying for structured datasets in Amazon Quick

    calendar May 4, 2026 · aws.amazon.com/blogs/machine-learning
    Introducing Dataset Q&A: Expanding natural language querying for structured datasets in Amazon Quick

    In this post, you learn how to get started with Dataset Q&A, explore real-world use cases with hands-on examples, and discover advanced capabilities like auto-discovery across all your data assets and multi-dataset querying in a single conversation. Link to article: …


    Read More
  • Capacity-aware inference: Automatic instance fallback for SageMaker AI endpoints

    calendar May 4, 2026 · aws.amazon.com/blogs/machine-learning
    Capacity-aware inference: Automatic instance fallback for SageMaker AI endpoints

    Today, Amazon SageMaker AI introduces capacity aware instance pool for new and existing inference endpoints. You define a prioritized list of instance types, and SageMaker AI automatically works through your list whenever capacity is constrained at creation, during scale-out, and during scale-in. Your endpoint …


    Read More
  • Adapting Pagination from SQL Server to Amazon DynamoDB for .NET Applications

    calendar May 4, 2026 · aws.amazon.com/blogs/dotnet
    Adapting Pagination from SQL Server to Amazon DynamoDB for .NET Applications

    When you migrate .NET applications from SQL Server to Amazon DynamoDB, your existing pagination patterns need adaptation. .NET applications commonly use page number navigation with Language Integrated Query (LINQ) Skip() and Take() methods, which rely on SQL Server’s OFFSET/FETCH NEXT clauses and indexed ordering to …


    Read More
  • Giving Copilot more C++ context using custom instructions in VS Code

    calendar May 4, 2026 · devblogs.microsoft.com
    Giving Copilot more C++ context using custom instructions in VS Code

    In February, we announced how GitHub Copilot can now use C++ symbol context and CMake build configuration awareness to deliver smarter suggestions in Visual Studio Code. Today, we're excited to share new Link to article: …


    Read More
  • How do I inform Windows that I'm writing a binary file?

    calendar May 4, 2026 · devblogs.microsoft.com
    How do I inform Windows that I'm writing a binary file?

    A customer wanted to know how to inform Windows that they were opening a file in text mode, as opposed to binary mode. That way, Windows can perform text conversions as necessary, like adding carriage returns before linefeeds, or converting ASCII to Unicode. Windows doesn't know whether your file is binary or text. As …


    Read More
  • We Gave Agents IDE-Native Search Tools. They Got Faster and Cheaper.

    calendar May 4, 2026 · blog.jetbrains.com
    We Gave Agents IDE-Native Search Tools. They Got Faster and Cheaper.

    We ran the same coding tasks with and without prebundled tooling, across multiple models and languages. Here’s what changed. Eval-driven development IDE-native search reduced latency, cost, and budget overruns. The comparison below uses paired task-level deltas. Aggregate medians and totals are shown for orientation. …


    Read More
  • Facade vs Adapter Pattern in C#: Key Differences Explained

    calendar May 4, 2026 · devleader.ca
    Facade vs Adapter Pattern in C#: Key Differences Explained

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


    Read More
  • Disable HTTP caching by default in ASP.NET Core APIs

    calendar May 4, 2026 · meziantou.net
    Disable HTTP caching by default in ASP.NET Core APIs

    When building APIs with ASP.NET Core, it's crucial to explicitly control caching behavior. Unlike web pages where caching often improves user experience, API responses should not be cached by default unless you intentionally design them to be cacheable. Unintended caching can lead to serious issues, including stale …


    Read More
  • PyTorch vs. TensorFlow: Choosing the Right Framework in 2026

    calendar May 4, 2026 · blog.jetbrains.com
    PyTorch vs. TensorFlow: Choosing the Right Framework in 2026

    Choosing between PyTorch and TensorFlow isn’t about finding the “better” framework – it’s about finding the right fit for your project. Both power cutting-edge AI systems, but they excel in different domains. PyTorch dominates research and experimentation, while TensorFlow leads in production deployment at scale. The …


    Read More
  • Teaching an AI Agent to Debug Flaky Tests

    calendar May 4, 2026 · blog.jetbrains.com
    Teaching an AI Agent to Debug Flaky Tests

    If you’ve been connected to the internet for a while, you’ve surely heard of AI Agent Skills. They teach your agent to do this and that. You might have even used or written a couple of them yourself. If you aren’t yet familiar with them, the idea is simple: Instead of prompting instructions for a […] Link to article: …


    Read More
  • Kodee’s Kotlin Roundup: Golden Kodee Finalists, Kotlin 2.4.0-Beta2, and New Learning Resources

    calendar May 4, 2026 · blog.jetbrains.com
    Kodee’s Kotlin Roundup: Golden Kodee Finalists, Kotlin 2.4.0-Beta2, and New Learning Resources

    Hi everyone! April brought exciting community news with the announcement of the Golden Kodee finalists, along with Kotlin and tooling releases, multiplatform progress, and fresh backend resources. I also came across the new Kotlin Professional Certificate on LinkedIn Learning, which is a great way to build your skills. …


    Read More
  • Measuring Manager Effectiveness -- Can You Even Quantify It? - Dev Leader Weekly 138

    calendar May 4, 2026 · devleader.ca
    Measuring Manager Effectiveness -- Can You Even Quantify It? - Dev Leader Weekly 138

    Welcome to another issue of Dev Leader Weekly! In this issue, I break down how to think about measuring engineering manager effectiveness across technical, project, and people dimensions. Link to article: https://www.devleader.ca/2026/05/04/measuring-manager-effectiveness-can-you-even-quantify-it-dev-leader-weekly-138


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

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top