.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • Introducing JetBrains Context: Repository Intelligence for Coding Agents

    calendar Jul 21, 2026 · blog.jetbrains.com
    Introducing JetBrains Context: Repository Intelligence for Coding Agents

    Today, we’re launching JetBrains Context, a new repository intelligence layer that helps coding agents work more efficiently and produce higher-quality results on complex codebases. As part of the JetBrains AI for Teams and Organizations rollout, JetBrains Context is now available in early access at no additional cost …


    Read More
  • Busy Plugin Developers Newsletter – Q2 2026

    calendar Jul 21, 2026 · blog.jetbrains.com
    Busy Plugin Developers Newsletter – Q2 2026

    Your quarterly dose of plugin dev news, tools, and tips from JetBrains 🏪 Marketplace Updates Internal API Usage Notifications To support the ongoing IntelliJ Platform API stabilization, JetBrains Marketplace now automatically notifies plugin authors when their plugins use internal APIs. This gives authors an …


    Read More
  • Building an MCP Client in C#: Connecting, Discovering, and Calling Tools

    calendar Jul 21, 2026 · devleader.ca
    Building an MCP Client in C#: Connecting, Discovering, and Calling Tools

    Build an MCP client in C# that connects over stdio or HTTP, discovers capabilities, calls tools, handles result content, and manages lifecycle safely. Link to article: https://www.devleader.ca/2026/07/21/building-an-mcp-client-in-c-connecting-discovering-and-calling-tools


    Read More
  • The GitHub Copilot CLI Permission Model: What It Can and Can't Touch

    calendar Jul 21, 2026 · devleader.ca
    The GitHub Copilot CLI Permission Model: What It Can and Can't Touch

    GitHub Copilot CLI permissions explained: trusted directories, allow and deny flags, sandboxing, hooks, URL access, secret redaction, and safe agent workflows. Link to article: https://www.devleader.ca/2026/07/21/the-github-copilot-cli-permission-model-what-it-can-and-cant-touch


    Read More
  • How to test agent experience changes without shipping them

    calendar Jul 21, 2026 · devblogs.microsoft.com
    How to test agent experience changes without shipping them

    You've built an eval. You've established a baseline and found the gaps. Now you have hypotheses about how to fix them: maybe a documentation rewrite, or a different CLI output format. The natural next step is to ship the change and measure again. Don't do that just yet. Link to article: …


    Read More
  • Microsoft Agent Framework for .NET (part 2): How to use IChatClient with Azure Foundry and Ollama in .NET

    calendar Jul 21, 2026 · code4it.dev
    Microsoft Agent Framework for .NET (part 2): How to use IChatClient with Azure Foundry and Ollama in .NET

    IChatClient is the core of Microsoft Agent Framework. Let’s see how to configure it with Azure Foundry and Ollama. Link to article: https://www.code4it.dev/blog/maf-ichatclient-azure-foundry-ollama/


    Read More
  • C++ Dependencies Without the Headache: vcpkg + Copilot CLI

    calendar Jul 20, 2026 · devblogs.microsoft.com
    C++ Dependencies Without the Headache: vcpkg + Copilot CLI

    C++ dependency setup and maintenance still slows down many teams. In my Pure Virtual C++ 2026 session, I show a terminal-first workflow that ends with a working CLI app that formats and prints programming quotes, built with CMake and Microsoft C++ (MSVC) Build Tools. All of this is powered by GitHub Copilot CLI, which …


    Read More
  • Announcing a New Visual Manifest Editor in the WinApp VS Code Extension

    calendar Jul 20, 2026 · devblogs.microsoft.com
    Announcing a New Visual Manifest Editor in the WinApp VS Code Extension

    The WinApp Link to article: https://devblogs.microsoft.com/ifdef-windows/announcing-a-new-visual-manifest-editor-in-the-winapp-vs-code-extension


    Read More
  • Custom OS installation now available on AWS DeepRacer devices

    calendar Jul 20, 2026 · aws.amazon.com/blogs/machine-learning
    Custom OS installation now available on AWS DeepRacer devices

    With the stock firmware and software, developers couldn't modify their AWS DeepRacer devices to use the latest operating systems. Now, developers can upgrade or install a custom operating system (OS) by using a newly released bootloader, which extends the life of these hardware devices. In this post, we introduce the …


    Read More
  • Build specialized agent workflows for your business with Amazon Quick and NVIDIA NeMo Agent Toolkit

    calendar Jul 20, 2026 · aws.amazon.com/blogs/machine-learning
    Build specialized agent workflows for your business with Amazon Quick and NVIDIA NeMo Agent Toolkit

    In this post, we show how Amazon Quick can serve as the business-user front door for specialized agent workflows. We use the NVIDIA NeMo Agent Toolkit to build a supply-chain risk example that helps a planner move from an Amazon Quick dashboard and knowledge context to a guided mitigation recommendation. Link to …


    Read More
  • T-SQL Hygiene: Introducing the Covering Index

    calendar Jul 20, 2026 · devblogs.microsoft.com
    T-SQL Hygiene: Introducing the Covering Index

    Often in applications, we write database queries. And often, the same query is executed again and again. To make queries against large tables faster, we can add an index. This is a general improvement for anyone accessing the table. However, there is a specially designed index called a covering index that can make …


    Read More
  • How Couchbase built a multi-model AI architecture for Capella iQ with Amazon Bedrock

    calendar Jul 20, 2026 · aws.amazon.com/blogs/machine-learning
    How Couchbase built a multi-model AI architecture for Capella iQ with Amazon Bedrock

    This post describes how Couchbase adopted Amazon Bedrock to power Capella iQ with Anthropic’s Claude family of models, the architectural decisions behind their multi-model approach, and the operational benefits realized in production. Link to article: …


    Read More
  • Evolving from legacy BI to agentic AI at Tradeshift with Amazon Quick

    calendar Jul 20, 2026 · aws.amazon.com/blogs/machine-learning
    Evolving from legacy BI to agentic AI at Tradeshift with Amazon Quick

    In this post, we describe how Tradeshift deployed Amazon Quick with agentic AI capabilities to replace our legacy BI tool, resulting in query response times up to 30 times faster, a 40 percent reduction in total cost of ownership, and turned embedded analytics into a product that generates revenue. Link to article: …


    Read More
  • Pure Virtual C++ 2026 Is Tomorrow and On-Demand Sessions Are Now Available

    calendar Jul 20, 2026 · devblogs.microsoft.com
    Pure Virtual C++ 2026 Is Tomorrow and On-Demand Sessions Are Now Available

    Pure Virtual Link to article: https://devblogs.microsoft.com/cppblog/pure-virtual-cpp-2026-is-tomorrow-and-on-demand-sessions-are-now-available


    Read More
  • AI agents, meet the Azure Cosmos DB vNext emulator

    calendar Jul 20, 2026 · devblogs.microsoft.com
    AI agents, meet the Azure Cosmos DB vNext emulator

    If you use the Azure Cosmos DB vNext emulator, you probably know the local development loop: start the emulator, connect to it, create some resources, load test data, run queries, and inspect the results. Each step is straightforward, but together they add setup work before you can test the application you are actually …


    Read More
  • Making an agile version of a Windows Runtime delegate in C++/WinRT, part 1

    calendar Jul 20, 2026 · devblogs.microsoft.com
    Making an agile version of a Windows Runtime delegate in C++/WinRT, part 1

    Suppose you have some C++/WinRT code that receives a delegate from an outside source, and you might invoke that delegate from a potentially different COM context. However, the original delegate may not be agile. How can you make an agile version of that delegate? The easy way is to wrap the delegate in an agile_ref …


    Read More
  • Coding Agent Horror Stories: The Agent That Deleted Production

    calendar Jul 20, 2026 · docker.com
    Coding Agent Horror Stories: The Agent That Deleted Production

    Learn how an AI coding agent caused a 13-hour outage and how Docker Sandboxes help reduce risk with scoped identities and isolated execution. Link to article: https://www.docker.com/blog/coding-agent-horror-stories-the-agent-that-deleted-production/


    Read More
  • Testing a Modular Monolith in C#: Unit and Integration Test Strategies

    calendar Jul 20, 2026 · devleader.ca
    Testing a Modular Monolith in C#: Unit and Integration Test Strategies

    Learn how to test a modular monolith in C# with unit and integration test strategies. Verify bounded context isolation, cross-module event flows, and module contracts in .NET. Link to article: https://www.devleader.ca/2026/07/20/testing-a-modular-monolith-in-c-unit-and-integration-test-strategies


    Read More
  • Escape Analysis in Go – Stack vs. Heap Allocations Explained

    calendar Jul 20, 2026 · blog.jetbrains.com
    Escape Analysis in Go – Stack vs. Heap Allocations Explained

    One of the design choices Google made when developing Go was to abstract memory management away from developers so they could focus on what really matters – writing code. Things like escape analysis and garbage collection are thus automatic, and the Go compiler works in almost mystical ways. That’s one of the best …


    Read More
  • Does “rtk” skill really cut agent tokens by 60–90%? We tested it

    calendar Jul 20, 2026 · blog.jetbrains.com
    Does “rtk” skill really cut agent tokens by 60–90%? We tested it

    Does “rtk” reduce Claude Code token usage? Part 2 of a series where we take public “token saving” add-ons for coding agents and run the same paired A/B benchmark against each of them. Part 1 was the caveman skill (advertised −65%, measured −8.5%). TL;DR: rtk advertised saving: 60–90%. Measured on real agent work: +7.6% …


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

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top