.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • 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
  • Safety and alignment in an era of long-horizon models

    calendar Jul 20, 2026 · openai.com/blog
    Safety and alignment in an era of long-horizon models

    OpenAI shares lessons from deploying long-running AI models, highlighting new safety risks, observed failures, and improved safeguards through iterative deployment. Link to article: https://openai.com/index/safety-alignment-long-horizon-models


    Read More
  • Hosting an MCP Server in ASP.NET Core: MapMcp, Stateless Mode, and Production Config

    calendar Jul 19, 2026 · devleader.ca
    Hosting an MCP Server in ASP.NET Core: MapMcp, Stateless Mode, and Production Config

    Host an MCP server in ASP.NET Core with MapMcp, stateless HTTP transport, CORS, AllowedHosts, health checks, and production configuration guidance today. Link to article: https://www.devleader.ca/2026/07/19/hosting-an-mcp-server-in-aspnet-core-mapmcp-stateless-mode-and-production-config


    Read More
  • GitHub Copilot CLI Agentic Workflows: Delegating Real Work to Your Terminal

    calendar Jul 19, 2026 · devleader.ca
    GitHub Copilot CLI Agentic Workflows: Delegating Real Work to Your Terminal

    GitHub Copilot CLI agentic workflows help developers plan, test, review, use /fleet, and delegate scoped feature work from the terminal with control today. Link to article: https://www.devleader.ca/2026/07/19/github-copilot-cli-agentic-workflows-delegating-real-work-to-your-terminal


    Read More
  • TCP vs. UDP in .NET: Speed, Reliability, and the Hidden Cost of Performance

    calendar Jul 19, 2026 · dotnettips.wordpress.com
    TCP vs. UDP in .NET: Speed, Reliability, and the Hidden Cost of Performance

    Choosing between TCP and UDP is crucial for data transport. TCP ensures reliability and ordered delivery, making it ideal for critical applications, while UDP prioritizes speed and low latency, suited for real-time scenarios. Link to article: …


    Read More
  • Testing Roslyn Analyzers with Microsoft.CodeAnalysis.Testing in C#

    calendar Jul 18, 2026 · devleader.ca
    Testing Roslyn Analyzers with Microsoft.CodeAnalysis.Testing in C#

    Master testing Roslyn analyzers using Microsoft.CodeAnalysis.Testing in C#. Learn NuGet setup, diagnostic markers, code fix testing, and CI integration. Link to article: https://www.devleader.ca/2026/07/18/testing-roslyn-analyzers-with-microsoftcodeanalysistesting-in-c


    Read More
  • DDD and Bounded Contexts in a Modular Monolith with C#: A Practical Guide

    calendar Jul 18, 2026 · devleader.ca
    DDD and Bounded Contexts in a Modular Monolith with C#: A Practical Guide

    Apply Domain-Driven Design bounded contexts to your modular monolith in C#. Learn how each module maps to a bounded context, with practical .NET code examples. Link to article: https://www.devleader.ca/2026/07/18/ddd-and-bounded-contexts-in-a-modular-monolith-with-c-a-practical-guide


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

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top