28 07, 2021

Why and When to use Async and Await?

2021-07-28T04:56:37+00:00July 28, 2021|Web Development|0 Comments

|
| ByWebner

In order to get a clear vision of these keywords, async and await, let us first understand the concept of synchronous and asynchronous programming. Synchronous Programming: It is a method of programming in which tasks are performed one at a [...]

26 07, 2021

Salesforce Org Browser

2021-07-26T05:12:23+00:00July 26, 2021|Salesforce|0 Comments

|
| ByWebner

The Org Browser makes it easier to retrieve metadata sources by displaying the available metadata types and their corresponding components in the default org. We can easily retrieve metadata sources, without having to use a manifest file. The Org Browser [...]

21 07, 2021

Salesforce | UI Record API in LWC

2021-07-21T05:57:37+00:00July 21, 2021|Salesforce|0 Comments

|
| ByWebner

UI Record API is used for fetching, creating, updating and deleting the particular record without using the SalesForce Apex Class. These APIs are: Get Record Get Field Value Create Record Update Record Delete Record Below is the sample code of [...]

9 07, 2021

Get base64 String From File URL

2021-07-09T04:52:21+00:00July 9, 2021|Web Development|0 Comments

|
| ByWebner

While working on the react native app, sometimes we need to get the base64 string from the file(image/video) URL. There are many packages available that convert a URL to base64 but they are not producing expected results. Finally, I have [...]

7 07, 2021

ECMAScript (ES10)

2021-07-07T04:59:04+00:00July 7, 2021|Web Development|0 Comments

|
| ByWebner

ECMAScript is the standard for JavaScript and adding new features to JavaScript. It is a subgroup of JavaScript. ECMAScript 10 is also known as ES10. In ES10 here are the new features. Array.Flat(): The flat() function recursively flatten your array [...]

28 06, 2021

CSV file upload in Moodle/Totara

2021-06-28T05:50:41+00:00June 28, 2021|eLearning|0 Comments

|
| ByWebner

Step 1: Firstly, create a form using forms API. Create a class that will extend the “moodleform” class defined in “../lib/formslib.php”. Then override the definition() function of this class to include your form elements. Step 2: To browse the CSV [...]

25 06, 2021

Creating custom object in Salesforce

2021-06-25T05:29:50+00:00June 25, 2021|Salesforce|0 Comments

|
| ByWebner

Log in to your Salesforce account. Click Setup at the upper-right corner. Under the Build section in Salesforce, click Create and select Objects or you can search objects on the search bar To create a custom object, click New Custom [...]

23 06, 2021

AWS Step Functions

2021-06-23T05:25:26+00:00June 23, 2021|Cloud|0 Comments

|
| ByWebner

What are AWS Step Functions? Step Functions is a serverless orchestration service that lets you combine AWS Lambda functions and other AWS services to build business-critical applications. Through Step Functions' graphical console, you see your application’s workflow as a series [...]

18 06, 2021

How to upload a file on AWS S3 from Cakephp 3.9

2021-06-18T05:17:34+00:00June 18, 2021|Web Development|0 Comments

|
| ByWebner

First, we need to install aws-sdk for PHP in the CakePHP project. To install it we can run the below command: composer require aws/aws-sdk-php Code to upload a file: Template Code: <?= $this->Form->create($product, ['enctype' => 'multipart/form-data']) ?> <fieldset> <legend></legend> <?php [...]

16 06, 2021

Introduction to Salesforce Sites

2021-06-16T05:38:55+00:00June 16, 2021|Salesforce|0 Comments

|
| ByWebner

Salesforce Sites enables you to form public websites and applications that are directly integrated into your Salesforce organization—without requiring users to log in with a username and password. You can publicly expose any information stored in your organization through a [...]

Go to Top