This World Map component for Blazor WebAssembly and Blazor Server creates an interactive map of the world or specific region and shows your data
Simple XML minifier in C#
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
SVG Icons and flags for Blazor
SVG Icons and flags for Blazor is a new library that contains tons of icons in SVG format and also all the world flags for each country
Add Code Snippet in Razor pages
In this new post, I show you how to add code snippet in Razor pages for Blazor WebAssembly and Blazor Server using highlight.js
Dynamically add JavaScript from Blazor components
In this new post, I show you the code to dynamically add JavaScript from a Blazor components coming from the component itself or another URL
Minimal APIs in NET6
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 ASPNET Core
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
Google Analytics illegal in Austria
Google Analytics illegal in Austria: Austria has ruled that Austrian website providers using Google Analytics are in violation of the GDPR.
Microsoft to acquire Activision Blizzard
Microsoft is acquiring Activision Blizzard, the publisher of Call of Duty, World of Warcraft, and Diablo. The deal will value at $68.7billion
Xbox One consoles discontinued
Microsoft has officially confirmed that the manufacturing of all Xbox One consoles has ceased in favour of Xbox Series X and Xbox Series S
Copy to Clipboard component for Blazor
I’ll create a Copy to Clipboard component for Blazor. I use the button to notify if the copy is successful. So, I return reset the button
Markdown Editor component for Blazor
I have created a new Markdown Editor component flexible and rich of functionalities for Blazor WebAssembly and Blazor Server with .NET6.
Upload/Download Files using HttpClient
In this new post, I show you how to upload/download files using HttpClient in C# and .NET Core. Creating a new version of the Markdown Editor component for Blazor, I face some issues with the file upload. So, I was working to find a solution and now I can tell you how to do it. First, I will take a look at how to send multipart MIME data to a Web API using HttpClient. We will create two applications to demonstrate the data transfer between the client side and the server side. The server-side…
Handling exceptions globally with NET6
In this new post, I like to show how handling exceptions globally with .NET6 adding a single class using a generic exception middleware
Start with Unity 2021
In this new post I explain how to start with Unity 2021 and the basic interaction with the Unity Editor, navigate the functions of the editor
Bill Gates predicts the future in 1994
Microsoft released Windows 3! Picture of 19yo Bill Gates and 22yo Paul Allen from February of 1975, show to the world BASIC, the language
Install MAUI with Visual Studio 2022 (Preview)
In this new post I show you how to install MAUI with Visual Studio 2022 (Preview) after the official release of Visual Studio 2022.
Android debugging with Windows Subsystem
How to install Windows Subsystem for Android and debugging a new MAUI app with Android debugging with Windows Subsystem (outside US version) No emulator required!
Code Snippet component for Blazor
Today I want to show you how to create a Code Snipper component for Blazor using highlight.js that is available for 191 different languages
Configure RStudio in Azure with Ubuntu
I like to explain how to configure RStudio in Azure with an Ubuntu virtual machine running a script at the startup. Quick and easy.
Azure Pipelines Error NETSDK1045: The current .NET SDK does not support targeting .NET 6.0
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
DataTable component for Blazor
I have just released a new DataTable component for Blazor WebAssembly and Blazor Server. The NuGet package is available here. The source code will be available soon on GitHub. This component supports client/server side paging, filtering and sorting. DataTable in action Installation So, first install the package from NuGet or execute this command or Then, open your index.html or _Host.cshtml and add the CSS in the head of the page and then the script at the bottom of the page Then, add in your _Imports.razor file the following using: Also, in the…
Markdown editor with Blazor
In this new post, I will show you have to create a simple Markdown editor component for Blazor Assembly and Blazor Server. Source code inside.
Managing a .NET Service with Blazor
In this post I will show you how creating a cross-platform and managing a .NET Service with Blazor that can be installed on Windows and Linux
Tabs control for Blazor
In this new post, I explain how to create and use Tabs control for Blazor Web Assembly and Blazor Server with basic HTML, CSS and C#