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
Introduction to RabbitMQ
RabbitMQ RabbitMQ is an open-source message broker. It supports multiple messaging protocols. It was originally developed to support AMQP 0-9-1 protocol ( Advanced Message Queuing Protocol which is a messaging protocol that enables conforming client applications to communicate with conforming
VScode Extensions For Beginner Developers
VScode VScode was introduced on April 29, 2015. VScode is a source-code editor undertaken by Microsoft for Windows, Linux and macOS. It includes embedded Git and support for debugging, syntax highlighting, intelligent code completion and snippets. it’s extremely customizable, allowing
How do you convert ACLs of any key on S3?
Introduction to ACLs of Key on S3 Many times when you need to change the access control list (ACL) of a key on the S3 to make it public to private or private to public. This is easy as we
Hiding the editor field using Devextreme
How to hide specific editor field in popup editing mode using Devextreme Editing is one of the most important features of Devextreme Datagrid. Every developer needs Editor feature for editing the record. Many types of editing modes are provided by
EML to MSG Using IndependentSoft C#
Convert .eml to .msg files using IndependentSoft C# EML file extension is created by Microsoft Corporations for Email files. It is also known as RFC 822. In these files, email messages are stored in plain text formats. Microsoft’s Outlook Express
Accessor and Mutators in Laravel
Accessor and Mutators are allowed to alter the data before saving and fetching from the database. An accessor is used to change the format while fetching the data from the database and mutators set the format attributes before retrieving the
How to get the “To” email address from eml files?
What is an EML File ? EML is an email message file extension (means an email is stored in a file with an extension .eml). This file is in the standard MIME RFC 822 format by Microsoft Outlook Express and
WireShark For Network Traffic Investigation
Introduction Wireshark is an open-source network protocol that is responsible to investigate the network traffic and for visual understanding of packet loss. It is used to troubleshoot the network connectivity and review the TCP (Transmission Control Protocol) transmission between the
Convert Set data into String
Introduction When working with sets in apex sometimes we need to create a string from the set’s values but there is no function that can convert a set into a string as we have for lists. To convert set into