Create Stripe webhooks receiver
I create a Stripe webhooks receiver for ASP.NET Core and Blazor. This is the first post of 4 where I…
All technologies, only pure source code
.NET (dotnet) is a developer platform made up of tools, programming languages, and libraries for building many different types of applications.
So, there are various implementations of .NET (dotnet). Each implementation allows .NET code to execute in different places—Linux, macOS, Windows, iOS, Android, and many more. This framework has two main versions:
Then, Xamarin/Mono is a .NET (dotnet) implementation for running apps on all the major mobile operating systems, including iOS and Android.
The .NET Standard is a formal specification of the APIs that are common across .NET implementations. This allows the same code and libraries to run on different implementations.
Therefore, the two major components of .NET (dotnet) Framework are the Common Language Runtime and the .NET Framework Class Library.
Summarize, .NET (dotnet) applications are written in the C#, F#, or Visual Basic programming language. Code is compiled into a language-agnostic Common Intermediate Language (CIL). Compiled code is stored in assemblies—files with a .dll or .exe file extension.
At the end, when an app runs, the CLR takes the assembly and uses a just-in-time compiler (JIT) to turn it into machine code that can execute on the specific architecture of the computer it is running on.
I create a Stripe webhooks receiver for ASP.NET Core and Blazor. This is the first post of 4 where I…
Keep secrets out of your source code in Visual Studio. It is never a good idea to store secrets or…
More often than not, I try to have an enum but for strings: in this post, I show you how…
Do you have to display a lot of tabs in your page, but the look and feel is no what…
I show you how to create form dynamically with Blazor reading the definition of the form from an API or…
How manipulating CSV files in the internet era? Comma Separated Files (CSV) are text files that contain multiple records with…
I will show how to evaluate Postfix expression for your interviews. What is a Postfix? How to write a simple…
In this post I show you how to use System.Text.Json and how to implement a converter for polymorphic classes.
I show you how to add SQLite to the MAUI application in order to have a small database in your…
I show how to implement drag and drop with Blazor because drag and drop has become a popular interface solution in…
In this post I show how to use biometric authentication in MAUI in your applications for iOS and Android and…
This is a quick announcement about a repository I have just started about Agile methodology handbook available on GitHub Pages
I introduce you my new Guided Tours #Blazor component to help your users to understand the UI of your application
I introduce you my new Clippy Blazor component for Blazor WebAssembly and Blazor Server. The component is built with .NET6.
.NET is the most loved platform! It’s won most loved platform 3 years in a row in the annual StackOverflow…
The title ”Call API Management from Blazor” is not explain fully what I’m going to...
I finally complete the first implementation of my Blazor component for ChartJS that helps you to create beautiful graphs
It is time to start with MAUI. With the Release Candidate from yesterday we can update Visual Studio 2022 Preview…
The exciting news in April for mobile app development is that the release of .NET MAUI Release Candidate (RC) is…
In this new post, I like to explain how to add security headers to Blazor WebAssembly to follow the recommendations…
In this new post, I'll show you how to add security header to our website to be ready for a…
This post is about implementing handling file uploads in OpenAPI with ASP.NET Core. Open API is one way to document…
I show a simple way for Testing APIs with RestClient in Visual Studio Code. RestClient is a simple extension for…
In this post, I show you how to remote debug live content on an Android device from your Windows, Mac,…
In this post, I talk about user-agent and I'm going to create a browser detect component for Blazor WebAssembly and Blazor Server with…