.NET Ramblings
open-menu closeme
Home
Videos
Feeds
About
Contribute
github linkedin
  • Memento Design Pattern in C#: Complete Guide with Examples

    calendar Jun 13, 2026 · devleader.ca
    Memento Design Pattern in C#: Complete Guide with Examples

    Master the memento design pattern in C# with code examples, undo/redo implementation, and best practices for state preservation. Link to article: https://www.devleader.ca/2026/06/13/memento-design-pattern-in-c-complete-guide-with-examples


    Read More
  • Building Dapr Workflows in .NET With Aspire

    calendar Jun 13, 2026 · milanjovanovic.tech
    Building Dapr Workflows in .NET With Aspire

    Long-running business processes are hard to get right. Dapr Workflow lets you write them as plain C# code that survives crashes and restarts, and Aspire makes the whole thing run with a single command. Here's how to wire the two together. Link to article: …


    Read More
  • Open Closed Principle C#: Extending Without Modifying

    calendar Jun 12, 2026 · devleader.ca
    Open Closed Principle C#: Extending Without Modifying

    Learn the open closed principle c# with real examples. Extend behavior without modifying existing code using Strategy pattern and .NET 10 features. Link to article: https://www.devleader.ca/2026/06/12/open-closed-principle-c-extending-without-modifying


    Read More
  • Building Supercharger: How Rocket Close optimized title operations with agentic AI

    calendar Jun 12, 2026 · aws.amazon.com/blogs/machine-learning
    Building Supercharger: How Rocket Close optimized title operations with agentic AI

    In this post, we explore how Rocket Close built a solution using Strands Agents, large language models (LLMs), Amazon Bedrock, Amazon Bedrock Knowledge Bases, and Model Context Protocol (MCP) tools. We cover solution features, the rationale for the technology stack, lessons learned, and the business impact at Rocket …


    Read More
  • GitHub Copilot modernization for C++ is out of preview

    calendar Jun 12, 2026 · devblogs.microsoft.com
    GitHub Copilot modernization for C++ is out of preview

    GitHub Copilot modernization for C++ is out of preview as of Visual Studio 2026 version 18.7. This agent, accessible by typing @Modernize in the Copilot Chat window, can be used to upgrade your projects to use a newer version of the Mic Link to article: …


    Read More
  • Build a meeting prep and follow-up assistant with Amazon Quick and Cisco Webex MCP servers

    calendar Jun 12, 2026 · aws.amazon.com/blogs/machine-learning
    Build a meeting prep and follow-up assistant with Amazon Quick and Cisco Webex MCP servers

    This post shows how to build a custom meeting prep and follow-up assistant using Amazon Quick and Cisco Webex MCP servers. From a single prompt, the agent finds an upcoming Webex meeting, reviews prior meeting summaries and transcripts, and pulls related Vidcast highlights and transcript context. It then searches Webex …


    Read More
  • From PDFs to insights: Architecting an intelligent document processing pipeline with AWS generative AI services

    calendar Jun 12, 2026 · aws.amazon.com/blogs/machine-learning
    From PDFs to insights: Architecting an intelligent document processing pipeline with AWS generative AI services

    This post outlines the development of a cost-effective and scalable intelligent document processing pipeline on AWS, powered by Amazon Bedrock and its features. BDA is a managed service within Amazon Bedrock that automates the extraction of insights from documents. We demonstrate how BDA extracts and analyzes document …


    Read More
  • Built from the inside out: How AWS Professional Services became a frontier team first

    calendar Jun 12, 2026 · aws.amazon.com/blogs/machine-learning
    Built from the inside out: How AWS Professional Services became a frontier team first

    AWS Professional Services (AWS ProServe) compressed engagement timelines from months to days, not by adding artificial intelligence (AI) tools to an existing process, but by fundamentally rebuilding how we deliver from the inside out. In this post, we share how AWS ProServe became a frontier team, the practices that …


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

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

    Mediator pattern best practices in C# for clean code organization, maintainability, and avoiding common pitfalls with behavioral design patterns. Link to article: https://www.devleader.ca/2026/06/12/mediator-pattern-best-practices-in-c-code-organization-and-maintainability


    Read More
  • dotInsights | June 2026

    calendar Jun 12, 2026 · blog.jetbrains.com
    dotInsights | June 2026

    Did you know? The var keyword isn’t a keyword! It’s one of several “contextual” keywords in C#, and it only has special meaning when used to declare a variable. Try defining a class called var and see what happens to the rest of your codebase… Welcome to dotInsights by JetBrains! This newsletter is the home […] Link to …


    Read More
  • New OpenAI Academy courses for the next era of work

    calendar Jun 12, 2026 · openai.com/blog
    New OpenAI Academy courses for the next era of work

    OpenAI introduces three Academy courses that help people build practical AI skills, create repeatable workflows, and apply agents in everyday work. Link to article: https://openai.com/index/academy-courses-applying-ai-at-work


    Read More
  • Inside JetPride: How JetBrains Employees Built an LGBTQIA+ Community

    calendar Jun 12, 2026 · blog.jetbrains.com
    Inside JetPride: How JetBrains Employees Built an LGBTQIA+ Community

    What makes a workplace feel welcoming? Sometimes it’s finding colleagues who share your interests. Sometimes it’s discovering people with similar experiences. Sometimes it’s knowing you can talk openly about your life, ask questions, share perspectives, and be yourself without giving it a second thought. JetPride, our …


    Read More
  • Orchestration Patterns for Multi-Agent Systems: Performance and Trade-offs

    calendar Jun 12, 2026 · devblogs.microsoft.com
    Orchestration Patterns for Multi-Agent Systems: Performance and Trade-offs

    Introduction Multi-agent chatbots in large retail organizations face a critical architecture challenge: how to evolve from a modular monolith to a microservices architecture that enables agent reuse across teams and use cases. This post shares lessons from Microsoft's Industry Solutions Engineering (ISE) partnersh Link …


    Read More
  • How Preply combines AI and human tutors to personalize learning

    calendar Jun 12, 2026 · openai.com/blog
    How Preply combines AI and human tutors to personalize learning

    Preply uses OpenAI to launch AI-generated lesson summaries, providing personalised feedback and language learning exercises. Link to article: https://openai.com/index/preply


    Read More
  • June Patches for Azure DevOps Server

    calendar Jun 11, 2026 · devblogs.microsoft.com
    June Patches for Azure DevOps Server

    We are releasing new patches for our self‑hosted product, Azure DevOps Server. We strongly recommend that all customers stay up to date with the latest, most secure version of Azure DevOps Server. The most recent release, Azure DevOps Link to article: …


    Read More
  • Single Responsibility Principle C#: One Class, One Reason to Change

    calendar Jun 11, 2026 · devleader.ca
    Single Responsibility Principle C#: One Class, One Reason to Change

    Learn the single responsibility principle c# with real before/after examples. Understand SRP, cohesion, coupling, and .NET 10 best practices. Link to article: https://www.devleader.ca/2026/06/11/single-responsibility-principle-c-one-class-one-reason-to-change


    Read More
  • Migrating EWS notifications to Microsoft Graph

    calendar Jun 11, 2026 · devblogs.microsoft.com
    Migrating EWS notifications to Microsoft Graph

    Migrating from the Exchange Web Services (EWS) notification framework, which supports push, pull, and streaming notification types, to the Microsoft Graph subscription model represents a transition toward a unified, stateless, and event-driven framework. This framework supports more than just Exchange data. Although …


    Read More
  • Extract Data with On-demand and Batch Pipelines Dynamically

    calendar Jun 11, 2026 · aws.amazon.com/blogs/machine-learning
    Extract Data with On-demand and Batch Pipelines Dynamically

    This post demonstrates an intelligent document processing pipeline that consists of both on-demand inference and batch inference options on Amazon Bedrock to enable the flexibility on the document processing time and cost. Link to article: …


    Read More
  • Some Reflections on JasperFx’s 3rd Anniversary

    calendar Jun 11, 2026 · jeremydmiller.com
    Some Reflections on JasperFx’s 3rd Anniversary

    I “officially” went solo with JasperFx Software in June of 2023 at the tender age of 49 because hopefully I’m a late bloomer. I’d of course been planning that specific move for quite some time and idly dreaming of being able to found my own company around my OSS passion projects for decades before that. … Continue …


    Read More
  • Your agent just scaffolded a project from 2020

    calendar Jun 11, 2026 · devblogs.microsoft.com
    Your agent just scaffolded a project from 2020

    Your agent ran a scaffold command. Project generated, dependencies resolved, no errors. Everything looks fine. Except it's based on the project structure from 2020, and neither you nor the agent noticed. How npx picks the right-but-wrong version When an agent scaffolds a project or runs a CLI tool, it often reaches for …


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

.NET Ramblings

Copyright  .NET RAMBLINGS. All Rights Reserved

to-top