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
Delete and deploy components from production using workbench
How to delete and deploy components (Apex classes, Flows, Objects, etc) from production using workbench? We cannot delete Apex classes directly from the Production org. Also, it is not possible to deploy deleted apex classes using Changeset. So, to delete
Component Lifecycle of Angular
Introduction Components are like a building block that controls the HTML view of your application. They can communicate with other components to provide functionality to the application. The components are denoted by @Components. An application can have more than one
Types of Form Creation in Moodle
Introduction A Document that contains different blank fields like(Name, DOB, Class, etc.) that the user can fill the data is called form. The form can be of many types like(Application Form, Contact Form, etc.). Forms are very helpful to store
Reactive Forms In Angular
Introduction to Reactive forms In Reactive Forms, we use Modal driven approach to handle form inputs which changes over time. Reactive forms are most preferred to use. It is flexible to use and provides many benefits. For example, By using
Best Practices to write Unit test with .Net Core
Introduction In programming, the Unit test is used to test the source code of a particular method. In this method, we can check if the code is ready to deploy or not. It also improves code quality. In this test,
JavaScript: Return Object Literal From Arrow Function
Arrow function Arrow function was introduced in ES6, which provides a better and shorter way to write functions in JavaScript. Its another advantage is that it does not bind its own “this”. We can also say that the context inside
How to resolve “Composer vendor dir found in project” WARNING in Heroku?
Description of this Heroku warning Git repository always contains the vendor directory. This directory should not be under version control. Only ‘composer.json’ and ‘composer.lock’ files need to be added because Heroku handles the installation of dependencies on each deploy. There
Laravel URL QR Code Generator
Why the QR Code? A QR code can make you download apps, redirect to a particular URL, access wireless networks like WiFi and much more. They can also lead one to perform quick actions without even putting any effort. Many
Defining a Component using Selector, Template, Styles in Angular
Components Component controls the user interface of Angular. We can make as many components according to the requirement. As Angular is a single page application, we use components instead of using multipage. To create a component, we firstly we go