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
Favicon not showing up in Google Chrome
We faced a problem in Chrome when all other browsers were properly showing favicon but not the chrome browser. The reason was our HTML was not proper. Above tag we had some extra HTML code written which should be inside
Heroku | How to find Configuration details for Heroku app
In Heroku, every app has its own configuration variables like GIT URL, database host, database URL, database username and Password etc. We can find this information by following the steps below: 1. Login to Heroku dashboard. 2. Click the app name to
HTML| Anchor Tag | How to link to a specific section of the page
In HTML, if one needs to create a link that redirects to a specific section of that page, following steps must be followed: 1.Give unique id to the section of HTML page where you want the link to be redirected
Eclipse | Force.com | Invalid Force.com plugin version for eclipse
We had successfully installed the Force.com plugin in eclipse with the latest version. We were trying to import the project for a particular org. Eclipse asked for the organisation’s credentials and the details. Even on submitting the correct details eclipse
SQL Server / MySQL | Combine data from multiple rows into a single row
We have data as below: We need output like this: Solution: For SQL server STUFF function is the key here: SELECT Id,STUFF( ( SELECT distinct ‘ ‘ + cast(Name as varchar(500)) from table1 t2 where t1.Id = t2.Id FOR XML
WordPress | Unable to access admin panel for the WordPress site
The problem was because of the plugin named “ITheme Security”. When plugin was enabled, the wp-admin panel did not work and gave the following error: 404 page not Found Error. On disabling this plugin, admin panel worked fine. But disabling
Salesforce | How to set value of input text field on parent Visualforce Page using Javascript
Description: We had a text field (inputTextF) on our parent page. We wanted to set its value from inside my child page programmatically. 1. You need to pass parent page element Id to the child page. 2. Get parent page
Selenium | Unable to find Command button using Selenium Webdriver
Problem: Unable to find the Command button using Selenium Webdriver. Solution: You can use following script code if you want to find command button on a web page and then click it: driver.findElement(By.xpath(“//button[text()='(Button name)’]”)).click(); Here is the script which we used in
Ubuntu | Rsync
Ubuntu provides a very useful command rsync that allows faster way to copy modified files from one location to another. It can work between 2 remote locations or even within local folders. First time rsync downloads all the files but