.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • DirectX Graphics Samples Updated to Agility SDK + Enhanced Barriers examples

    calendar Dec 2, 2025 · devblogs.microsoft.com
    DirectX Graphics Samples Updated to Agility SDK + Enhanced Barriers examples

    We’re excited to share all DirectX Graphics Samples have been updated to use the latest DirectX 12 Agility SDK. What’s New: Agility SDK Integration: All samples now leverage the latest Agility SDK for improved compatibility and faster adoption of new DirectX capabilities. Enhanced Barrie Link to article: …


    Read More
  • Securing Sensitive Mobile Operations with Device-Bound Request Signing

    calendar Dec 2, 2025 · devblogs.microsoft.com
    Securing Sensitive Mobile Operations with Device-Bound Request Signing

    Mobile security goes beyond verifying user identity. If an attacker steals a valid token, how will your backend distinguish a legitimate request from one reproduced in an emulator or cloned environment? This is a gap in traditional authentication flows when applied to the mobile environment. By linking each request to …


    Read More
  • Progress on TypeScript 7 - December 2025

    calendar Dec 2, 2025 · devblogs.microsoft.com
    Progress on TypeScript 7 - December 2025

    Earlier this year, the TypeScript team announced that we've been porting the compiler and language service to native code to take advantage of better raw performance, memory usage, and parallelism. This effort (codenamed "Project Corsa", and soon "TypeScript 7.0") Link to article: …


    Read More
  • Use cd - in Powershell 7 to Return to Previous Directory

    calendar Dec 2, 2025 · ardalis.com/blog
    Use cd - in Powershell 7 to Return to Previous Directory

    Introduction A command that many shells have had forever and that PowerShell has had for a long time as well is ‘cd -’ which means “change directory to previous folder”. This means you could do something like this: 1 2 3 4 5 6 cd c:\dev c:\dev cd c:\temp c:\temp cd - c:\dev This is quite handy in many situations. In …


    Read More
  • Grok Models Come to the AI Chat in JetBrains IDEs

    calendar Dec 2, 2025 · blog.jetbrains.com
    Grok Models Come to the AI Chat in JetBrains IDEs

    We’re expanding our AI offering with xAI’s Grok family of LLMs: Grok 4, Grok 4.1 Fast, Grok 4.1 Fast (Non-Reasoning), and Grok Code Fast 1. With the addition of these models in the AI chat across all JetBrains IDEs, you now have even more flexibility to choose the model that best fits your workflow. How […] Link to …


    Read More
  • Tata Neu delivers personalized shopping experiences for millions of users with Azure DocumentDB

    calendar Dec 2, 2025 · devblogs.microsoft.com
    Tata Neu delivers personalized shopping experiences for millions of users with Azure DocumentDB

    With Azure DocumentDB, Tata Neu delivers seamless authentication for millions of users, accelerates credit card onboarding across partners, unifies loyalty programs for hundreds of millions of members, and powers AI-driven support experiences across more than 60 brands. Link to article: …


    Read More
  • Profiler Agent - Delegate the analysis, not the performance

    calendar Dec 2, 2025 · devblogs.microsoft.com
    Profiler Agent - Delegate the analysis, not the performance

    In Visual Studio 2026 we introduced Copilot Profiler Agent, a new AI-powered assistant that helps Link to article: https://devblogs.microsoft.com/visualstudio/delegate-the-analysis-not-the-performance


    Read More
  • Building AI agents shouldn’t be hard. According to theCUBE Research, Docker makes it easy

    calendar Dec 2, 2025 · docker.com
    Building AI agents shouldn’t be hard. According to theCUBE Research, Docker makes it easy

    For most developers, getting started with AI is still too complicated. Different models, tools, and platforms don’t always play nicely together. But with Docker, that’s changing fast. Docker is emerging as essential infrastructure for standardized, portable, and scalable AI environments. By bringing composability, …


    Read More
  • Microspeak: Big rocks

    calendar Dec 2, 2025 · devblogs.microsoft.com
    Microspeak: Big rocks

    Recall that Microspeak is not merely for jargon exclusive to Microsoft, but it's jargon that you need to know to survive at Microsoft. The term big rocks was introduced by Stephen Covey in the book The Seven Habits of Highly Effective People, which I suspect is very popular among senior executives, because senior execu …


    Read More
  • DataGrip 2025.3: Migration From Consoles to Query Files, Connection to Cloud Providers, Introspection Levels for Amazon Redshift, and More!

    calendar Dec 2, 2025 · blog.jetbrains.com
    DataGrip 2025.3: Migration From Consoles to Query Files, Connection to Cloud Providers, Introspection Levels for Amazon Redshift, and More!

    DataGrip 2025.3, the final major update of the year, is here! Let’s take a look at what it has to offer. Download DataGrip 2025.3 Migration from query consoles to query files Previously, when referring to the SQL files that are attached to a data source by default, we used the term query console, and their […] Link to …


    Read More
  • dotInsights | December 2025

    calendar Dec 2, 2025 · blog.jetbrains.com
    dotInsights | December 2025

    Did you know? Calling GC.Collect() explicitly forces the garbage collector to run and reclaim memory from unreachable objects. However, it’s generally discouraged to use this method in most applications because the garbage collector is highly optimized to run automatically. Forcing it can lead to performance issues by …


    Read More
  • Creating a custom MSBuild SDK to reduce boilerplate in .NET projects

    calendar Dec 2, 2025 · meziantou.net
    Creating a custom MSBuild SDK to reduce boilerplate in .NET projects

    This blog post is part of The C# Advent Calendar 2025, a series of 50 posts about C#. Be sure to check out the rest of the blog posts in the calendar! Over the years, I've relied on Meziantou.DotNet.CodingStandard, a NuGet package, to establish a consistent baseline across all my .NET projects. This approach includes …


    Read More
  • How to Achieve Significant Build Performance Gains With TeamCity

    calendar Dec 2, 2025 · blog.jetbrains.com
    How to Achieve Significant Build Performance Gains With TeamCity

    This article is brought to you by Mdu Sibisi, draft.dev. Long build times interfere with developer momentum, disrupt flow states, and negatively impact productivity. While seemingly minor gaps in work rate may appear negligible in the moment, they quickly accumulate into significant increases in release cycle times and …


    Read More
  • Recent updates to NetEscapades.EnumGenerators: [EnumMember] support, analyzers, and bug fixes

    calendar Dec 2, 2025 · andrewlock.net
    Recent updates to NetEscapades.EnumGenerators: [EnumMember] support, analyzers, and bug fixes

    In this post I describe some recent changes to the NetEscapades.EnumGenerators source generator, including support for [EnumMember] and new analyzers Link to article: https://andrewlock.net/recent-updates-to-netescapaades-enumgenerators/


    Read More
  • Mastering owned entities in EF Core: Cleaner complex types

    calendar Dec 2, 2025 · blog.elmah.io
    Mastering owned entities in EF Core: Cleaner complex types

    Not all data in your application should live as a standalone table with its own ID and lifecycle. Sometimes you need a tightly coupled dependent object that exists alongside its parent, like a movie's budget, a survey's questions, or a customer's address. If you Link to article: …


    Read More
  • AppendSelected parameter

    calendar Dec 2, 2025 · devblogs.microsoft.com
    AppendSelected parameter

    Background The Property parameter introd Link to article: https://devblogs.microsoft.com/entrapowershell/appendselected-parameter


    Read More
  • Claude Code + Microsoft Foundry: Enterprise AI Coding Agent Setup

    calendar Dec 2, 2025 · devblogs.microsoft.com
    Claude Code + Microsoft Foundry: Enterprise AI Coding Agent Setup

    This guide covers setting up Claude Code CLI and VS Code extension with Microsoft Foundry, configuring CLAUDE.md for project context, integrating Spec Kit for structured development, and running Claude Code in GitHub Actions. Link to article: …


    Read More
  • Domain-Driven Design Misconceptions

    calendar Dec 1, 2025 · codeopinion.com
    Domain-Driven Design Misconceptions

    Domain-Driven Design misconceptions often come from treating DDD like a checklist of patterns. Have you ever looked into Domain-Driven Design and thought, “Wow, this is totally overkill”? Well, you’re not alone. And I kind of agree, but not for the reasons you might think. I say you’re not alone because of this meme I …


    Read More
  • Data API builder’s "request-body-strict" Simplifies Client Code

    calendar Dec 1, 2025 · devblogs.microsoft.com
    Data API builder’s "request-body-strict" Simplifies Client Code

    Data API builder (DAB) provides REST and GraphQL endpoints over SQL Server, Azure Cosmos DB, PostgreSQL, MySQL, and SQL Data Warehouse. Link to article: https://devblogs.microsoft.com/azure-sql/data-api-builder-request-body-strict


    Read More
  • Cross-Platform Age Verification in .NET MAUI Applications

    calendar Dec 1, 2025 · devblogs.microsoft.com
    Cross-Platform Age Verification in .NET MAUI Applications

    If you're building apps that need to comply with upcoming age verification requirements in Texas (January 1, 2026), Utah (May 7, 2026), or Louisiana (July 1, 2026), you might be wondering how to handle age verification across Android, iOS, and Windows. The good news? Each platform provides its own age verification …


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

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top