100 Blogs |
Post Blog |
Learn how to quickly update your status on NiceOneCode.com. This guide covers logging in, navigating to the Status tab, entering your message, and posting it—all in simple steps.
Views:
46
Comments: 0 Like: 0 Posted On: 13-Jun-2025 03:21 |
Generative AI is a type of artificial intelligence that can create new content.
Views:
55
Comments: 0 Like: 0 Posted On: 12-Jun-2025 01:52 |
AI, or Artificial Intelligence, is the field of computer science focused on creating systems or machines that can perform tasks that typically require human intelligence.
|
In this article we have work around to replace a text in a pdf file using niceonecode.com pdf editor. It's total free pdf tool.
|
Here, in this article, we will discuss how one can convert PST to MBOX for Thunderbird.
Views:
594
Comments: 1 Like: 0 Posted On: 26-Mar-2025 01:55 |
SonarQube is an open-source platform designed for continuous inspection of code quality. It provides tools for static code analysis to identify code issues, measure code quality, and track code complexity. SonarQube supports a wide range of programming languages, making it versatile for diverse software development projects.
Views:
1518
Comments: 0 Like: 0 Posted On: 21-Oct-2024 05:49 |
During the migration from AD B2C Graph to MS Graph API, you'll notice that the signInNames property is not available in the MS Graph User object. This article will guide you on how to migrate to the corresponding property in MS Graph User.
Views:
1072
Comments: 1 Like: 1 Posted On: 10-Oct-2024 05:03 |
In the User Flow policy, there is a Sign-In Flow that allows users to:
1. Sign in with an Azure AD B2C Local Account, 2. Sign in using a social account, 3. Reset their password.
However, users cannot sign up for an Azure AD B2C Local Account through this flow. To create an account, an administrator can do so via the Azure portal or Microsoft Graph API. In this article we will see how we can configure/set-up Sign-in flow in custom policy
Views:
1510
Comments: 0 Like: 0 Posted On: 30-Sep-2024 01:24 |
When we're navigating away from a page or application and there are unsaved changes (often referred to as "dirty" state), it's important to handle it carefully to avoid losing data. ASP.Net Blazor provides NavigationLock component to handle this situation. In this artilcle we will discuss about NavigationLock component and it's implementation.
|
The ASP.NET team recently rolled out Blazor Component Virtualization, a technique for limiting UI rendering to the visible page elements only. You can easily leverage this through a built-in Virtualize component.
Consider a typical scenario where you need to display a large number of items in a table. With thousands of items, users might experience long loading times as the entire dataset is fetched and rendered at once. However, with Blazor component virtualization, the application optimizes performance by initially loading only the records visible within the user's viewport. Additional records are then fetched and rendered dynamically as the user scrolls. In this article, we will demonstrate lazy loading using the .NET delegate technique.
|