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
How to create separate close-able tab dynamically using Devextreme
Devextreme UI The Devextreme provides a strong feature for the UI, you could change your UI appearance in an easy and simple way. You can also set the records whatever you want to show in the UI at run-time. In
Deep Linking in React Native – Android
Deep Linking Deep linking is a way that allows an app to open a specific screen from an external link. It makes your app capable of navigating to a specific screen in response to external events like Push Notification, Emails,
Advanced SQL – Indexes and Triggers
Introduction The SQL database provides a lot of commands and functions. With the help of them, we can manage a huge amount of data easily in the database. Following are some of the examples: INDEX: In the SQL database Index
Regular expressions in PHP
Regular expressions Regular expressions use arithmetic operators like +,^,- and create complex expressions that can help to validate IP address, email address, telephone no, etc. They save our coding time. Some of built-in PHP regular expressions are: Preg_replace- perform pattern
Convert PDF To Image In PHP
How to convert PDF to image file using PHP? Before installing PDF to Images package, firstly you need to install two PHP extensions Imagick and Ghostscript. Step 1: Install Imagick sudo apt-get install php-imagick Step 2: Restart Apache In the
Introduction to MVC
What is MVC? The MVC is a very frequent web development architectural framework or application designing model which contains three main components the Model, the View and the Controller each of them performs different functions assigned to them. It helps
How to push code to TFS using Visual Studio?
TFS TFS is an acronym for Team Foundation Server which is widely used with Visual Studio. We can directly use the Visual Studio to push code to Team Foundation Server using some simple steps. Steps Step 1: Open the Visual
Dependency Injection in Asp.Net Core
Introduction: The ASP.NET Core provides the idea of Dependency Injection without having to install any external injection containers and resolve the dependencies. My experience with ASP.NET Core is connecting some applications related to the use of such templates for dependencies.
Resize and Draggable Image using Jquery
Introduction to Jquery Libraries Using jquery libraries, we can implement Resize and draggable functionality on an image. It is really a fantastic thing and we do not need to bother about knowing the inner functionality of how it is working.