
Write a ChatGPT client
Write a ChatGPT client in C# using the OpenAI API: walkthrough the process of creating human-like responses
Write a ChatGPT client in C# using the OpenAI API: walkthrough the process of creating human-like responses
bUnit is a testing library for Blazor Components. Its goal is to make it easy to write comprehensive, stable unit tests
In my previous post titled Create Stripe Webhooks Receiver I created a webhook and now I want to explore how to use Stripe Connect Express with Blazor. What is Stripe Connect? Stripe Connect allows you to develop marketplace and platform applications that can accept money and pay out to connected Stripe accounts. For example, a…
I create a Stripe webhooks receiver for ASP.NET Core and Blazor. This is the first post of 4 where I show the full implementation.
Do you have to display a lot of tabs in your page, but the look and feel is no what you want. Here you have a ScrollTabs component for Blazor
How manipulating CSV files in the internet era? Comma Separated Files (CSV) are text files that contain multiple records with more elements
In this post I show you how to use System.Text.Json and how to implement a converter for polymorphic classes.
In this new post, I give you my code for a simple XML minifier in C#. I know I always have strange thought but I’m a developer
From now on, we can create minimal APIs in NET6 that allows us to write in few lines of code powerful APIs. I collect all my understanding
Uploading files in ASP.NET Core is largely the same as standard full framework MVC but now we can stream large files. Here I explain how
Azure Pipelines Error NETSDK1045: The current .NET SDK does not support targeting .NET 6.0. How to fix this error in pipeline on Azure DevOps
I’m going to explain how using biometric identification in Xamarin Forms to simplify authentication before executing certain important actions
In this new short post, I’ll show you how to create a universal PredicateBuilder for Expression in C# to merge 2 or more expressions with Linq
In this new post, I explain how to configure IdentityServer for Xamarin Forms to integrate Web Authenticator using Xamarin Essentials
Welcome to Working with Blazor’s component model” post! In this new post I’ll build a simple project in Blazor and explain the basic Blazor components and interactions. Also, the source code of the project I’m going to create in this post is available on GitHub. Here the posts I wrote about Blazor that help you…
Setting up a Blazor WebAssembly application creates a new solution for a simple project to explore components and interactions with Blazor
Getting started with C# and Blazor explains how this new Microsoft technology is working and the basic information to understand Blazor
In this post will be on improving on the application’s behaviour following clean architecture handling errors, adding logging, authenticating users
I want to show you how adding an UI built in Blazor using the API we have created in the other posts in a real application
In testing the application code I’m going to be showing you how we can effectively test the different parts we’ve created in the so far
Adding an API using ASP.NET Core is the subject of this new post related to explain how to implement a project in a clean architecture
I want to explain how architecting ASP.NET Core applications for enterprise projects based on clean architecture principles
I’m going to explain how setting up the application for ASP.NET Core with clean architecture from a blank project to complete solution
Introducing CQRS (Command and Query Responsibility Segregation) for a clean architecture project in ASP.NET Core. A brief guide with source code
Adding validation using Fluent Validation is a method to decoupled rules and models and also write multiple rule-sets against the same models