Blog

launch-ec2

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 …

Clouds

Models of Cloud service

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 …

person-using-silver-macbook-pro-1181467

Naming conventions – PHP

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 …

coffee-writing-computer-blogging-34600

Best coding Practices – PHP

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 …

photo-of-people-doing-handshakes-3184301

Difference between B2B & B2C

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 …

code-coding-computer-data-574070

Install the VS Code editor on Ubuntu

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 …

computer

Create a project in Angular

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 …