Keystone js deployment on Ubuntu 16.04/18.04 Date : 07-Jan-2020 Let us see how to deploy Keystone js on Ubuntu 16.04/18.04 Step 1: Install Nginx webserver Install nginx webserver in your Ubuntu machine using the following command. apt-get install nginx Post installation, you can check the status of the webserver using… Continue Reading Keystone js deployment on Ubuntu 16.04/18.04

What is Design pattern and how to implement them Date: 19/12/2019 Introduction The article is will not explain something about a specific language. So other than the code block, I will talk about design patterns. Design patterns are crafting the communication between bunches of code. In OOPS, you can scale,… Continue Reading What is Design pattern and how to implement them

How to use shift and unshift method in javascript Date: 12/12/2019 Introduction: In this article, we will explain how to use shift() and unshift() to add and remove the elements from the array in javascript. shift() used to remove the first element of the array. unshift() is used to add… Continue Reading How to use shift and unshift method in javascript

Download and setup installatron on cPanel/WHM Date published: 11-12-2019 Hello!! In this article, let us see how to download and install setup installatron on cPanel/WHM. Step 1: Install installatron Execute the below commands from the SSH root command prompt Choose the appropriate commands for the packages accordingly. For any type of server,… Continue Reading Download and setup installatron on cPanel/WHM

How to remove & install oracle java [Jdk] in ubuntu 16.0.4 Date published: 07-12-2019 Java is a very popular programming language for a system web application, software development, Android development and so on. Therefore, we need to install the Java Development Kit [JDK] and Java Runtime Environment [JRE] to configure… Continue Reading How to remove & install oracle java [Jdk] in ubuntu 16.0.4

HOW TO PASS TWO OR MORE LISTS IN FOR LOOP USING PYTHON Date: 07/12/2019 Introduction Python has global built-ins that are handy for a regular problem. Specifically, I will explain zip() in this article. Let’s take an example from Avengers, Have to match the list of Avengers characters with the… Continue Reading HOW TO PASS TWO OR MORE LISTS IN FOR LOOP USING PYTHON

How to export/import emails in cPanel webmail? Date: 22-11-2019 Hello!! do you want to know how to export your emails from your account and import the same in cPanel webmail? Let us see the step by step process in detail Step 1: Let us assume, we have a mail account… Continue Reading HOW TO EXPORT/IMPORT EMAILS IN CPANEL WEBMAIL

How to install Python from source code Here, let us see how to install any python version from source code. Step 1: First, in order to get your python source file, go to the link, https://www.python.org/ftp/python/ and select the python version which you want to get installed. For example, if… Continue Reading How to install Python from source code

How to Upgrade PrestaShop – Using a 1-click upgrade module Date posted: 18/11/2019 In extreme worst cases, the manual upgrade process is too tedious, there is an alternative – a free module 1-click update. As a result, it will automatically execute the course of actions with backup and rollback options… Continue Reading How to Upgrade PrestaShop – Using a 1-click upgrade module

SPACE BETWEEN ROWS IN A TABLE USING CSS PROPERTY Date : 15/11/2019 SPACE BETWEEN ROWS IN A TABLE USING CSS PROPERTY Introduction We can use “border-collapse” and “border-spacing” properties to leave space between rows. border-collapse => Used to specify whether the border of the table is collapse or not. border-spacing”… Continue Reading SPACE BETWEEN ROWS IN A TABLE USING CSS PROPERTY