Difference between revisions of "OOP344 20131 - Team A"
(→PROJECT STYLE) |
(→CONTACTS) |
||
Line 2: | Line 2: | ||
==CONTACTS== | ==CONTACTS== | ||
− | [mailto:fjzhou@myseneca.ca;lhmcintosh@myseneca.ca;bssnively@myseneca.ca;?subject=oop344- EMAIL TEAM] | + | [mailto:fjzhou@myseneca.ca;lhmcintosh@myseneca.ca;bssnively@myseneca.ca;dhamilton6@myseneca.ca;?subject=oop344- EMAIL TEAM] |
{| class="wikitable sortable" border="1" cellpadding="5" | {| class="wikitable sortable" border="1" cellpadding="5" | ||
|+ OOP344 - Winter of 2013 TEAM A MEMBERS | |+ OOP344 - Winter of 2013 TEAM A MEMBERS | ||
Line 13: | Line 13: | ||
|- | |- | ||
|[[User:Lucas Hugh Mcintosh|Lucas]]||McIntosh||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_Team_A Team A]||B||[mailto:lhmcintosh@myseneca.ca?subject=oop344 lhmcintosh]||[[Special:Contributions/Lucas Hugh Mcintosh|Lucas Hugh Mcintosh]]||Zardvark||Zardvark|| [http://lhmcintosh.blogspot.ca/ Lucas' Chronic Misadventures in Technology] | |[[User:Lucas Hugh Mcintosh|Lucas]]||McIntosh||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_Team_A Team A]||B||[mailto:lhmcintosh@myseneca.ca?subject=oop344 lhmcintosh]||[[Special:Contributions/Lucas Hugh Mcintosh|Lucas Hugh Mcintosh]]||Zardvark||Zardvark|| [http://lhmcintosh.blogspot.ca/ Lucas' Chronic Misadventures in Technology] | ||
+ | |- | ||
+ | |[[User:Daniel%20Hamilton|Daniel]]||Hamilton||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_Team_A Team A]||B||[mailto:dhamilton6@myseneca.ca?subject=oop344 dhamilton6]|| || |||| | ||
|} | |} | ||
Revision as of 17:23, 12 February 2013
Team A
CONTACTS
First Name | Last Name | Team Name | Section | Seneca Id | wiki id | IRC nick | GITHUB ID | Blog URL |
---|---|---|---|---|---|---|---|---|
Benjamin | Snively | Team A | B | bssnively | Benjamin Snively | UltraVioletLabel | UltraVioletLabel | The Art Of Goto |
Ken | Zhou | Team A | B | fjzhou | Fen Jian Zhou | noobiedev | noobiedev | www.noobiedev.com |
Lucas | McIntosh | Team A | B | lhmcintosh | Lucas Hugh Mcintosh | Zardvark | Zardvark | Lucas' Chronic Misadventures in Technology |
Daniel | Hamilton | Team A | B | dhamilton6 |
PROJECT STYLE
- Indentation
- TAB key set 2 and space
- Blocks
- function(....) {
}
- Variable Naming
- first word lowercase, subsequent words will have first letter capitalized
for instance:
switch(value) {
case 1: doSomething();
case 2: doSomethingElse(); break;
default: doDefaultThing();
}