Sunday, September 23, 2018

Introduction to Microst Azure Cloud Services

Prerequisites:


Getting started:

  1. VS 2015 (Enterprise)  > New Project > Microsoft Azure Cloud Services
  2. Select ASP.NET Web Role 
  3. Select "MVC" as template

Microsoft Azure Compute Emulator:
It helps to test Azure Cloud Services locally


Types of Web Role:
  1.  ASP.NET Web Role  (service with a web user interface)
  2.  WCF Service Web Role (web role for WCF Service)
  3.  Worker Role (background processing Service)
  4.  Worker Role with service Bus Queue

Difference between Cloud Service and Web Role:
  • Cloud service is a container or a boundary or a box, which can put different services.
  • We can add different web role into a cloud service

Reference:

Monday, September 10, 2018

Kanban


  • Kanban is a Japanese word which means signboard/billboard (Kan = Visual, ban=board)
  • Kanban was widely used in manufacturing
  • It is first introduced in mid 20th Centuary in Toyota production system (Taiichi Ohno)


Advantage of using Kanban

  • Improve quality in work
  • Reduction of wasted effort
  • Faster turnaround
  • Identification & Elimination of bottlenecks
  • Improved teamwork

Kanban Board or Iteration Board
  • Backlog (New)
  • Active
  • Closed

How Git works


1. Create a "repository" with hosting tool (GitHub)
Note: Use Github for creating repository - https://github.com/nidhisht/MyFirstRepository
2. Clone (copy) repository to your local machine
$git init
$git clone https://github.com/nidhisht/MyFirstRepository
3. Add a file to local repository and "commit" (save) changes
$git commit -a
4. "Push" your changes to master branch
$git push
5. Change the file in hosting tool and "commit"

6. "Pull" changes to your local machine
$git pull

Reference: https://www.atlassian.com/git

Example:
git init
git clone https://github.com/nidhisht/SampleRepository.git
git add .
git commit -m "first commit"
git push origin master

Git Basics

Git
  • Open source
  • Distributed 
  • Version control system
  • Tool to manage source code history

Difference with TFS
  • TFS is a centralized version control system, where as Git is distributed version control system

GitHub
  • is a hosting service for Git repositories
  • can host and review code, manage projects and build software
  • GitHub is free for public and open source projects
  • GitHub charges for private repositories

Bitbucket
  • is a hosting service for Git repositories
  • provides free unlimited repositories
  • Jira software integration
  • supports Mercurial in addition to Git repositories