Difference between revisions of "Team !YOU - OOP344"
Fmdeoliveira (talk | contribs) m (→Added First Programming Standard) |
Fmdeoliveira (talk | contribs) m (→Do not use tabs when indenting) |
||
Line 53: | Line 53: | ||
Don't: | Don't: | ||
int a, b = 0, c = a; | 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. |
Revision as of 13:01, 25 January 2010
This is Team TBA's Project Page
You will find all project related information here
Contents
Team Members
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;
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.