Stripe Connect Express with Blazor
In my previous post titled Create Stripe Webhooks Receiver I created a webhook and now I want to explore how…
All technologies, only pure source code
In my previous post titled Create Stripe Webhooks Receiver I created a webhook and now I want to explore how…
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.
Keep secrets out of your source code in Visual Studio. It is never a good idea to store secrets or passwords in your source code.
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.
.NET is the most loved platform! It’s won most loved platform 3 years in a row in the annual StackOverflow developer survey
Getting started with C# and Blazor explains how this new Microsoft technology is working and the basic information to understand Blazor
Adding validation using Fluent Validation is a method to decoupled rules and models and also write multiple rule-sets against the same models
We will be on creating the Infrastructure project following clean architecture. We are going to bring in another layer: the infrastructure
Factory method in C# Core offering great flexibility in creating different objects. The Abstract class may provide a default object
How to connect a web application to PowerBI to give users a unique experience across a website using the PowerBI APIs
Test Driven Development (TDD) helps you to validate your code but something you need to check some result from a json file. Here my solution
Adding Swagger to your Web API project does not replace ASP.NET Web API help pages. Or maybe yes? Here how to implement Swagger in your apps
Beat challenge 1 (download the game, change the code) here. Then beat challenge 2. First five to beat challenge 3…
Today marks the 15th anniversary since .NET debuted to the world. On February 13th, 2002, the first version of .NET…
Recently at Connect(), Microsoft made a slew of new announcements. First, the public availability of Visual Studio 2017 Release Candidate….
I recently needed to to implement a shortest-path algorithm (to identify preferred domain controllers using site link costs) and I…
public class Size { public string Name { get; set; } public int Height { get; set; } public int…
In my previous post I spoke about key layers of distributed applications. Now we will go through the most crucial…
Every application that is going to be used by end users should be designed appropriately as users are expecting to…
Often you copy from a site some code but it has line numbers and you have to spend some times…
Some people asked me the different between those two following code: Code 1 try { … } catch (Exception ex)…
Very often I found this problem and now I got a solution! I’ve compared some methods and I was decided…
I found a simple code to know the execution time of a method. First of all you have to import…
Implement the inversion of control pattern is linked with the Dependency Injection Principle states. Here we analyse a simple implementation