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
Jumbotron and Scrollspy in bootstrap
What are Jumbotron and Scrollspy in bootstrap? A Jumbotron is displayed as a grey box with rounded corners. It indicates a big box to emphasize some special content or information. It also enlarges the font sizes of the text inside
Create Post Install Script in SalesForce
How to create Post Install Script in SalesForce Definition A post install script is an Apex class which is executed when a package is installed or upgraded. This class implements the InstallHandler interface. This interface has a method named as
Integrate Laravel web service with custom alexa skill
Steps for integrating Laravel web service with custom alexa skill: Step 1: Your web service should be on secure HTTP connection and should have SSL/TLS. Alexa strictly enforces for this to protect the confidentiality and integrity of your data. Step
What is Visual Studio Code and its advantages
What is Visual Studio Code? What are the advantages of Visual Studio Code. Visual Studio Code is a source code editor developed by Microsoft for Windows, Linux and macOS. It is a super fast and lightweight Source Code Editor which
How to setup custom Domain DNS in AWS with office 365 including skype for business
Steps for setup of custom Domain DNS settings in AWS with office 365 including skype for business Below are the steps involved to get these settings done. Step.1 Open office 365 admin console and click Domains under menu “Setup”. Step.2
Install node.js on Linux and Windows
How to Install node.js on Windows: You can install node.js for windows from Node.js website as they had provided the installer there. You need to run the .msi installer that is downloaded. Then Restart your computer as you won’t be
PHP | Amazon S3 | Check if a file or folder already exists on Amazon S3 Bucket
To check if a file or folder already exists on Amazon S3 Bucket, use the following code Code: $info = $client->doesObjectExist($bucket, $FileName) if ($info) { echo ‘File exists’; } else { echo ‘File does not exists’; } Webner Solutions is
Bootstrap Alert Types
How to create alerts in Bootstrap: Bootstrap provides an easy way to display the information or create predefined alert messages on the screen. In Bootstrap alert is created using .alert class for example : <div class=”alert alert-success”> </div> Bootstrap alert
Introduction to Selenium and some Examples
Introduction to Selenium and some Examples History of Selenium Selenium was launched in 2004 by Jason Huggins (engineer at ThoughtWorks in Chicago) and he named it “Javascript TestRunner” but at that time it was stuck with the “same origin policy”