Blog
Create PWA for Angular6 Application
Install latest version of Angular CLI using this command: # npm install -g @angular/cli OR # npm install -g @angular/cli@latest Create a…
Scrum – CSM Exercise Questions (Part1)
(*) Correct answers are marked in Green 1. Which statement best describes Scrum? • A complete methodology that defines how to develop…
MongoDB commands
Connect MongoDB on server 1. Use SSH to connect with port 22 2. Connect to MongoDB using command # mongo Show all…
Node.js
How to enable v8 inspector for debugging and profiling? –inspect –inspect=<PORT NO> NodeJS is advised to be used for? Single Page Applications…
Install Anydesk on Raspberry Pi
Please follow these steps to install Anydesk on Raspberry Pi: 1. Download the .deb file from https://anydesk.com/download?os=raspi 2. Go to the downloaded…
AWS – Host Free website
You can use AWS account free and it Includes 12 Months of Free Tier Access for following products: Amazon EC2, Amazon S3,…
Laravel: Arabic content display issue in the pdf
1. Use the mpdf library. In laravel use package https://github.com/niklasravnsborg/laravel-pdf 2. Use the font-family: “XB Riyaz” with dir=”rtl” attributes
MEAN project using Angular cli (commands)
Install the dependencies into node_modules folder. #npm install Angular cli Installing the Angular/cli globally #[sudo] npm install -g @angular/cli Updating the Angular/cli…
Useful Node Commands
Node Commands: Install the dependencies into node_modules folder. #npm install Install the package globally #npm install <package Name> Uninstall the package globally…
Useful Git Cheat Sheet
Configure name that is identifiable for credit when reviewing version history # git config –global user.name “<FIRST AND LAST NAME>” Configure email…