Asynchronous Apex
Asynchronous Apex in Salesforce allows developers to execute operations in a separate thread, enabling tasks to run in the background without impacting the user experience. This approach is particularly beneficial for handling long-running processes, callouts to external systems, and operations
React-Native-Fast-Image Introduction
For the most part, React Native’s Image component handles image caching in the same way as browsers do. If the server is returning proper cache-control headers for images you’ll generally get the sort of built-in caching behavior you’d have in
Code Optimization in C#
What is Optimization? The word Optimization is derived from the Latin word Optimal which means the best. Optimization is a methodology of making a system or decision fully perfect, functional, and effective. Now, what is code Optimization? In terms of
Upload Image file using AJAX and jQuery
This functionality is used when we want to store an image and display it on the screen without reloading the whole page. Create Html file and write down the following code to upload an image. The above code will display
How to switch the Mysql authentication method from auth_socket to mysql_native_password
In this article, we will come to know how we can switch the MySQL root user default (Auth_Socket) authentication method to mysql_native_password. Auth_socket Authentication Auth_socket authentication is a server-side default authentication plugin that is used to authenticate the client input
How to get list of all changes with files name in a Azure Branch
When we work with Source Control systems and work in a developer branch that is created from the main/master branch. Sometimes, there is a case when we have pushed multiple times in a branch but we need to check the
Using Developer Console in Salesforce
Executing Apex code in the developer console Login to Salesforce and switch to classic and click Developer Console Click to debug -> and click “Open Execute Anonymous Window” or Ctrl/E Write code in the window and execute as following After
Using Devexpress Grid Control with List object in Windows Form C#
From the toolbox window, check the Data and Analytics section in the toolbox menu and drag & drop the GridControl on your windows form. Devexpress Grid control uses Views to present data from a bound data source. With the help
Salesforce | Lightning Navigations in LWC
Lightning Navigations are used to generate a URL or navigate to a page reference. With lightning navigation, we can navigate to Pages, Records, Lists, Webpages, Custom tabs, Reports, etc. There are the steps to use the navigation in LWC: Step