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
AWS S3 | How to get the count of files in a folder in AWS S3
There was a task in which we were required to get each folder name with count of files it contains from an AWS S3 bucket. If we used the general approach to start a counter and increment that in a
Alter AWS S3 file permissions using S3 cmd
How to alter permissions of all files or files with a specific extension via s3 command line client tool (Linux)? S3 command line tool (S3 cmd) allows us to alter permissions of files and files with specific extensions inside S3
JqueryUI | Unable to drag elements to the front
Problem: When we add draggable elements dynamically or even statically elements created subsequently will have higher z-index than the elements created before these elements which cause the problem of overlapping on dragging the image. When we drag element with lower
Open Send Email form on Custom Button click in Salesforce
In Salesforce, how to open standard ‘send email page’ by clicking a custom button located on Detail Page of a custom/standard Object? Steps to open an Email Page from Custom Button: 1. Add a custom button first. Go to Custom
SCEA 5 – My 2 cents
Recently became SUN certified Enterprise Architect after clearing all 3 parts of SCEA. It is hard to get answers to all questions one may have regarding SCEA but SCEA forum on javaranch.com is great!! I have shared my experience here
Read Word document using Apache POI (Java)
Read Word document using Apache POI (Java) : To read any document (.doc or .docx) or excel document in java, there are several libraries but Apache POI is pretty good. Using this library we can read word documents line by
Create animated hover effect without Using jqueryUI
We can add animated hover effect using css and html also. See example below: Create simple html code like this: <div class=”co-sm-12 blog-categories”> <h4>Categories</h4> <ul> <li><a href=”#”>Customizable Courseware</a></li> <li><a href=”#”>Online Learning</a></li> <li><a href=”#”>Skills Assessments</a></li> <li><a href=”#”>Quick References</a></li> <li><a href=”#”>Exercise Files</a></li>
Move elements between Multi-select lists in Jquery
There are a lot of jQuery plugins available on the internet to perform operations on Two Multi-select lists including moving elements between these lists (left to right or right to left). These plugins have the capability of advanced operations also
Client Side dependency management with Bower
Build tools like maven, ant etc are used to download project’s dependent jar libraries required in web application development environment. But what about client-side dependencies like jquery, bootstrap, fonts, css, angular js etc. They are front-end dependencies which we have