0
votes
2answers
85 views
Coding Standard [closed]
What do you gurus consider as a very good coding standard in terms of PHP programming? Please advice!
3
votes
1answer
35 views
StyleCop for ReSharper
I like stylecop and we use it to enforce coding standards.
I dont like the fact that there is no way to automatically fix problems. So was thinking of making a plugin. Once I real …
0
votes
10answers
93 views
PHP specific - clean code, naming conventions and documentation
What are some of the best practices for clean code, naming conventions and documentation for PHP?
I see users/people saying this is a bad practice, Example:
// Create an array to …
243
votes
152answers
20k views
What are Code Smells? What is the best way to correct them?
OK, so I know what a code smell is, and the Wikipedia Article is pretty clear in its definition:
In computer programming, code smell is
any symptom in the source code of a
…
1
vote
5answers
148 views
What standards do you use? [closed]
This question recently came up in work, posed by directors and filtered down the chain
"What standards do you use on a daily basis?"
(This was actually posed to all engineers not …
0
votes
4answers
37 views
How to document the Main method?
Okay, so I've got a .NET console application with it's Main method, contained in a Program class. You know, the usual:
class Program
{
static void Main(string[] args)
{
…
1
vote
3answers
120 views
C# coding style: braces [closed]
Most C# style guides recommend putting the open brace of a block on a new line:
MyBlock
{
...
}
Why is this preferable to keeping the open brace on the same line as the bloc …
5
votes
16answers
439 views
Coding Standards / Coding Best practices in C++
Consider the two code segments below.
Which one is better and Why? If you
have any other idea, please do
mention. Where can I find answers to
coding practices like these …
10
votes
17answers
470 views
Besides “treat warnings as errors” and fixing memory leaks, what other ideas should we implement as part of our coding standards?
First let me say, I am not a coder but I help manage a coding team. No one on the team has more than about 5 years experience, and most of them have only worked for this company.. …
1
vote
8answers
242 views
Coding practices in C++, what is your pick and why?
I have a big object say MyApplicationContext which keeps information about MyApplication such as name, path, loginInformation, description, details and others..
//MyApplicationCtx …
73
votes
99answers
16k views
What was the strangest coding standard rule that you were forced to follow?
When I asked this question I got almost always a definite yes you should have coding standards.
What was the strangest coding standard rule that you were ever forced to follow?
…
6
votes
6answers
293 views
Why does StyleCop recommend prefixing method or property calls with “this”?
I have been trying to follow StyleCop's guidelines on a project, to see if the resulting code was better in the end. Most rules are reasonable or a matter of opinion on coding stan …
0
votes
5answers
72 views
what to do about Procedural code, business logic and queries in PHP
I have been tasked with supporting and maintaining several PHP/MySQL web apps (I use the term 'app' lossely) that seem to defy every known coding standard.
The PHP code contains …
5
votes
9answers
292 views
Guideline: while vs for
Disclaimer: I tried to search for similar question, however this returned about every C++ question... Also I would be grateful to anyone that could suggest a better title.
There a …
6
votes
19answers
523 views
C# - Any standard way to divide a class into regions?
I was wondering if there is some standard way to divide a class into regions.
almost every project is using a different "region approach" (even classes within the same project).
W …
