|
What are some good examples of coding guidelines. I'm not really looking for anything specific to a single language.
But what should I be doing/evaluating as I write coding guidelines? Such as how flexible should the guidelines and how much should decisions...
Started by jtyost2 on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
One of my favorite....
UI guidelines are a different beast than the others I think.
In general, I would want guidelines to answer the questions that you would normally ask but would spaces) as well as commenting / documentation comment styles.
|
|
Do the WCAG or W3C provide any guidelines regarding when hyperlinks should open in new windows?
Started by jitendra on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
These links explain a bit more about....
Usually when a link opens a new windowIt generally considered bad for accessibility to open links in new windows.
There are no "standardized" guidelines, essentially it's a UI design decision.
|
|
Here are some good examples of coding guidelines:
What should coding guidelines do, and are there any good examples of guidelines? What about more general guidelines? Like the VCS process, communications, etc. I want to write something like this, and ...
Started by Ivan on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
No one reads (or remembers) dozens....
But here are (from my experience) some guidelines on producing guidelines:
Keep them short and simple.
The specific guidelines you choose to provide and document really depend on the nature of your.
|
Ask your Facebook Friends
|
Does your team develop its own coding guidelines? How long is the document? How often do you read/need it? How often do you make mistakes by not abiding to the guidelines?
Who has permission to edit it?
Started by sthay on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
Most of the guideline....
Most of the development teams I've worked with have had coding guidelines.
Yes we do only a small group actually make edits and distributes new versions, but we are very much for our guidelines and do share them.
|
|
What Java Programming Guidelines you are using? I know that the most common is the one provided by Sun ( http://java.sun.com/docs/codeconv/ ) but I would like to know if there are other market standards.
Started by Otavio on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
This is a case of monkey see, monkey do, which a new book which I feel communicates....
What's interesting is I bet most people didn't even know there were such guidelines, yet they were already following them.
The guidelines set by Sun.
|
|
I asked a fellow colleague yesterday if a function has too many parameters whether it would be better to create a class with properties instead. Are there any guidelines that I can follow?
Started by fr3dr1k8009 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Will the new class have any other use except running.
And C#3+ will allow for instantiation using params.
|
|
Mono claims to be compatible with .NET.
Have you tried it?
Can you share any tips or guidelines for making a running .NET application compatible with mono?
Started by FerranB on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Fun!
See.
But was [Obsolete] in MS; the "new" version worked on MS, but was NotImplementedException on mono.
|
|
New Code Sharing forum
As of today there is a new Code Sharing sub-forum of the App Store forum, for users to share family/friend codes and for developers to distribute free promo codes to interested members.
The Code Sharing sub-forum is for: users to...
Started by Doctor Q on
, 25 posts
by 15 people.
Answer Snippets (Read the full thread at macrumors):
The guidelines ....
The guidelines says the question here.
Hello,
Since I am new here this is the discussion thread for the forum, I put the question here.
And restrictions outlined in the Guidelines for Software Developers .
|
|
I work in a group of about 25 developers. I'm responsible for coming up with the database design (tables, views, etc) and am called apon for performance tuning when necessary.
There are a couple of different applications that connect. Database access ...
Started by WW on
, 12 posts
by 12 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you tested your queries on a large data set? How the right indexes in place? Do you recommend... .
Guidelines are not worth much when your junior developers to your existing guidelines/checklist.
Database you are in quite a bit of trouble.
|
|
I recently found a log statement in my projects codebase that says "here i am with search parameter==> 11/30/2008===1====00:00 AM"
what guidelines do you adhere to for writing good log messages in an application?
Started by DanielHonig on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Exception, not a new one, so just do 'throw' not 'throw e' where 'e' is your exception instance.
|