Before going to the topic we need to know what is the remote server and local server. Local Server: As per its name which server is locally available or for accessing it no need for internet is called local server.…
Category: General
PHP Variables
A variable may be a place wherever you’ll be able to store things, like variety, a date, number , or some text . you set text or numbers into variables therefore you’ll be able to retrieve them later, more or less you’ll be able to manipulate them. Variables square measure referred to as variables as a result of the worth that…
Server Configuration Centos (Lampstack)
AFTER BUYING THE FRESH CENTOS SERVER. THE THINGS REQUIRED FIRST 1. Check the sftp connection. 2. Update the patch. 3. Install (gzip, nmon (Server resource Monitoring tool), locate (mlocate), ACL, fail2ban) 4. Change the default root password. 5. Open the…
How to use App Password in bitbucket for Git?
From 1st March 2022 App Password is required to access your git repository. 1st step is to configure App password in bit-bucket Login to your bitbucket account Click to your profile and settings option then click on app password section…
Bitnami Server Install Centos(GUI)
Introduction If you’ve ever attempted to install a server application (such as WordPress) or a development environment (such as an Apache/PHP/MySQL environment), you know it’s a lot more difficult than it appears at first glance. There are files to download…
Longest Common Prefix in an Array with example C++ ,Python & Java
A prefix is a group of characters that appear at the start of a string. For example, “mi” is a prefix of “mint,” and “min” is the longest common prefix among “mint,” “mini,” and “mineral.” Algorithm Sort the strings in…
What is gRPC? Is it Better Than REST API?
Do you want to know if gRPC is the way of the future? The goal of this essay is to describe the differences between two architectural API styles: REST and gRPC. Before we get into their differences, let’s define an…
Git –Large File Storage
Although Git is well-known as a version control system, many Git users are unaware of Git LFS (Large File Storage). I’ll try to explain why and when Git LFS should be used, as well as how to utilise it, in…
DevOps
What Is DevOps? DevOps is one of many approaches used by IT workers to complete IT projects that match business requirements. Agile software development, IT service management frameworks such as ITIL, project management guidelines such as Lean and Six Sigma,…
Find duplicates in an array
Explanation We need to find the duplicate elements in the array in this programme. This can be accomplished with two loops. The first loop selects an element, while the second loop iterates across the array by comparing the selected element…