Difference between revisions of "Code Hunters"
Joshua Lane (talk | contribs) (→Team Members) |
Joshua Lane (talk | contribs) (→Coding Rules) |
||
Line 52: | Line 52: | ||
*: | *: | ||
== Coding Rules == | == Coding Rules == | ||
+ | <pre> | ||
+ | int main(){ | ||
+ | int var; //All variables declared with own type | ||
+ | int* var2; //asterisk on pointer type | ||
+ | |||
+ | if(...){ | ||
+ | var = 0; //three spaces for indentation, check tab length in your editor | ||
+ | } //closing brace lined up with last line in block, brace gets own line | ||
+ | else var = 1; | ||
+ | |||
+ | } //comment end of functions and long code blocks | ||
+ | </pre> | ||
+ | |||
== meetings == | == meetings == | ||
* latest will be on top | * latest will be on top |
Revision as of 11:32, 19 October 2012
Contents
Team Name (Code Hunters)
Project Marking Percentage
- due immediately
Group work: XX% (25 <= xx <= 50) Individual work: XX% + (50 <= xx <= 75) ------------------------- Total 100%
Repository
- repo Github id:
Team Members
First Name | Last Name | Section | Seneca Id | GITHUB ID | wiki id | IRC nick | Blog URL |
---|---|---|---|---|---|---|---|
Steven (Szu-Han) | Chen | B | sschen4 | chensteven | chensteven | chensteven | Steven's Blog |
Joshua | Lane | B | jlane4 | jlane4 | Joshua Lane | jlane4 | Joshua Lane oop344 |
Bo | Liu | B | bliu54 | bobliuf | Bo Liu | bobliuf | Boliu's blog |
Stanislav | Yeshchenko | B | syeshchenko | syeshchenko | Stanislav Yeshchenko | stan_seneca | Stan's OOP344 blog |
Yun | Yang | B | yyang154 | hamumu | Yun Yang | hamumu | yun's oop344 |
Issues and Status
Issue description and/or number (1)
- Assigned to: FULLNAME
- Code review by: FULLNAME
- Status:
- (being developed/pull request/being reviewed/pushed to master)
- comments:
Issue description and/or number (2)
- Assigned to: FULLNAME
- Code review by: FULLNAME
- Status:
- (being developed/pull request/being reviewed/pushed to master)
- comments:
Coding Rules
int main(){ int var; //All variables declared with own type int* var2; //asterisk on pointer type if(...){ var = 0; //three spaces for indentation, check tab length in your editor } //closing brace lined up with last line in block, brace gets own line else var = 1; } //comment end of functions and long code blocks
meetings
- latest will be on top