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