I want to create a Tooltip component for Blazor WebAssembly, taking advantage of Blazor’s new CSS isolation feature. Click on the link and see
Year: 2021
Amazon Echo shares your Wi-Fi
Your Amazon Echo shares your Wi-Fi network with neighbors, unless you opt-out. It’s called Amazon Sidewalk to help Amazon devices work better
Next generation of Windows is here
Microsoft has created an event for showing the next generation of Windows is (almost) here on June 24th. Here the event to add to your calendar. After teasing the next generation of Windows during Build last week, Microsoft announced that it’ll officially unveil the new version of its operating system on June 24th at 11AM Eastern. The company has begun sending out invites to media. It’s revealed that CEO Satya Nadella and chief product officer Panos Panay will be headlining the event. The promise at Build At Build, Nadella said he’s been testing the…
Use LocalStorage with Blazor WebAssembly
In this post I want to show how to use LocalStorage with Blazor WebAssembly to save data in the storage of the browser
Exciting time for Windows users
This week it is quite an exciting time for Windows users and developers. Let me tell you why. Microsoft isn’t talking about its big Windows plans at Build 2021 this week, and that’s because the company is preparing to detail what’s next for its PC operating system separately. Microsoft CEO Satya Nadella teased this announcement during his Build keynote this morning, revealing he has been testing “the next generation of Windows” in recent months. “Soon we will share one of the most significant updates to Windows of the past decade…
InputSelect component for enumerations in Blazor
I can’t find the component I need, so, I have created one and now I’m going to give you the code for InputSelect for enumerations in Blazor
Blazor using HttpClient with authentication
Today, we are going to learn how to create a secure connection in Blazor using HttpClient with authentication to gain access to the protected resources on the Web API’s side. Everything is based on IdentityServer. Until now, we secure Blazor WebAssembly With IdentityServer4 and enabled login and logout actions. After successful login, IdentityServer sends us the id_token and the access_token. But we are not using that access_token yet. So, in this article, we are going to change that. But, using the access token with Blazor WebAssembly is not going to be our…
Microsoft will kill off Internet Explorer
Microsoft has announced it will kill off Internet Explorer 11 desktop app on June 15, 2022, on most versions of Windows 10.
Secure Blazor WebAssembly with IdentityServer4
I’m going to explain how to secure a Blazor WebAssemble application with IdentityServer4. Also, how to secure API calls
Fifty years of Pascal
I started to code with Basic on my VIC20. Only a couple of years later I started to code in Pascal and now we celebrate its 50s
Signs The iPhone 13 May Bring Us Closer To A Design Reboot
Despite numerous advancements in camera quality, battery life, processing power and the like, it has been a while since we’ve seen a significant reboot of the iPhone
Why data encryption is so important
Here why data encryption is so important to secure and encode data and uses encryption or security keys to make the data accessible
Configure CORS in API Management
I will show you how to configure CORS in the API Management Service in Azure and avoid the mistake I did when I configure this service
Working with Blazor’s component model
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 to learn this new technology better and faster: What is a Blazor component? First, the fundamental building blocks of Blazor applications are components, almost everything you do will directly or indirectly work with them. In…
Setting up a Blazor WebAssembly application
Setting up a Blazor WebAssembly application creates a new solution for a simple project to explore components and interactions with Blazor
How to use an Azure API Management Service
API Management creates consistent and modern API gateways for existing back-end. How to use an Azure API Management Service in a real world?
Getting started with C# and Blazor
Getting started with C# and Blazor explains how this new Microsoft technology is working and the basic information to understand Blazor
Improving on the application’s behaviour
In this post will be on improving on the application’s behaviour following clean architecture handling errors, adding logging, authenticating users
How adding an UI built in Blazor
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
How testing the Application code
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
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
Creating the Infrastructure project
We will be on creating the Infrastructure project following clean architecture. We are going to bring in another layer: the infrastructure
Adding validation using Fluent Validation
Adding validation using Fluent Validation is a method to decoupled rules and models and also write multiple rule-sets against the same models
Introducing CQRS in the architecture
Introducing CQRS (Command and Query Responsibility Segregation) for a clean architecture project in ASP.NET Core. A brief guide with source code
Setting up the application ASP.NET Core
I’m going to explain how setting up the application for ASP.NET Core with clean architecture from a blank project to complete solution