Difference between revisions of "OOP344 - Success - 20102"

From CDOT Wiki
Jump to: navigation, search
(added available times for IRC meetings)
m (IRC meetings)
Line 17: Line 17:
 
! - !! SUN<br /> !! MON<br /> !! TUE<br /> !! WED<br /> !! THU<br /> !! FRI<br /> !! SAT<br />
 
! - !! SUN<br /> !! MON<br /> !! TUE<br /> !! WED<br /> !! THU<br /> !! FRI<br /> !! SAT<br />
 
|-
 
|-
| 09:00 || B || AB || B || - || - || - || AB
+
| 09:00 || BC || ABC || B || - || - || - || ABC
 
|-
 
|-
| 10:00 || B || AB || B || - || - || - || AB
+
| 10:00 || BC || ABC || B || - || - || - || ABC
 
|-
 
|-
| 11:00 || B || AB || B || - || - || - || B
+
| 11:00 || BC || ABC || B || - || - || - || BC
 
|-
 
|-
| 12:00 || B || B || B || - || - || - || B
+
| 12:00 || B || BC || B || - || - || - || BC
 
|-
 
|-
 
| 13:00 || B || B || B || - || - || - || B
 
| 13:00 || B || B || B || - || - || - || B

Revision as of 09:28, 27 May 2010


OOP344 | Weekly Schedule | Student List | Teams | Project | Student Resources

Team Success

Short link for our team page: bit.ly/s_ss

Success is the Key

Project Development

Project Development Page

IRC meetings

IRC meeting logs

Freenode channel : #OOP344Success

Please set time in this table when you are usually available for IRC meetings (put your ID - B,C,D or E).

- SUN
MON
TUE
WED
THU
FRI
SAT
09:00 BC ABC B - - - ABC
10:00 BC ABC B - - - ABC
11:00 BC ABC B - - - BC
12:00 B BC B - - - BC
13:00 B B B - - - B
14:00 B B B - - - B
15:00 B BC B - - ABC BC
16:00 B BC B - - ABC BC
17:00 AB ABC B A A ABC ABC
18:00 AB ABC AB A AB AB ABC
19:00 AB ABC ABC AB AB AB ABC
20:00 AB ABC ABC ABC ABC ABC ABC

Member List

Success - 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

Email All Memebers

Rules to follow

(this is just an example, lets discuss it)


1. Two spaces for indentation

example:

 int main 
 {
   int i;
   int j;
   if (i == 0) 
   {
     i = 1;
   }
 }

2. Name variables like this: char myVariable; int tempSize (first letter is small);

3. Do not create variables that are never use

4. Only use breaks in switch statements

5. Begin each class with #ifndef (we will learn it later)

6. Do not use redundant statements (i.e: if (x != 0) because it same as if(x) )

7. Very important - we shouldn't use TAB for indention.

Because size of tab is different in different compilers and code could look messy

if to open it different compiler. Lets use space instead.

And each of us should set up Visual Studio to turn off TAB otherwise we can lose marks.


Note from Matthew: Look into the program you are writing on to see if you can set the number of characters your tab key will indent. For myself, I write all of my code on an application called SubEtheEdit on my mac and I can set my tab to the 2 characters we specified, so I can easily still use tab personally.

Aleh: In VisualStudio we can put settings like here and by pressing TAB spaces would be printed. I will ask Fardad if it is ok.

8. Do not create several variables in one line

int a,b; //BAD

int a; //GOOD

int b; //GOOD