Category: Web Development
Increase React Native App Performance
React Native apps have numerous benefits like they are fast, cost-efficient, and offer a nearly native look. But, when it is not done properly, it can lead to performance issues. So, while making you react to native applications, developers need
Dependency Injection in C Sharp
To understand the term Dependency Injection, we must know what is Dependency and IoC? In terms of Object-Oriented Programming, Suppose Class A uses Class B for one of its jobs. Here Class B is a dependency of Class A and
How to run command prompt from visual studio
Command prompt can be called from the visual studio. Commands that are used to run it from the visual studio are listed below: Step 1: Firstly we will create an object for processstartinfo like this- ProcessStartInfo pro = new ProcessStartInfo();
Introduction to DevOps Architecture
In Software Engineering, Operations and Development both play crucial roles in order to deliver the results of an application. The development consists of analyzing the requirements, designing, developing, and thereafter testing the software components in the testing environment. On the
Laravel Relationships in Eloquent
Laravel relationship tables are frequently associated with each other in the database. Laravel relationships in eloquent support different types of relationships and it’s easily working and managing data. Defining relationships:- One to One One to Many Many to Many Has
Javascript Array Methods One Must Know
filter The filter is an array function in vanilla.js which returns a new array by filtering the filter item provided to the filter function. Here is ES6 syntax for this function: Reduce This function basically executes a given function provided
How To Reset Your MariaDB-10.2 Root Password on Ubuntu 20.04
Note: This tutorial will work only for resetting the MariaDB root password, not for the MySQL server. Introduction If you forget the root password of the MariaDB database in Ubuntu, you can still regain the access and reset it if
How to create a Salesforce Scratch Org
Scratch org is a disposable and source-driven deployment of Salesforce metadata and code which is made for developers (developing specific modules) and for automation that is continuous integration or continuous development. Scratch org is a configurable org/sandbox which allows the
OAuth 2.0 Authorization Code Grant Type
The Authorization Code Grant Type is perhaps the foremost common of the OAuth 2.0 grant types that you’ll encounter. Both web apps and native apps can use it to get the access token after a user authorizes the app. What
