Difference between revisions of "Team !YOU - OOP344"

From CDOT Wiki
Jump to: navigation, search
m (added a section for team programming standards)
m (Added First Programming Standard)
Line 41: Line 41:
  
 
== Team Programming Standards ==
 
== Team Programming Standards ==
An area for listing our teams programming standards that we will use when constructing the project.
+
An area for listing our teams programming standards that we will use when constructing the project. Please follow these rules when writing code for this project. This will make it easier for us to help each other and collaborate in the whole process.
 +
 
 +
=== Declare only one variable in each line. ===
 +
This makes it easier to scan the code and find the type of a variable that you see somewhere else in the code.
 +
 
 +
Do:
 +
  int a;
 +
  int b = 0;
 +
  int c = a;
 +
 
 +
Don't:
 +
  int a, b = 0, c = a;

Revision as of 12:59, 25 January 2010

This is Team TBA's Project Page

You will find all project related information here

Team Members

OOP344 - 2010 Team TBA
Last Name Name Seneca ID Section Blog URL IRC nick My Contributions
Adams Matthew mdadams1 A http://www.tandemwebdesign.ca/blog MattAdams Contributions
De Oliveira Felipe fmdeoliveira A http://feliploko.wordpress.com/ fmDeOliveira Contributions
Misko Andrew ammisko A http://ammisko.blogspot.com ammisko Contributions
Ward Amy amward1 A http://amward1.wordpress.com/ award Contributions
Ziaei Minoo mziaei1 A http://minooz.wordpress.com/ Minooz Contributions
Simmalavong Niki nsimmalavong A http://oop344-niki.blogspot.com/ nsimmalavong Contributions

Name Discussion

So we should decide our final name as soon as possible. The suggestions I remember we had after last class were the ones below. Please add some if you have new ideas.

  •  !us (not us)
  •  !you (not you)
  •  !done (not done)
  •  !fail (not fail)
  •  !F (not F)
  •  !A++ (not A++)
  •  !C++ (not C++)
  • 344++
  • Overloaded Operators
  • OOPs we did it again
  • fardad.giveUs(A++ );
  • Bjarne's Angels
 fmDeOliveira: I like !A++ from these options, and I find fardad.giveUs(A++) really funny.

Team Programming Standards

An area for listing our teams programming standards that we will use when constructing the project. Please follow these rules when writing code for this project. This will make it easier for us to help each other and collaborate in the whole process.

Declare only one variable in each line.

This makes it easier to scan the code and find the type of a variable that you see somewhere else in the code.

Do:

 int a;
 int b = 0;
 int c = a;

Don't:

 int a, b = 0, c = a;