Tuesday, October 16, 2018

R programming - Introduction and Basics


Introduction
This is my first post on R programming. In this series of posts , we will cover the building blocks of R I.e different data types used , Vectors ,Operations on these vectors like Vector Arithmetic, Sorting , indexing , plots , programming basics of R i.e using the conditional operators , for loops , functions etc. I will not be covering installation since there are various existing detailed sources available . 

Thursday, October 11, 2018

Working with Git Submodules


A submodule is a repository embedded inside another repository. The submodule has its own history; the repository it is embedded in is called a superproject. Submodules can be used for at least two different use cases:

Wednesday, October 10, 2018

Git Basics - Clone ,Init , Add , Commit , Reset ,Rm ,Status


Git is a version-control system for tracking changes in computer files and coordinating work on those files among multiple people. It is primarily used for source-code management in software development, but it can be used to keep track of changes in any set of files.

Monday, October 8, 2018

Creating custom directives in AngularJS


What are custom directives in AngularJS and how to use them ?

Wednesday, July 18, 2018

Installation and Project Setup - Angular 6


This is my first post on Angular 6 . In this post, we will install all the required tools and then  see how to create a sample Angular 6 project using npm and Angular CLI .