.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • The Polyglot tax – Part 4

    calendar Apr 21, 2026 · devblogs.microsoft.com
    The Polyglot tax – Part 4

    The Agent-Ready Database: Security, Backup, and MCP Part 4 of 4 – The Multi-Model Database Series This is the final post in a four-part series on multi-model databases in SQL Server 2025 and Azure SQL - exploring how the optimizer, storage engine, and security layer treat each data model as a first-class ci Link to …


    Read More
  • .NET 10.0.7 Out-of-Band Security Update

    calendar Apr 21, 2026 · devblogs.microsoft.com
    .NET 10.0.7 Out-of-Band Security Update

    We are releasing .NET 10.0.7 as an out-of-band (OOB) update to address a security issue introduced in Microsoft.AspNetCore.DataProtection. Security update details This release includes a fix for Link to article: https://devblogs.microsoft.com/dotnet/dotnet-10-0-7-oob-security-update


    Read More
  • Announcing TypeScript 7.0 Beta

    calendar Apr 21, 2026 · devblogs.microsoft.com
    Announcing TypeScript 7.0 Beta

    Today we are absolutely thrilled to announce the release of TypeScript 7.0 Beta! If you haven't been following TypeScript 7.0's development, this release is significant in that it is built on a completely new foundation. Over the past year, we have been porting the existing TypeScript codebase from TypeScript (as a …


    Read More
  • I Wasted 68 Minutes a Day Re-Explaining My Code. Then I Built auto-memory.

    calendar Apr 21, 2026 · devblogs.microsoft.com
    I Wasted 68 Minutes a Day Re-Explaining My Code. Then I Built auto-memory.

    ~1,900 lines of Python. Zero dependencies. Saves you an hour a day. GitHub → · pip install auto-memory Now give Copilot CLI enhanced context recall. Point it at Link to article: https://devblogs.microsoft.com/all-things-azure/i-wasted-68-minutes-a-day-re-explaining-my-code-then-i-built-auto-memory


    Read More
  • EF Core is Better with Wolverine

    calendar Apr 21, 2026 · jeremydmiller.com
    EF Core is Better with Wolverine

    TL;DR: Wolverine has a pretty good development and production time story for developers using EF Core and that is constantly being improved. Wolverine was explicitly restarted 3-4 years back specifically to combine with Marten as a complete end to end solution for Event Sourcing and CQRS with asynchronous messaging …


    Read More
  • General Availability: Dynamic Data Masking for Azure Cosmos DB

    calendar Apr 21, 2026 · devblogs.microsoft.com
    General Availability: Dynamic Data Masking for Azure Cosmos DB

    Protecting sensitive data is a foundational requirement for modern applications. As organizations scale their use of Azure Cosmos DB across teams, environments, and workloads, controlling who can see sensitive information becomes increasingly important. Today, we are excited to announce the general availability of …


    Read More
  • Aspire 13.2: Bun Support and Container Enhancements

    calendar Apr 21, 2026 · devblogs.microsoft.com
    Aspire 13.2: Bun Support and Container Enhancements

    If you've been following the JavaScript story in Aspire, 13.2 is the kind of release you want to see. Focused, deliberate, and packed with improvements that make a real difference. Bun support lands for Vite apps. Yarn gets more reliable. Container publishing becom Link to article: …


    Read More
  • End-to-end lineage with DVC and Amazon SageMaker AI MLflow apps

    calendar Apr 21, 2026 · aws.amazon.com/blogs/machine-learning
    End-to-end lineage with DVC and Amazon SageMaker AI MLflow apps

    In this post, we show how to combine DVC (Data Version Control), Amazon SageMaker AI, and Amazon SageMaker AI MLflow Apps to build end-to-end ML model lineage. We walk through two deployable patterns — dataset-level lineage and record-level lineage — that you can run in your own AWS account using the companion …


    Read More
  • Incremental Highlighting for Scala

    calendar Apr 21, 2026 · blog.jetbrains.com
    Incremental Highlighting for Scala

    If an error is detected in a file but no one sees it, is it really highlighted? This is a tale about why highlighting only what’s visible is both the strangest and the most reasonable thing to do – and how you can benefit from it. (Enable Settings | Scala | Editor | Highlighting Mode […] Link to article: …


    Read More
  • Azure DevOps MCP Server April Update

    calendar Apr 21, 2026 · devblogs.microsoft.com
    Azure DevOps MCP Server April Update

    This update brings a set of improvements and changes across both local and remote Azure DevOps MCP Servers. Here’s a summary of what’s changed. Query work items with WIQL We’ve introduced a new wit_query_by_wiql tool that enables users to construct and run work item WIQL queries. For our remote M Link to article: …


    Read More
  • Sure, xor'ing a register with itself is the idiom for zeroing it out, but why not sub?

    calendar Apr 21, 2026 · devblogs.microsoft.com
    Sure, xor'ing a register with itself is the idiom for zeroing it out, but why not sub?

    Matt Godbolt, probably best known for being the proprietor of Compiler Explorer, wrote a brief article on why x86 compilers love the xor eax, eax instruction. Link to article: https://devblogs.microsoft.com/oldnewthing/20260421-00/?p=112247


    Read More
  • Getting Started with Agentic DevOps – Part 1: Foundations

    calendar Apr 21, 2026 · devblogs.microsoft.com
    Getting Started with Agentic DevOps – Part 1: Foundations

    This post is the first in a 3-part series: Foundations (this post) Start shipping (context engineering, MCP servers, orchestration) App modernization (Java, .NET, PHP, microservices) Bookmark this post for quick reference as you start exploring Agentic DevOps. It will be updated as the 3 parts Link to article: …


    Read More
  • Kotlin Professional Certificate by JetBrains – Now on LinkedIn Learning

    calendar Apr 21, 2026 · blog.jetbrains.com
    Kotlin Professional Certificate by JetBrains – Now on LinkedIn Learning

    JetBrains has partnered with LinkedIn Learning to offer the Kotlin Professional Certificate. This is a structured learning path that covers the full scope of modern software development – from Kotlin essentials all the way to building full-stack, multiplatform applications for mobile, desktop, web, and backend …


    Read More
  • How to Implement State Pattern in C#: Step-by-Step Guide

    calendar Apr 21, 2026 · devleader.ca
    How to Implement State Pattern in C#: Step-by-Step Guide

    Learn how to implement state pattern in C# with a step-by-step guide covering state interfaces, concrete states, context classes, and transition logic. Link to article: https://www.devleader.ca/2026/04/21/how-to-implement-state-pattern-in-c-stepbystep-guide


    Read More
  • Removing byte[] allocations in .NET Framework using ReadOnlySpan

    calendar Apr 21, 2026 · andrewlock.net
    Removing byte[] allocations in .NET Framework using ReadOnlySpan<T>

    In this post I describe how to remove static byte[] allocations, even on .NET Framework, by using Span, look at the associated IL, and discuss the risks Link to article: https://andrewlock.net/removingbyte-array-allocations-in-dotnet-framework-using-readonlyspan-t/


    Read More
  • 12 practices for optimizing PostgreSQL queries for large datasets

    calendar Apr 21, 2026 · blog.elmah.io
    12 practices for optimizing PostgreSQL queries for large datasets

    A database is the root of most applications. Anything displayed or any operations performed often rely on the database. So, to build a loyal client base, you have to think in terms of a database. In today's post, I will go through some key strategies you can apply Link to article: …


    Read More
  • Scaling Codex to enterprises worldwide

    calendar Apr 21, 2026 · openai.com/blog
    Scaling Codex to enterprises worldwide

    OpenAI launches Codex Labs, partners with with Accenture, PwC, Infosys, and others to help enterprises deploy and scale Codex across the software development lifecycle, and hits 4M Codex WAU. Link to article: https://openai.com/index/scaling-codex-to-enterprises-worldwide


    Read More
  • Busy Plugin Developers Newsletter – Q1 2026

    calendar Apr 20, 2026 · blog.jetbrains.com
    Busy Plugin Developers Newsletter – Q1 2026

    Your quarterly dose of plugin dev news, tools, and tips from JetBrains. 🧩 Marketplace Updates Updated Approval Guidelines: New Technical Requirement We’ve added a new clause to the Plugin Approval Criteria, under Section 2.2: c. The Plugin must not modify, hide, intercept, or otherwise interfere with the functionality …


    Read More
  • C# String to Byte Array: UTF-8, Encoding, and Span Conversions

    calendar Apr 20, 2026 · devleader.ca
    C# String to Byte Array: UTF-8, Encoding, and Span Conversions

    Learn how to convert a C# string to byte array using UTF-8 encoding, Encoding class, Span, and .NET 7 u8 literals with performance-focused code examples. Link to article: https://www.devleader.ca/2026/04/20/c-string-to-byte-array-utf8-encoding-and-span-conversions


    Read More
  • Writing Node.js addons with .NET Native AOT

    calendar Apr 20, 2026 · devblogs.microsoft.com
    Writing Node.js addons with .NET Native AOT

    C# Dev Kit is a VS Code extension. Like all VS Code extensions, its front end is TypeScript running in Node.js. For certain platform-specific tasks, such as reading the Windows Registry, we've historically used native Node.js addons written in C++, which Link to article: …


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

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top