162
votes
44answers
7k views
How do you handle poor quality code from team members?
I know most people have code review and standards in place, but I work at a place with poor standards. I'm not saying that my code is flawless by any means, but I find the code my …
28
votes
21answers
3k views
c# Coding standard / Best practices
I'm a recent AI graduate (circa 2 years) working for a modest operation. It has fallen to me (primarily as Im the first 'adopter' in the department) to create a basic (read useful? …
21
votes
28answers
1k views
What are some of your most useful database standards?
I will start you off with some basic examples, but I really want to know what makes things go smoothly for you in the database aspect:
Table name matches Primary Key name and des …
19
votes
6answers
731 views
Non-Standard Attributes on HTML Tags. Good Thing? Bad Thing? Your Thoughts?
HTML (or maybe just XHTML?) is relatively strict when it comes to non-standard attributes on tags. If they aren't part of the spec, then your code is considered non-compliant.
Non …
16
votes
9answers
1k views
What is currently the best way to get a favicon to display in all browsers that support Favicons?
What is currently the best way to get a favicon to display in all browsers that currently support it?
Please include:
Which image formats are supported by which browsers.
Which …
15
votes
10answers
559 views
Why are Page Titles on some websites (including Stack Overflow) Clickable URLs?
Why on sites like Stack Overflow, Techcrunch, Smashingmagazine, etc. are the page titles (i.e. the text at the top of the page) clickable URLs that redirect to the same page that t …
12
votes
8answers
446 views
What standards does your team enforce for a major-version code deployment?
I'm curious as to what sort of standards other teams make sure is in place before code ships (or deploys) out the door in major releases.
I'm not looking for specific answers to e …
12
votes
7answers
290 views
Is there a “canonical” name for a function combining min() and max()?
I find that I frequently end up writing a function that I always call "clamp()", that is kind of a combination of min() and max(). Is there a standard, "canonical" name for this f …
12
votes
9answers
534 views
Is it practical to build a web site using strict XHTML and relying on CSS 100% for visual style?
I tend to take the academic approach all too often and adhere to strict principles in my development when the reality is that I could have finished the project sooner had I been a …
12
votes
6answers
714 views
What’s the best “file format” for saving complete web pages (images, etc.) in a single archive?
I'm working on a project which stores single images and text files in one place, like a time capsule. Now, most every project can be saved as one file, like DOC, PPT, and ODF. But …
12
votes
9answers
3k views
What are the rules about using an underscore in a C++ identifier?
It's common in C++ to name member variables with some kind of prefix to denote the fact that they're member variables, rather than local variables or parameters. If you've come fro …
12
votes
9answers
1k views
List of standard lengths for database fields
I'm designing a database table and once again asking myself the same stupid question: How long should the firstname field be?
Does anyone have a list of reasonable lengths for the …
10
votes
1answer
452 views
New unicode characters in C++0x
I'm buiding an API that allows me to fetch strings in various encodings, including utf8, utf16, utf32 and wchar_t (that may be utf32 or utf16 according to OS).
New C++ standard h …
10
votes
9answers
746 views
Is it legal to use the increment operator in a C++ function call?
There's been some debate going on in this question about whether the following code is legal C++:
std::list<item*>::iterator i = items.begin();
while (i != items.end())
{
…
10
votes
7answers
2k views
Are iframes considered ‘bad practice’?
Somewhere along the line I picked up the notion that using iframes is 'bad practice'.
Is this true? What are the pros/cons of using them?
