.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • 5 Software Supply Chain Security Best Practices for Development Teams

    calendar Jun 8, 2026 · docker.com
    5 Software Supply Chain Security Best Practices for Development Teams

    Understanding software supply chain security is one thing. Putting it into practice across a real pipeline, with real deadlines and real constraints, is another. Most organizations recognize that their software supply chain is a growing attack surface, but translating that awareness into concrete, repeatable practices …


    Read More
  • .NET at Microsoft Build 2026: Must watch sessions

    calendar Jun 8, 2026 · devblogs.microsoft.com
    .NET at Microsoft Build 2026: Must watch sessions

    That's a wrap on Microsoft Build 2026! From union types in C# to agentic web apps and AI on the edge with .NET MAUI, this year's event showed how .NET 11 is built for the AI era. Whether you joined live or are catching up on demand, here are the .NET sessions worth your time. [alert type="tip" …


    Read More
  • Unlocking AI flexibility in Europe: A guide to cross-region inference for EU data processing and model access

    calendar Jun 8, 2026 · aws.amazon.com/blogs/machine-learning
    Unlocking AI flexibility in Europe: A guide to cross-region inference for EU data processing and model access

    With access to the latest generative AI models and high-performance accelerated compute in high global demand, AWS customers need tools to take advantage of model availability and capacity across multiple AWS Regions, while still meeting their security and privacy requirements. cross-Region Inference (CRIS) on Amazon …


    Read More
  • It’s safe to close your laptop now: Hosting coding agents on Amazon Bedrock AgentCore

    calendar Jun 8, 2026 · aws.amazon.com/blogs/machine-learning
    It’s safe to close your laptop now: Hosting coding agents on Amazon Bedrock AgentCore

    Amazon Bedrock AgentCore Runtime gives each agent session its own isolated microVM with a persistent workspace, secure tool access through Gateway, and built-in observability—so you can run Claude Code, Codex, Kiro, and Cursor in parallel without sharing secrets, ports, or filesystems. Close the lid, go to dinner, and …


    Read More
  • Better decisions at scale: How mathematical optimization delivers where intuition fails

    calendar Jun 8, 2026 · aws.amazon.com/blogs/machine-learning
    Better decisions at scale: How mathematical optimization delivers where intuition fails

    In this post, we introduce mathematical optimization, explain how it fits within the broader AI landscape, and showcase real-world success stories where the Innovation Center has partnered with customers to deliver concrete results. Link to article: …


    Read More
  • End-to-end encrypted ML inference with Amazon SageMaker AI and FHE

    calendar Jun 8, 2026 · aws.amazon.com/blogs/machine-learning
    End-to-end encrypted ML inference with Amazon SageMaker AI and FHE

    This blog has previously discussed FHE for ML inference in the post Enable fully homomorphic encryption with Amazon SageMaker endpoints for secure, real-time inferencing, but this post goes a little further. That previous post showed how to implement FHE-based inference 'from scratch' by hand-crafting a …


    Read More
  • Enterprise Live Migrations: Moving from Azure DevOps Repo to GitHub with minimal disruption

    calendar Jun 8, 2026 · devblogs.microsoft.com
    Enterprise Live Migrations: Moving from Azure DevOps Repo to GitHub with minimal disruption

    Over the last several years, we’ve encouraged customers to move their repositories from Azure Repos to GitHub to take advantage of the latest AI-powered and agentic development experiences. For many enterprise teams, however, migrating at scale comes with real constraints. Traditional approaches can require extended …


    Read More
  • Amazon Quick ARNs: Cross-account migration and namespace permissions

    calendar Jun 8, 2026 · aws.amazon.com/blogs/machine-learning
    Amazon Quick ARNs: Cross-account migration and namespace permissions

    In this post, we cover the structure of Amazon Quick ARNs and provide a practical mental model for working with them. By the end, you can look at an ARN and immediately understand what it means for your migration strategy, diagnose permission issues faster, and design multi-tenant architectures with confidence. Link to …


    Read More
  • Evaluate your Amazon Nova Sonic voice agent at scale, no microphone required

    calendar Jun 8, 2026 · aws.amazon.com/blogs/machine-learning
    Evaluate your Amazon Nova Sonic voice agent at scale, no microphone required

    In this post, we walk you through the Nova Sonic Test Harness, an open source framework that we built to solve both problems. It serves as a rapid iteration tool for tuning system prompts and tool configurations (run a conversation, see results, adjust, repeat) and as a comprehensive evaluation framework for validating …


    Read More
  • Rider 2026.2 EAP 5: Code Quality Checks for Your AI Agents, and More.

    calendar Jun 8, 2026 · blog.jetbrains.com
    Rider 2026.2 EAP 5: Code Quality Checks for Your AI Agents, and More.

    Rider 2026.2 EAP 5 is now available, bringing a faster startup flow with the new non-modal Welcome screen and quality-check hooks for AI agents. If you’re catching up on the 2026.2 EAP cycle, be sure to check out the blog posts we’ve already published about other updates unveiled so far, including WPF Hot Reload, the …


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

    calendar Jun 8, 2026 · devleader.ca
    How to Implement Mediator Pattern in C#: Step-by-Step Guide

    How to implement the mediator pattern in C# with step-by-step code examples, best practices, and common pitfalls for behavioral design patterns. Link to article: https://www.devleader.ca/2026/06/08/how-to-implement-mediator-pattern-in-c-stepbystep-guide


    Read More
  • New features and Roslyn analyzers for Meziantou.Framework.FullPath

    calendar Jun 8, 2026 · meziantou.net
    New features and Roslyn analyzers for Meziantou.Framework.FullPath

    A few years ago, I introduced , a library to ensure you always deal with full paths in your applications and provide common methods to manipulate them easily. Recently, I've added new features to the library, including new methods and a set of Roslyn analyzers to help you use the library correctly. The main idea of …


    Read More
  • ASP.NET Core background tasks with NCronJob and SignalR

    calendar Jun 8, 2026 · damienbod.com
    ASP.NET Core background tasks with NCronJob and SignalR

    I was recommended NCronJob for implementing a background worker in ASP.NET Core and so I decided to give it a try, read the docs and learn this. This NuGet package is open source and works great. I implemented two simple jobs, one concurrent and one not concurrent which sends messages via SignalR. Code: …


    Read More
  • The Management Trap in Software Engineering - Dev Leader Weekly 143

    calendar Jun 8, 2026 · devleader.ca
    The Management Trap in Software Engineering - Dev Leader Weekly 143

    Welcome to another issue of Dev Leader Weekly! In this issue, I dig into a Reddit thread about the management trap -- why engineering management is a fundamentally different job than being an IC, how I think about absorbing chaos so my team can stay focused, and what you actually need to understand before you take that …


    Read More
  • Introducing the OpenAI Economic Research Exchange

    calendar Jun 8, 2026 · openai.com/blog
    Introducing the OpenAI Economic Research Exchange

    OpenAI launches the Economic Research Exchange to study AI’s impact on jobs, productivity, and the economy. Applications are now open for selected research projects. Link to article: https://openai.com/index/economic-research-exchange


    Read More
  • ASP.NET Core Middleware: Building and Using the Request Pipeline

    calendar Jun 7, 2026 · devleader.ca
    ASP.NET Core Middleware: Building and Using the Request Pipeline

    Learn asp.net core middleware: how the request pipeline works, custom IMiddleware, correct middleware order, and real-world examples like correlation IDs in .NET 10. Link to article: https://www.devleader.ca/2026/06/07/aspnet-core-middleware-building-and-using-the-request-pipeline


    Read More
  • Iterator Pattern Best Practices in C#: Code Organization and Maintainability

    calendar Jun 7, 2026 · devleader.ca
    Iterator Pattern Best Practices in C#: Code Organization and Maintainability

    Explore iterator pattern best practices in C# including yield return patterns, lazy evaluation, disposal, thread safety, and performant custom iterators. Link to article: https://www.devleader.ca/2026/06/07/iterator-pattern-best-practices-in-c-code-organization-and-maintainability


    Read More
  • Boost Your .NET Projects: Future-Proofing Performance with Spargine’s Fast Methods

    calendar Jun 7, 2026 · dotnettips.wordpress.com
    Boost Your .NET Projects: Future-Proofing Performance with Spargine’s Fast Methods

    The book "Rock Your Code: Code & App Performance for Microsoft .NET" emphasizes the evolving nature of .NET performance. Spargine's Fast methods are designed to optimize code efficiency while allowing developers to maintain consistency in method usage. These methods adapt to platform improvements, …


    Read More
  • Model Validation in ASP.NET Core: Data Annotations and FluentValidation

    calendar Jun 6, 2026 · devleader.ca
    Model Validation in ASP.NET Core: Data Annotations and FluentValidation

    Learn asp.net core model validation with data annotations, custom attributes, IValidatableObject, and FluentValidation for robust, testable input handling. Link to article: https://www.devleader.ca/2026/06/06/model-validation-in-aspnet-core-data-annotations-and-fluentvalidation


    Read More
  • GitHub Copilot Has a Model Governance Gap Hiding in Plain Sight

    calendar Jun 6, 2026 · build5nines.com
    GitHub Copilot Has a Model Governance Gap Hiding in Plain Sight

    A developer opens GitHub Copilot Chat, sees a list of available models, and picks the one that sounds strongest. Maybe it is the largest model.… Link to article: https://build5nines.com/github-copilot-has-a-model-governance-gap-hiding-in-plain-sight/


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

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top