Microsoft redesigns Office for Windows 11. Its Word, Excel, and PowerPoint apps with a new dark mode and a rounded aesthetic
Author: Enrico
Windows 11 leak reveals new UI
Today, Windows 11 leak reveals new UI, Start menu, and more for the next generation of Windows. We are waiting the Windows show on June 24th.
Create a Blazor component for Quill
Create a Blazor component for Quill allows us to easily consume Quill and place multiple instances of it on a single page in our applications
How to Export Data to Excel in Blazor
In this new post, I’m going to show how to export data to Excel in Blazor WebAssembly or Server. Creating and exporting data to Excel file is one of the frequently used feature in web apps. First, for creating an export in Excel, I will use a free library that is a NuGet package. ClosedXML is a .NET library for reading, manipulating and writing Excel 2007+ (.xlsx, .xlsm) files. It aims to provide an intuitive and user-friendly interface to dealing with the underlying OpenXML API. So, you can download the full source…
Jurassic World Evolution 2 announced
Jurassic World Evolution 2 announced and is coming this year, developer Frontier Developments announced during Summer Game Fest kickoff
Write a reusable Blazor component
First part of a Blazor article series to tell how to create a reusable Blazor component that will be used in your Blazor applications
Modal Dialog component for Blazor
In this post, I explain how to implement a Modal Dialog component for Blazor WebAssembly that we can use everywhere in our application
Create Tooltip component for Blazor
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
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