Difference between revisions of "OOP344 - Success - 20102"
(→Member List: Added team rules) |
m (→Member List: Changed link for mjschranz blog post) |
||
Line 19: | Line 19: | ||
| B ||Quan || Jason ||[mailto:jquan4@learn.senecac.on.ca jquan4] || A || http://jasonquan.wordpress.com/ || JQuan || n/a || [[Special:Contributions/Jquan4| Contributions]] || | | B ||Quan || Jason ||[mailto:jquan4@learn.senecac.on.ca jquan4] || A || http://jasonquan.wordpress.com/ || JQuan || n/a || [[Special:Contributions/Jquan4| Contributions]] || | ||
|- | |- | ||
− | | C ||Schranz || Matthew ||[mailto:mjschranz@learn.senecac.on.ca mjschranz] || A || http://mjschranz.wordpress.com/ || mjschranz || n/a || [[Special:Contributions/mjschranz| Contributions]] || | + | | C ||Schranz || Matthew ||[mailto:mjschranz@learn.senecac.on.ca mjschranz] || A || [http://mjschranz.wordpress.com/category/oop344-project/ OOP344 Blog Posts] || mjschranz || n/a || [[Special:Contributions/mjschranz| Contributions]] || |
|- | |- | ||
| D || Balzamova || Irina ||[mailto:ibalzamova@learn.senecac.on.ca ibalzamova] || A || http://bikarin.blogspot.com/ || iIra ||n/a || [[Special:Contributions/Irina | Contributions ]] || | | D || Balzamova || Irina ||[mailto:ibalzamova@learn.senecac.on.ca ibalzamova] || A || http://bikarin.blogspot.com/ || iIra ||n/a || [[Special:Contributions/Irina | Contributions ]] || | ||
Line 26: | Line 26: | ||
|- | |- | ||
|} | |} | ||
+ | |||
== Rules to follow == | == Rules to follow == | ||
(this is just an example, lets discuss it) | (this is just an example, lets discuss it) |
Revision as of 12:09, 19 May 2010
OOP344 | Weekly Schedule | Student List | Teams | Project | Student Resources
Team Success
Project Development
IRC meetings
Member List
ID | Last Name | Name | Seneca Username | Section | Blog Url | IRC Nick | SVN ID | My Contributions | Role |
---|---|---|---|---|---|---|---|---|---|
A | Pliats | Aleh | apliats | A | http://oleg-oop.blogspot.com/ | oleg_pliats | n/a | Contributions | |
B | Quan | Jason | jquan4 | A | http://jasonquan.wordpress.com/ | JQuan | n/a | Contributions | |
C | Schranz | Matthew | mjschranz | A | OOP344 Blog Posts | mjschranz | n/a | Contributions | |
D | Balzamova | Irina | ibalzamova | A | http://bikarin.blogspot.com/ | iIra | n/a | Contributions | |
E | Park | Hong Geung | hgpark | A | http://goldenration.wordpress.com/ | goldenration | n/a | Contributions |
Rules to follow
(this is just an example, lets discuss it)
1. Two spaces for indentation
ex/
int main { int i; int j; if (i == 0) { i = 1; } }
2. camel for vars ex: char thisIsCamel; int forLoop;
3. Do not create variables that are never use
4. Only use breaks in switch statements
5. Begin each class with #ifndef
6. Do not use redundant statements (i.e: if (x != 0) )
7. Comment with '/*' example: /* insert comment here */. Do not use '//' because that is use in c++ (we're coding in C)