.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • C++ code editing tools for GitHub Copilot: now in Public Preview

    calendar Dec 16, 2025 · devblogs.microsoft.com
    C++ code editing tools for GitHub Copilot: now in Public Preview

    In November, we introduced C++ code editing tools for GitHub Copilot as a Private Preview, focusing on partnering with customers to tackle one of the common, taxing challenges for C++ development: refactoring at s Link to article: …


    Read More
  • Microsoft.Testing.Platform Now Fully Supported in Azure DevOps

    calendar Dec 16, 2025 · devblogs.microsoft.com
    Microsoft.Testing.Platform Now Fully Supported in Azure DevOps

    Earlier this year, we announced that all major .NET test frameworks now support Microsoft.Testing.Platform. The next logical step? Making sure it works seamlessly with your CI/CD pipelines. Today, we're announcing comprehensive Azure DevOps integration for Microsof Link to article: …


    Read More
  • Kotlin 2.3.0 Released

    calendar Dec 16, 2025 · blog.jetbrains.com
    Kotlin 2.3.0 Released

    The Kotlin 2.3.0 release is out! This version includes new language features, stable ones, and other features now enabled by default. This release also brings tooling updates, performance improvements for different platforms, and important fixes. Here are some additional highlights from this release: For the complete …


    Read More
  • Debugging, but Without the Drama (A Visual Studio 2026 Story)

    calendar Dec 16, 2025 · devblogs.microsoft.com
    Debugging, but Without the Drama (A Visual Studio 2026 Story)

    It starts the way these things always start. A red build. Link to article: https://devblogs.microsoft.com/visualstudio/visual-studio-2026-debugging-with-copilot


    Read More
  • Why is the Windows clipboard taking the scenic route when converting from CF_TEXT to CF_OEM­TEXT?

    calendar Dec 16, 2025 · devblogs.microsoft.com
    Why is the Windows clipboard taking the scenic route when converting from <CODE>CF_<WBR>TEXT</CODE> to <CODE>CF_<WBR>OEM­TEXT</CODE>?

    Our investigation of why the CF_OEM­TEXT clipboard format is not being created from CF_TEXT via Ansi­To­Oem led us to the realization that Link to article: https://devblogs.microsoft.com/oldnewthing/20251216-00/?p=111873


    Read More
  • Develop and deploy voice AI apps using Docker

    calendar Dec 16, 2025 · docker.com
    Develop and deploy voice AI apps using Docker

    Voice is the next frontier of conversational AI. It is the most natural modality for people to chat and interact with another intelligent being. However, the voice AI software stack is complex, with many moving parts. Docker has emerged as one of the most useful tools for AI agent deployment. In this article, we'll …


    Read More
  • Azure Boards integration with GitHub Copilot

    calendar Dec 16, 2025 · devblogs.microsoft.com
    Azure Boards integration with GitHub Copilot

    A few months ago we introduced the Azure Boards integration with GitHub Copilot in private preview. The goal was simple: allow teams to take a work item from Azure Boards and send it directly to GitHub Copilot so the coding agent Link to article: https://devblogs.microsoft.com/devops/github-copilot-for-azure-boards


    Read More
  • Docker Model Runner now included with the Universal Blue family

    calendar Dec 16, 2025 · docker.com
    Docker Model Runner now included with the Universal Blue family

    Running large language models (LLMs) and other generative AI models can be a complex, frustrating process of managing dependencies, drivers, and environments. At Docker, we believe this should be as simple as docker model run. That's why we built Docker Model Runner, and today, we’re thrilled to announce a new …


    Read More
  • Rust vs C++: competition or evolution in systems programming for 2026

    calendar Dec 16, 2025 · blog.jetbrains.com
    Rust vs C++: competition or evolution in systems programming for 2026

    C and C++ are the backbone of modern software. Operating systems, databases, game engines, and compilers all trace their roots to these languages. They give developers low-level control over memory, hardware, and performance. It’s a level of control that has defined decades of software development. However, the …


    Read More
  • Agents, Protocols, and Why We’re Not Playing Favorites

    calendar Dec 16, 2025 · blog.jetbrains.com
    Agents, Protocols, and Why We’re Not Playing Favorites

    Over the past few weeks, after we announced ACP protocol support, I’ve gotten lots of messages asking something along these lines: “Microsoft just launched AgentHQ for GitHub and VS Code. So, does this mean JetBrains will drop ACP? Will you only support your own thing now?” The quick answer: We’re not picking sides. …


    Read More
  • Creating a .NET CLR profiler using C# and NativeAOT with Silhouette

    calendar Dec 16, 2025 · andrewlock.net
    Creating a .NET CLR profiler using C# and NativeAOT with Silhouette

    In this post I look at how to create a simple .NET profiler. But instead of using C++, the profiler uses C# and NativeAOT with the Silhouette library Link to article: https://andrewlock.net/creating-a-dotnet-profiler-using-csharp-with-silhouette/


    Read More
  • Evaluating AI’s ability to perform scientific research tasks

    calendar Dec 16, 2025 · openai.com/blog
    Evaluating AI’s ability to perform scientific research tasks

    OpenAI introduces FrontierScience, a benchmark testing AI reasoning in physics, chemistry, and biology to measure progress toward real scientific research. Link to article: https://openai.com/index/frontierscience


    Read More
  • Measuring AI’s capability to accelerate biological research

    calendar Dec 16, 2025 · openai.com/blog
    Measuring AI’s capability to accelerate biological research

    OpenAI introduces a real-world evaluation framework to measure how AI can accelerate biological research in the wet lab. Using GPT-5 to optimize a molecular cloning protocol, the work explores both the promise and risks of AI-assisted experimentation. Link to article: …


    Read More
  • New in .NET 10 and C# 14: Optimizations in log aggregation jobs

    calendar Dec 16, 2025 · blog.elmah.io
    New in .NET 10 and C# 14: Optimizations in log aggregation jobs

    .NET 10 is officially out, along with C# 14. Microsoft has released .NET 10 as Long-Term Support (LTS) as a successor to .NET 8. Like every version, it is not just an update but brings something new to the table. In this series, we will explore which aspects of software Link to article: …


    Read More
  • Prompt Noise Is Killing Your AI Accuracy: How to Optimize Context for Grounded Output

    calendar Dec 16, 2025 · build5nines.com
    Prompt Noise Is Killing Your AI Accuracy: How to Optimize Context for Grounded Output

    The most common reason an AI system “hallucinates” in production isn’t that the model is dumb. It’s that we’re drowning it. In the last year, many teams have quietly adopted a pattern that looks sophisticated on paper: throw everything into the prompt. Policies, API schemas, examples, edge cases, brand voice, product …


    Read More
  • [C# Tip] How to create and access custom C# Attributes by using Reflection

    calendar Dec 16, 2025 · code4it.dev
    [C# Tip] How to create and access custom C# Attributes by using Reflection

    In C#, Attributes are a handy mechanism to attach metadata to your classes, methods, properties, etc. In this article, we will see how to create custom Attributes and access them at runtime using Reflection. Link to article: https://www.code4it.dev/csharptips/custom-csharp-attributes-reflection/


    Read More
  • The new ChatGPT Images is here

    calendar Dec 16, 2025 · openai.com/blog
    The new ChatGPT Images is here

    The new ChatGPT Images is powered by our flagship image generation model, delivering more precise edits, consistent details, and image generation up to 4× faster. The upgraded model is rolling out to all ChatGPT users today and is also available in the API as GPT-Image-1.5. Link to article: …


    Read More
  • Checkpointless training on Amazon SageMaker HyperPod: Production-scale training with faster fault recovery

    calendar Dec 15, 2025 · aws.amazon.com/blogs/machine-learning
    Checkpointless training on Amazon SageMaker HyperPod: Production-scale training with faster fault recovery

    In this post, we introduce checkpointless training on Amazon SageMaker HyperPod, a paradigm shift in model training that reduces the need for traditional checkpointing by enabling peer-to-peer state recovery. Results from production-scale validation show 80–93% reduction in recovery time (from 15–30 minutes or more to …


    Read More
  • Build declarative agents for Microsoft 365 Copilot with MCP

    calendar Dec 15, 2025 · devblogs.microsoft.com
    Build declarative agents for Microsoft 365 Copilot with MCP

    The Model Context Protocol (MCP) is revolutionizing AI by providing a universal integration standard for the external systems, unlocking unprecedented capabilities, transforming how AI models access and utilize real-time data. Link to article: …


    Read More
  • Adaptive infrastructure for foundation model training with elastic training on SageMaker HyperPod

    calendar Dec 15, 2025 · aws.amazon.com/blogs/machine-learning
    Adaptive infrastructure for foundation model training with elastic training on SageMaker HyperPod

    Amazon SageMaker HyperPod now supports elastic training, enabling your machine learning (ML) workloads to automatically scale based on resource availability. In this post, we demonstrate how elastic training helps you maximize GPU utilization, reduce costs, and accelerate model development through dynamic resource …


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

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top