Difference between revisions of "OOP344 20131 - iCODE"

From CDOT Wiki
Jump to: navigation, search
(Style Guide for iCODE)
(iCODE Team Page)
Line 1: Line 1:
 
= iCODE Team Page =
 
= iCODE Team Page =
----------------------------------------------------------------------------------------------------
+
==CONTACTS==
team name: iCODE
 
  
nickname 1: CallaQ
+
[mailto:hqiao3@myseneca.ca;cchen116@myseneca.ca;yhwong6@myseneca.ca;jmfeng1@myseneca.ca?subject=oop344-iCODE EMAIL TEAM MEMBER]
 
+
number of team members: 4
name 1: Haiyu
 
 
 
surname 1: Qiao
 
 
 
seneca username 1: hqiao3
 
  
github id 1: haiyuqiao
+
{| class="wikitable sortable" border="1" cellpadding="5"
 +
|+ OOP344 - iCODE Team Member list (Winter of 2013)
  
------------
+
! First Name !! Last Name !! Team Name !! Section !! Seneca Id !! wiki id !!  IRC nick !! GITHUB ID !! Blog URL !! Area
  
nickname 2: Garycc
+
|-
 +
|[[User:Haiyu Qiao|Haiyu]]||Qiao||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_iCODE iCODE]||B||[mailto:hqiao3@myseneca.ca?subject=oop344 hqiao3]||[[Special:Contributions/Haiyu Qiao |Haiyu Qiao]]||CallaQ||haiyuqiao|| [http://haiyuqiao.blogspot.ca/ C++ Island]||CButton
 +
|-
 +
|[[User:Chun Chen|Chun]]||Chen||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_iCODE iCODE]||B||[mailto:cchen116@myseneca.ca?subject=oop344 cchen116]||[[Special:Contributions/Chun Chen|Chun Chen]]||Garycc||Garycc|| [http://garycc.blogspot.com/ GaryC's blog]||ClineEdit
 +
|-
 +
|[[User:Yue Heng Wong|Yue Heng(Brian)]]||Wong||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_iCODE  iCODE]||B||[mailto:yhwong6@myseneca.ca?subject=oop344 yhwong6]||[[Special:Contributions/Yue Heng Wong|Yue Heng Wong]]||byhwong||yhwong||[http://byhwong.blogspot.com/ Brian's blog]||CLabel
 +
|-
 +
|[[User:Jie Ming Feng|Jie Ming(Jay)]]||Feng||[http://zenit.senecac.on.ca/wiki/index.php/OOP344_20131_-_iCODE  iCODE]||B||[mailto:jmfeng1@myseneca.ca?subject=oop344 jmfeng1]||[[Special:Contributions/Jie Ming Feng|Jie Ming Feng]]||jayfeng||jayfeng||[http://jayfeng.wordpress.com/ Blue Jay C++]||CDialog
  
name 2: Chun
+
|}
  
surname 2: Chen
+
==PROJECT STYLE==
  
seneca username 2: cchen116
 
 
github id 2: Garycc
 
 
------------
 
 
nickname 3: Brian
 
 
name 3: Yue Heng
 
 
surname 3: Wong
 
 
seneca username 3: yhwong6
 
 
github id 3: yhwong
 
 
------------
 
 
nickname 4: Jay
 
 
name 4: Jie Ming
 
 
surname 4: Feng
 
 
seneca username 4: jmfeng1
 
 
github id 4: jayfeng
 
 
number of team members: 4
 
------------
 
==Style==
 
 
*Indentations are to be in spaces of 4
 
*Indentations are to be in spaces of 4
 
*blocks are to be coded as follows:
 
*blocks are to be coded as follows:
Line 57: Line 28:
 
** the ending bracket is standalone
 
** the ending bracket is standalone
 
*Variables and class names are to be in camel case. Variable names should beign with a lowercase letter and class names should begin with an uppercase letter.
 
*Variables and class names are to be in camel case. Variable names should beign with a lowercase letter and class names should begin with an uppercase letter.
 +
 +
Example:
 +
<pre>
 +
if(data){
 +
    ...
 +
}
 +
else{
 +
    ...
 +
}
 +
 +
</pre>

Revision as of 05:18, 13 February 2013

iCODE Team Page

CONTACTS

EMAIL TEAM MEMBER number of team members: 4

OOP344 - iCODE Team Member list (Winter of 2013)
First Name Last Name Team Name Section Seneca Id wiki id IRC nick GITHUB ID Blog URL Area
Haiyu Qiao iCODE B hqiao3 Haiyu Qiao CallaQ haiyuqiao C++ Island CButton
Chun Chen iCODE B cchen116 Chun Chen Garycc Garycc GaryC's blog ClineEdit
Yue Heng(Brian) Wong iCODE B yhwong6 Yue Heng Wong byhwong yhwong Brian's blog CLabel
Jie Ming(Jay) Feng iCODE B jmfeng1 Jie Ming Feng jayfeng jayfeng Blue Jay C++ CDialog

PROJECT STYLE

  • Indentations are to be in spaces of 4
  • blocks are to be coded as follows:
    • the beginning bracket must go with the statement
    • the ending bracket is standalone
  • Variables and class names are to be in camel case. Variable names should beign with a lowercase letter and class names should begin with an uppercase letter.

Example:

if(data){
    ...
}
else{
    ...
}