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
Java | Base64 Encoding/Decoding with javax.xml.bind.DatatypeConverter
Base64 Encoding/Decoding with javax.xml.bind.DatatypeConverter in java 6 and 7. Solution: javax.xml.bind.Datatypeconverter class is the built in class inside JRE. We don’t need any third party library as we need in case of Cipher encoding/decoding method. javax.xml.bind.DatatypeConverter.printBase64Binary(byte[]) encodes a byte[] array into
CakePHP Security Component
CakePHP Security Component is very useful and provides an easy way to enable very tight security in our application: 1. It can restrict which HTTP methods our application accepts. 2. It provides Form Tampering Protection. 3. It can force to
Jquery | How to create/edit Jquery Datatable dynamically
How to create/edit Jquery Datatable dynamically? HTML code: <div class=”col-md-12 col-sm-12 col-xs-12″> <table id=”table”> <tbody> <tr> <th>Rules</th> </tr> </tbody> </table> </div> <button id=”go”>Go</button> Here is the javascript function: function addData() { var data=[this array contains all the values that we
Selenium Webdriver script | Open new browser tab and switch between tabs
In Selenium Webdriver script how to open a new browser tab and then switch between first browser tab and 2nd browser tab? Solution: This is the script to achieve it, go through comments in the code to understand how the
Moodle | Add and access custom elements in Blocks
In Totara how to add custom HTML elements (checkboxes, input boxes etc) and then access the value selected by user on server side: 1. Adding custom elements. 2. Accessing values of custom elements. Each problem is discussed below: Overview: In Totara,
Totara | How to enroll audience to Course/Program
Problem: I want to enroll audience in course/program and I do not know that how we can enroll audience in course/program. To enroll audience in course/program, I have followed the below steps: Solution: 1.Click Audiences link. To click on Audience
Salesforce Mobile iOS SDK | Retrieve the list of objects from salesforce
Salesforce Mobile: Retrieve the list of objects from salesforce in iOS native mobile app Description: Using the salesforce mobile iOS-native SDK we can retrieve the list of objects using “requestForDescribeGlobal” SDK method. This method will return the data of all
Shopify webhook getting fired multiple times and then getting deleted from shopify store
In our Shopify store we have an order creation webhook that points to a cakephp action URL. The action that webhook points to fetches the order data and then saves this to the database. The problem that we were facing
WordPress | Get title and description from posts dynamically
In wordpress we can get title from post title and description from post content area dynamically: <?php $id = get_the_ID(); //get the post id. $title = get_the_title($id); //get title from the post. $content = get_post_field(‘post_content’, $id);