Programming

how to install pm2 on ubuntu
programming
Arfan Youshuf

Install PM2 on Ubuntu

Using yarn:   yarn global add pm2 Using npm npm install pm2 -g Using debian apt update && apt install sudo curl && curl -sL

Read More »
java bubble sort
programming
Arfan Youshuf

Bubble Sort in Java

In bubble sort ,an  array is traversed from first element to last element. Then, current element is compared with the next element. If current element

Read More »
programming
Arfan Youshuf

Most Used Java Stream Map Functions

Retriving a List of attribute (field) values from a Object List (Array List) List users=new ArrayList<>(); List userIds=users .stream() .map(u->u.getId()) .collect(Collectors.toList()); Filter Objects by Attribute

Read More »
programming
Arfan Youshuf

Javascript For Loops

Javascript For Loops in the ECMA Standard Simple For Loop The simplest type of for loop increments a variable as its iteration method. The variable

Read More »
Scroll to top