About Webner

We are a software development company in India.
17 09, 2021

How to switch the Mysql authentication method from auth_socket to mysql_native_password

2021-09-17T11:53:38+00:00September 17, 2021|Database, Web Development|0 Comments

|
| ByWebner

In this article, we will come to know how we can switch the MySQL root user default (Auth_Socket) authentication method to mysql_native_password. Auth_socket Authentication Auth_socket authentication is a server-side default authentication plugin that is used to authenticate the client input [...]

13 09, 2021

Using Developer Console in Salesforce

2021-09-13T05:18:22+00:00September 13, 2021|Cloud, Salesforce|0 Comments

|
| ByWebner

Executing Apex code in the developer console Login to Salesforce and switch to classic and click Developer Console Click to debug -> and click “Open Execute Anonymous Window” or Ctrl/E Write code in the window and execute as following After [...]

8 09, 2021

Salesforce | Lightning Navigations in LWC

2021-09-08T05:05:33+00:00September 8, 2021|Salesforce|0 Comments

|
| ByWebner

Lightning Navigations are used to generate a URL or navigate to a page reference. With lightning navigation, we can navigate to Pages, Records, Lists, Webpages, Custom tabs, Reports, etc. There are the steps to use the navigation in LWC: Step [...]

6 09, 2021

How To Fix Busybox Initramfs Error On Linux based OS

2021-09-06T05:54:38+00:00September 6, 2021|Linux, Web Development|0 Comments

|
| ByWebner

Some time our OS boot process gets stuck to the BusyBox shell and ends up at the initramfs prompt. ERROR: ---------------------------------------- BusyBox v1.27.2 (Ubuntu 1:1.27.2-4ubuntu3.2) built-in shell (ash) Enter 'help' for a list of built-in commands. (initramfs) ---------------------------------------- SOLUTION: Type [...]

2 09, 2021

Service layer in Angular

2021-09-02T05:42:44+00:00September 2, 2021|Mobile, Web Development|0 Comments

|
| ByWebner

Angular service is very useful to organize business logic or data in the different components of an application. The methods written in the service file can be invoked from different typescript files of a component. The controller is responsible for [...]

31 08, 2021

Hooks in React

2021-08-31T05:49:40+00:00August 31, 2021|Mobile, Web Development|0 Comments

|
| ByWebner

Hooks are the new feature of the react. They let you use the state and other features of React without creating a class. They are mainly used to handle state and other side effects in react functional components. Side effects [...]

25 08, 2021

Collections

2021-08-25T05:52:57+00:00August 25, 2021|Web Development|0 Comments

|
| ByWebner

Collections: It holds many values or objects in a specific series. The two types of collections in C# : Non-generic collections Generic collections NON-GENERIC COLLECTIONS Hierarchical structure of non-generic collections: <interface> IEnumerator <interface> IEnumerable <interface> ICollection <interface> IDictionary Hashtable Sorted [...]

18 08, 2021

Difference Between Aura Components and LWC

2021-08-18T05:03:37+00:00August 18, 2021|Cloud, Web Development|0 Comments

|
| ByWebner

Four separate technologies are used together for web components in Salesforce: Custom Elements: JavaScript APIs help to develop the HTML elements with custom templates, tag names like and behaviours. Shadow DOM: For isolation of CSS and JavaScript living Standard DOM [...]

9 08, 2021

Batch Class

2021-08-09T05:25:46+00:00August 9, 2021|Salesforce|0 Comments

|
| ByWebner

Batch class in salesforce is used to run large jobs (think thousands or millions of records!) that would exceed normal processing limits. Using Batch Apex, you can process records asynchronously in batches (hence the name, “Batch Apex”) to stay within [...]

6 08, 2021

Add Custom Components to Home Page

2021-08-06T05:02:29+00:00August 6, 2021|Cloud, Salesforce|0 Comments

|
| ByWebner

Log in to your Salesforce account. Click Setup at the upper-right corner. Under the Build Section Customize => Home, click Home Page Components or you can search for components on the search bar. After Clicking Home page Components the following [...]

4 08, 2021

Keyring Password Issue

2021-08-04T05:03:31+00:00August 4, 2021|Cloud, Database|0 Comments

|
| ByWebner

Use this if you have forgotten the password of the keyring in Ubuntu, but you want to safeguard a new keyring with a password. For Ubuntu 18.04, I used the following. Remove old keyring: For this, we need to change [...]

2 08, 2021

How to remove a property from Json in C#

2021-08-02T05:32:04+00:00August 2, 2021|Web Development|0 Comments

|
| ByWebner

Description: Suppose we have the following JSON data and we want to remove the property “RunIsolated” (highlighted) under the compositeRequest to get the final JSON without this property: Solution for Json: Following is the sample code to achieve this: string [...]

30 07, 2021

Upload Image to AWS S3 Using React

2021-07-30T05:18:44+00:00July 30, 2021|Cloud|0 Comments

|
| ByWebner

React provides you a facility to upload files directly from your react end to AWS S3. To achieve it, you need to install a package that is listed below: npm install --save react-s3 After that, add the following import line [...]

Go to Top