SlimFaas: The slimest and simplest Function As A Service
SlimFaas is a Function As A Service that allows you to scale to 0 after a period of inactivity, supports synchronous and asynchronous HTTP calls, offers retry functionality, and a Mind Changer REST AP...
R3 - A New Modern Reimplementation of Reactive Extensions for C#
Recently, R3 was released as a new implementation of Reactive Extensions for C#. It is considered the third generation of Rx, with core parts provided as a library common to .NET platforms. The transi...
Welcome to PlatformPlatform
# 👋 Welcome to PlatformPlatform Drawing on our expertise building true enterprise-grade products with millions of daily users in highly regulated sectors like healthcare, finance, government, etc., w...
Introducing the .NET 8 runtime for AWS Lambda
AWS Lambda now supports .NET 8 as both a managed runtime and container base image. With this release, Lambda developers can benefit from .NET 8 features including API enhancements, improved Native Ahe...
Practical Microservice Development with Dapr
Practical Microservice Development with Dapr is a comprehensive guide that covers various aspects of developing microservices using Dapr, a portable, event-driven runtime that simplifies building micr...
Introducing ASP.NET Core metrics and Grafana dashboards in .NET 8
Metrics report diagnostics about your app. .NET 8 adds over a dozen useful metrics to ASP.NET Core, including HTTP request counts and duration, number of active HTTP requests, route matching results, ...
Our Vision for .NET 9
Welcome to .NET 9! We’re at the beginning of another annual release cycle, following the successful launch of .NET 8 a few months back. Our most important focus areas for .NET 9 are cloud-native and i...
Using default interface methods for performance gains in IHeaderDictionary
In this post, Andrew Lock discusses how default interface methods in C# 8 can be used to improve performance. He shows a pull request to ASP.NET Core that optimizes specific usages of the interface. D...
IAsyncEnumerable performance benefits | Damirs Corner
Asynchronous streams (i.e., the IAsyncEnumerable interface) were one of the new features in C# 8. However, it didnt get as much attention as some others. Even today, the feature is rarely used and not...
Tmds.ExecFunction
Tmds.ExecFunction is a library that makes it simple to execute a function in a separate process. This can be interesting for writing tests that require a separate process, or running some code with a ...
Test Driven Development with C# - from Padawan to Jedi - Scott Sauber - NDC Porto 2023

In this talk, Scott discusses test-driven development (TDD) with C, focusing on guiding net developers who may be new to TDD. He clarifies that although the talk assumes the audience hasnt seen TDD be...
Epic: Eventing Framework in .NET 9
This issue captures issues related to the eventing framework work area in .NET 9. Issues and categorizations are grouped under the Epic label. The milestone for this work is 9.0.0.
Current State of C# Platform Support in Godot 4.2
With the recent release of Godot 4.2, projects that use C# can now export to Android and iOS. Let’s take a look at the current platform support for C# projects and what to expect from future releases ...
fluxzy: A Fully Managed MITM Engine and CLI App
fluxzy is a fully managed and fully streamed MITM engine and a CLI app to intercept, record and alter HTTP/1.1, H2, websocket traffic over plain or secure channels. It provides core features such as i...
# Sharpify - A Collection of High Performance Language Extensions for C#
Sharpify is a collection of high performance language extensions for C# that provide various features and optimizations. It includes fully native AOT compatible utilities, discriminated union objects,...
Integration that uses Home Assistant Kafka integration for creating home automations in .NET
# ha-kafka-net Integration that uses Home Assistant Kafka integration for creating home automations in .NET It was created with the following goals: * Create Home Assistant automations in .NET * Expos...
An in-depth guide to Dapr workflow patterns in .NET
After covering Dapr workflow basics in the previous article, let’s take a look at the different application patterns that can be used with Dapr workflow and .NET. The patterns covered in this post are...
Rider 2023.3: AI Assistant, .NET 8 Support, C# 12 and F# 8 Features, Debugging Improvements and More
JetBrains has released Rider 2023.3, the latest version of their cross-platform .NET IDE. This release contains an AI Assistant, support for .NET 8 SDK and an extended list of C# 12 and F# 8 features....
Sqids .NET
Sqids (pronounced squids) is a small library that lets you generate YouTube-like IDs from numbers. It encodes numbers like 127 into strings like yc3, which you can then decode back into the original n...
Pipeline-oriented programming - Scott Wlaschin - NDC Porto 2023

Pipelines are discussed in this talk as an alternative to object-oriented programming. In pipeline-oriented programming, all arrows flow in the same direction, creating an input-output model. The data...