Blog

brainstorming-business-businesswomen-1093913

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 software. • A cookbook that defines best practices …

analogue-blur-business-159282

MongoDB commands

Connect MongoDB on server 1. Use SSH to connect with port 22 2. Connect to MongoDB using command # mongo Show all the databases on the server # show dbs …

close-up-code-coding-1089440

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 JSON APIs based Applications Data steaming applications Data …

pexels-mac

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 location, where you have download the file “anydesk_5.5.5-1_armhf.deb” …

angular-cli

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 globally #[sudo] npm uninstall -g angular-cli @angular/cli #npm …

coding-computer-data-577585

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 #npm uninstall <package Name> To update to latest …

pexels-christina-morillo-1181287

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 that will be associated with each history marker …