Difference between revisions of "Team !YOU - OOP344"

From CDOT Wiki
Jump to: navigation, search
(arranging team members by last name)
m (Put the pointer identifier(*) right after the target variable type)
Line 60: Line 60:
 
=== Do not use tabs when indenting. ===
 
=== Do not use tabs when indenting. ===
 
The tab space is interpreted different across different software and operating systems. Use normal spaces to add indentation instead.
 
The tab space is interpreted different across different software and operating systems. Use normal spaces to add indentation instead.
 +
 +
=== Put the pointer identifier(*) right after the target variable type. ===
 +
Pointers are hard enough to deal with. It only makes it more complicated if they are declared differently throughout the code.
 +
 +
Do:
 +
  int* p1;
 +
  char* p2;
 +
 +
Don't:
 +
  int *p1;
 +
  char *p2;

Revision as of 13:04, 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
Catibog Timothy tjcatibog A http://tjprogramming.blogspot.com/ tjcatibog Contributions
Daniels Matthew mddaniels A http://cdnpadawan.wordpress.com/ CDNPadawan Contributions
De Oliveira Felipe fmdeoliveira A http://feliploko.wordpress.com/ fmDeOliveira Contributions
Misko Andrew ammisko A http://ammisko.blogspot.com ammisko Contributions
Simmalavong Niki nsimmalavong A http://oop344-niki.blogspot.com/ nsimmalavong Contributions
Ward Amy amward1 A http://amward1.wordpress.com/ award Contributions
Ziaei Minoo mziaei1 A http://minooz.wordpress.com/ Minooz 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;

Do not use tabs when indenting.

The tab space is interpreted different across different software and operating systems. Use normal spaces to add indentation instead.

Put the pointer identifier(*) right after the target variable type.

Pointers are hard enough to deal with. It only makes it more complicated if they are declared differently throughout the code.

Do:

 int* p1;
 char* p2;

Don't:

 int *p1;
 char *p2;