.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • AgentOps: Operationalize agentic AI at scale with Amazon Bedrock AgentCore

    calendar Jun 1, 2026 · aws.amazon.com/blogs/machine-learning
    AgentOps: Operationalize agentic AI at scale with Amazon Bedrock AgentCore

    When you build agentic AI solutions, you face unique operational challenges. Agents make unpredictable decisions, costs spiral unexpectedly, and debugging non-deterministic failures seems impossible. Agentic AI applications don't just execute predetermined workflows. They reason, adapt, and make autonomous decisions, …


    Read More
  • Accelerate LLM model loading and increase context windows with GPUDirect on Amazon FSx for Lustre and TurboQuant

    calendar Jun 1, 2026 · aws.amazon.com/blogs/machine-learning
    Accelerate LLM model loading and increase context windows with GPUDirect on Amazon FSx for Lustre and TurboQuant

    If you’re iterating on deploying large language models (LLMs) on AWS GPU instances, you’ve probably noticed the larger the model to be loaded into GPU High Bandwidth Memory (HBM), the longer the painful wait until the GPUs are ready for inference. As models grow to hundreds of billions of parameters and GPU …


    Read More
  • Amazon Quick integration with time-series databases for market intelligence using MCP

    calendar Jun 1, 2026 · aws.amazon.com/blogs/machine-learning
    Amazon Quick integration with time-series databases for market intelligence using MCP

    In this post, we walk through a practical implementation using KDB-X MCP server integration with Amazon Quick, demonstrating how traders and analysts can ask questions using conversational language and receive actionable insights from datasets. You can apply this same integration pattern across various domains, from …


    Read More
  • What is Sandbox Security?

    calendar Jun 1, 2026 · docker.com
    What is Sandbox Security?

    If you're already familiar with sandboxing as an isolation technique, sandbox security is the next layer: the policies, controls, and enforcement mechanisms that make sure those isolation boundaries actually hold under real-world pressure. According to our State of Agentic AI report, 40% of respondents cite security as …


    Read More
  • Scaling AI for silicon

    calendar Jun 1, 2026 · devblogs.microsoft.com
    Scaling AI for silicon

    Modern AI systems have transformed software engineering, but their impact in silicon development has been limited. The primary constraint is that silicon engineering depends on assembling and reasoning over context that is distributed across many systems. Specifications, logs, regressions, waveforms, and prior debug …


    Read More
  • Rock Your Career: Surviving The Technical Interview – 6th Edition

    calendar Jun 1, 2026 · dotnettips.wordpress.com
    Rock Your Career: Surviving The Technical Interview – 6th Edition

    David McCarter has released the 7th edition of "Rock Your Career: Surviving The Technical Interview," providing essential strategies for software engineers facing modern hiring challenges. This updated guide covers interview preparation, resume crafting, navigating recruitment processes, and salary …


    Read More
  • Stop Pasting Tokens: OAuth2 Login for JetBrains IDE Plugins

    calendar Jun 1, 2026 · blog.jetbrains.com
    Stop Pasting Tokens: OAuth2 Login for JetBrains IDE Plugins

    The moment a plugin needs account data, a simple API call turns into an authentication problem. The bad shortcut is familiar: ask the user to create a personal access token (PAT), make them paste it into settings, and hope it never leaks. For a JetBrains IDE plugin, use this flow instead: the user clicks the […] Link …


    Read More
  • Coding Agent Horror Stories: The rm -rf ~/ Incident

    calendar Jun 1, 2026 · docker.com
    Coding Agent Horror Stories: The rm -rf ~/ Incident

    This is Part 2 of our AI Coding Agent Horror Stories series, an in-depth look at real-world security incidents exposing the vulnerabilities in AI coding agents, and how Docker Sandboxes deliver workspace-scoped isolation that contains the worst failures at the execution layer. In part 1 of this series, we mapped six …


    Read More
  • Iterator Design Pattern in C#: Complete Guide with Examples

    calendar Jun 1, 2026 · devleader.ca
    Iterator Design Pattern in C#: Complete Guide with Examples

    Master the iterator design pattern in C# with practical examples showing IEnumerable, IEnumerator, custom iterators, yield return, and real-world .NET implementations. Link to article: https://www.devleader.ca/2026/06/01/iterator-design-pattern-in-c-complete-guide-with-examples


    Read More
  • Mellum2 Goes Open Source: A Fast Model for AI Workflows

    calendar Jun 1, 2026 · blog.jetbrains.com
    Mellum2 Goes Open Source: A Fast Model for AI Workflows

    Trained from scratch and designed for practical deployment, Mellum2 is built for routing, Q&A, sub-agents, and private AI use in software engineering systems. Today, we’re open-sourcing Mellum2, a 12B model engineered to solve the hardest parts of production AI: latency, throughput, and cost. Built from scratch and …


    Read More
  • How To Fix Common TypeScript Issues With Qodana

    calendar Jun 1, 2026 · blog.jetbrains.com
    How To Fix Common TypeScript Issues With Qodana

    Most TypeScript projects already run ESLint with @typescript-eslint. That covers a lot: explicit any, floating promises, non-null assertions, and more. If your linting setup is solid, you’re catching the obvious issues in the editor before code review. ESLint rules can’t produce cross-file findings. Each rule runs …


    Read More
  • Microsoft Agent Framework at BUILD 2026

    calendar Jun 1, 2026 · devblogs.microsoft.com
    Microsoft Agent Framework at BUILD 2026

    Link to article: https://devblogs.microsoft.com/agent-framework/microsoft-agent-framework-at-build-2026


    Read More
  • ASP.NET Core Routing: Attribute Routing, Route Templates, and Constraints

    calendar May 31, 2026 · devleader.ca
    ASP.NET Core Routing: Attribute Routing, Route Templates, and Constraints

    Learn how ASP.NET Core routing works in .NET 10 -- covers attribute routing, route templates, constraints, parameter binding, and URL generation for REST APIs. Link to article: https://www.devleader.ca/2026/05/31/aspnet-core-routing-attribute-routing-route-templates-and-constraints


    Read More
  • Chain of Responsibility Pattern Best Practices in C#: Code Organization and Maintainability

    calendar May 31, 2026 · devleader.ca
    Chain of Responsibility Pattern Best Practices in C#: Code Organization and Maintainability

    Explore chain of responsibility pattern best practices in C# including handler design, chain construction, error handling, and testable pipeline architectures. Link to article: https://www.devleader.ca/2026/05/31/chain-of-responsibility-pattern-best-practices-in-c-code-organization-and-maintainability


    Read More
  • What's new in Microsoft Foundry | May 2026

    calendar May 31, 2026 · devblogs.microsoft.com
    What's new in Microsoft Foundry | May 2026

    TL;DR Trace-based evaluation for external and hosted agents: Grade real production traces from Foundry, GCP, AWS, or any framework — no hand-curated datasets required. Grok 4.3: xAI's latest model lands in Foundry for advanced agentic and domain-specific workloads. Link to article: …


    Read More
  • GitHub Copilot Agent for Unit Tests: My Real-World Spargine Experiment

    calendar May 31, 2026 · dotnettips.wordpress.com
    GitHub Copilot Agent for Unit Tests: My Real-World Spargine Experiment

    After experimenting with the GitHub Copilot Agent during the 2026 Microsoft MVP Summit, the author faced numerous challenges, including code deletion, slow performance, and inconsistent adherence to coding conventions. Despite these issues, the agent added valuable unit tests to the Spargine projects, but it requires …


    Read More
  • ASP.NET Core Web API in .NET: The Complete Guide

    calendar May 30, 2026 · devleader.ca
    ASP.NET Core Web API in .NET: The Complete Guide

    Master ASP.NET Core Web API in .NET 10 -- learn request pipelines, routing, controllers, JWT authentication, error handling, and deployment strategies. Link to article: https://www.devleader.ca/2026/05/30/aspnet-core-web-api-in-net-the-complete-guide


    Read More
  • How to Use Build5Nines.SharpVector with Microsoft Agent Framework for Local RAG in C#

    calendar May 30, 2026 · build5nines.com
    How to Use Build5Nines.SharpVector with Microsoft Agent Framework for Local RAG in C#

    There is a moment every developer hits when building an AI agent: the demo works, the model responds, the tool calls fire, and everything feels… Link to article: https://build5nines.com/how-to-use-build5nines-sharpvector-with-microsoft-agent-framework-for-local-rag-in-c/


    Read More
  • Template Method Pattern Real-World Example in C#: Complete Implementation

    calendar May 30, 2026 · devleader.ca
    Template Method Pattern Real-World Example in C#: Complete Implementation

    Build a real-world template method pattern example in C# with a complete document processing pipeline showing practical inheritance-based workflow design. Link to article: https://www.devleader.ca/2026/05/30/template-method-pattern-realworld-example-in-c-complete-implementation


    Read More
  • Union Types Are Finally Coming to C#

    calendar May 30, 2026 · milanjovanovic.tech
    Union Types Are Finally Coming to C#

    For years we faked union types with marker interfaces, base classes, and the OneOf library. C# 15 finally bakes them into the language - and here's a quick tour of what they look like and why I think they're a big deal. Link to article: https://www.milanjovanovic.tech/blog/union-types-are-finally-coming-to-csharp


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

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top