-
name of the current banch and nothing else (for automation)
git rev-parse --abbrev-ref HEAD -
all commits that your branch have that are not yet in master
git log master..<HERE_COMES_YOUR_BRANCH_NAME>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| age <- c(21,21,19, 30,21,21,19,30) | |
| gender <- c('M','M','N','M','F','F','F','F') | |
| civil_status <- c('MARRIED','SINGLE','SINGLE','SINGLE','MARRIED','SINGLE','WIDOW','DIVORCED') | |
| salary <-c (3000.0,1200.0 ,32000.0,1800.0 ,2900.0 ,1100.0 ,10000.0,1500.0) | |
| has_children <-c (TRUE,FALSE,TRUE,TRUE,TRUE,FALSE,FALSE,TRUE) | |
| available_credit <- c (2200,100,22000,1100,2000,100,6000,2200) | |
| sample.data <- data.frame(age, gender, civil_status, salary, has_children, available_credit) | |
| print(dim(sample.data)) | |
| sample.data |
#Prerequisites#
- Sails.js (See https://github.com/balderdashy/sails)
- Ember Tools (See https://github.com/rpflorence/ember-tools)
- Twitter Bootstrap (See http://twitter.github.io/bootstrap/index.html)
- Passport.js (See http://passportjs.org)
npm install passportnpm install passport-local
(Probably could express this aspackage.json)
#Steps#