0
votes
4answers
100 views
R code examples/best practices
I'm new to R and having a hard time piecing together information from various sources online related to what is considered a "good" practice with writing R code. I've read basic guides but I've been …
1
vote
6answers
136 views
Is there a standard in java to use _ [underscore] in front of variable or class name
I have seen some of our colleagues using _ [underscore] in front of class names [entities in JPA], and few more people using it for local variables.
Is there a standard[or atleast best practice] in …
15
votes
17answers
828 views
Constant abuse?
I have run across a bunch of code in a few C# projects that have the following constants:
const int ZERO_RECORDS = 0;
const int FIRST_ROW = 0;
const int DEFAULT_INDEX = 0;
const …
248
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
computer program …
1
vote
6answers
102 views
Developers checking in non-conforming code
Consider a situation where a group of developers work independently(more or less) on projects. The dept. has a published standard to ensure code quality on issues like:
no inline/embedded/dynamic …
4
votes
16answers
310 views
Assigning “null” to objects in every application after their use
Do you always assign null to an object after its scope has been reached?
Or do you rely on the JVM for garbage collection?
Do you do it for all sort of applications regardless of their length?
If …
3
votes
2answers
179 views
Examples of Spartan Programming in C#
I am interested in reading examples of code in C# that makes use of the Spartan Programming philosophy. Can you please provide a link to any open source project or online code sample that follows …
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?
And by strangest I …
2
votes
2answers
65 views
When should I use a prefix on Objective C classes?
According to Apple, two to three letter prefixes should be used
when naming classes, protocols, functions, constants, and typedef structures.
Does this include classes which are not intended to …
6
votes
13answers
568 views
Should ‘if’ statement always have an ‘else’ clause?
This may be a religious argument, but it has been debated ad-nauseum here at my work whether all IF statements should include an ELSE clause - even if the ELSE clause only contains a comment stating …
10
votes
17answers
482 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.. So we are flying a …
6
votes
16answers
471 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? If you
are aware …
1
vote
1answer
46 views
Using switch to compare multiple values in an array in PHP
I recently found a situation in which I had two related variables that had several permutations upon which I wanted to do an action if the two variables were one of half a dozen permutations.
As an …
1
vote
5answers
157 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 just software guys)
…
-1
votes
9answers
172 views
How do you like your naming conventions?
I looked at MSDN .NET Naming Guidelines about 2 years ago and i remember not liking certain things. Now that i used .NET more i cant remember what they were nor have complaints now.
I know ruby …
