6 12, 2021

Tab view in React-Native

2021-12-06T05:12:59+00:00December 6, 2021|Mobile, Web Development|0 Comments

|
| ByWebner

It provides various packages to create tabs like views in the application. So react-native-tab-view is one of them. This component is implemented using the react-native-pager-view which is another component that allows the user to swipe left or right throughout the [...]

28 09, 2021

React-Native-Fast-Image Introduction

2021-09-28T05:41:47+00:00September 28, 2021|Mobile, Web Development|0 Comments

|
| ByWebner

For the most part, React Native's Image component handles image caching in the same way as browsers do. If the server is returning proper cache-control headers for images you'll generally get the sort of built-in caching behavior you'd have in [...]

24 09, 2021

RabbitMQ

2021-09-24T05:35:22+00:00September 24, 2021|Database, Web Development|0 Comments

|
| ByWebner

You can think of RabbitMQ as a mediator between the two parties. One is known as the producer that produces goods and services and stores them into RabbitMQ. Another one is the consumer that consumes goods and services from the [...]

22 09, 2021

Code Optimization in C#

2021-09-22T07:50:14+00:00September 22, 2021|Web Development|0 Comments

|
| ByWebner

What is Optimization? The word Optimization is derived from the Latin word Optimal which means the best. Optimization is a methodology of making a system or decision fully perfect, functional, and effective. Now, what is code Optimization? In terms of [...]

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 [...]

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 [...]

Go to Top