
Design and Architecture of A Robo-Advisor Platform
1. Business Requirements for a Robo-Advisor (RA) Platform Some of the key business requirements of a RA platform that confer it advantages as compared to the […]
1. Business Requirements for a Robo-Advisor (RA) Platform Some of the key business requirements of a RA platform that confer it advantages as compared to the […]
Step 1: Install ppa:ondrej/php Step 2: Install PHP-FPM Step 3: Configure PHP-FPM Step 4: Starting PHP-FPM Step 5: Install PHP-Modules Example: Step 6: Download phpMyAdmin […]
There are times when running sudo apt-get update in Ubuntu will result in error messages such as the following: If these errors aren’t fixed, apt will have […]
1. Install JDK Run terminal with command to update: Run terminal with command to upgrade: Run command to setup JDK: Setup enviroment variable JAVA_HOME: Reboot […]
1) What is GIT? Git is an open source distributed version control system and source code management (SCM) system with an insistence to control small […]
The term pull is used to receive data from GitHub. It fetches and merges changes from the remote server to your working directory. The git pull […]
In Git, the term squash is used to squash the previous commits into one. It is not a command; instead, it is a keyword. The […]
Rebasing is a process to reapply commits on top of another base trip. It is used to apply a sequence of commits from distinct branches […]
In Git, the merging is a procedure to connect the forked history. It joins two or more development history together. The git merge command facilitates […]
A branch is a version of the repository that diverges from the main working project. It is a feature available in most modern version control […]
The git status command is used to display the state of the repository and staging area. It allows us to see the tracked, untracked files […]
Cherry-picking in Git stands for applying some commit from one branch into another branch. In case you made a mistake and committed a change into […]
In Git, the term revert is used to revert some changes. The git revert command is used to apply revert operation. It is an undo […]
In Git, the term checkout is used for the act of switching between different versions of a target entity. The git checkout command is used to switch […]