Tagged Questions
The naming-convensions tag has no wiki summary.
2
votes
1answer
83 views
Browser Autocomplete Naming Conventions and Testing
Is there a comprehensive list of browser autocomplete naming conventions somewhere? I would like to know what to name form fields and such so the browser can autocomplete them, and so I can decide if ...
1
vote
7answers
325 views
Coding conventions for method returns in C++
I have observed that the general coding convention for a successful completion of a method intended functionality is 0. (As in exit(0)).
This kind of confuses me because, if I have method in my if ...