Launch Amazon EC2 instance – Linux
Firstly, follow these steps to Create an EC2 Instance Go to Compute section and select EC2 On the EC2 dashboard, you will see “Running instances” under the “Resources” section with …
Firstly, follow these steps to Create an EC2 Instance Go to Compute section and select EC2 On the EC2 dashboard, you will see “Running instances” under the “Resources” section with …
IAAS – Infrastructure as a service You will get the infrastructure. So you are responsible for setting up all the required services and not the hardware. You will set up …
On-Premise/ Private Cloud – Everything is managed in the local environment. You are responsible for everything.– It means all infra, design, application, all your machines, networking, all your servers you …
Common mistakes using a few PHP functions: empty() – commonly mistaken due to different results with different content. Most of the time it will not be necessary to use this …
Here are the suggested naming conventions for Variables, Classes, Functions and Files. Naming Variables Use all lower case. Use _ to separate words, e.g. $green_color_value Use descriptive names (except loop …
Never put phpinfo() in the root directory Assignments in arrays may be aligned. When splitting array definitions onto several lines, the last value may also have a trailing comma. Never …
Both have similar goals, but communicating with a different type of audiences. Here are the key differences between B2B and B2C. B2B (Business to Business) A business that operates by …
Install LAMP stack on Ubuntu using tasksel Update system and packages by this command: # sudo apt-get update Install tasksel using this command: # sudo apt-get install tasksel Use this …
Run following curl command to download Microsoft GPG key # curl https://packages.microsoft.com/keys/microsoft.asc | gpg –dearmor > microsoft.gpg Then install the key via command: # sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg Add the …
Type following command to create a new project: # ng new <PROJECT-NAME> It will ask “Would you like to add Angular routing? (y/N)” – Type y and hit EnterOn the …