Models | Examples |
---|---|
Display ads | Yahoo! |
Search ads |
[WIP]
Agile is a project management discipline for IT/Software industry. Agile software development process is based on an incremental and iterative approach.
Scrum is a subset of Agile. It is a lightweight process framework for agile development.
A Scrum team is cross-functional, maintaining a flat team structure instead of hierarchical one. There are no project managesrs or team leaders in the traditiaonal sense. Ideal team members are 5-9 people.
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
var fileUrl = "http://twitter.github.com/bootstrap/assets/bootstrap.zip"; | |
var output = "bootstrap.zip"; | |
request({url: fileUrl, encoding: null}, function(err, resp, body) { | |
if(err) throw err; | |
fs.writeFile(output, body, function(err) { | |
console.log("file written!"); | |
}); | |
}); |
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
git branch -m old-branch-name new-branch-name | |
git push origin :old-branch-name | |
git push --set-upstream origin new-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
# Put these on `.bash_profile` | |
# GitHub | |
alias git l='git log --pretty=oneline' |
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
.btn {} | |
.btn-default {} | |
.btn-primary {} | |
.btn-success {} |
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
/* block */ | |
.container {} | |
.alerts {} | |
/* element */ | |
.alerts__error {} | |
.notifications__warnning {} | |
/* modifier */ | |
.alerts--show {} |
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
css/ | |
vendor/ | |
xyz/ | |
xyz.min.css | |
sass/ | |
header.sass | |
theme.sass | |
sidebar.sass | |
final.css |
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
/** | |
file: theme.css | |
description: Common theme styles | |
date-created: February 28, 2017 | |
date-modified: March 01, 2017 | |
authors: | |
- _thinkholic | |
- Ind | |
includes: | |
- Header |
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
/** ------------------------- | |
=Header | |
-------------------------- */ |
OlderNewer