Tagged Questions

0
votes
4answers
95 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 …
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 …
10
votes
18answers
786 views

Setting variable to NULL after free …

In my company there is a coding rule that says, after freeing any memory, reset the variable to NULL. For example ... void some_func () { int *nPtr; nPtr = malloc (100); free (nPtr); …
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 …
22
votes
37answers
2k views

Most crucial elements in a light-weight C++ coding standard

I've been involved in developing coding standards which were quite elaborate. My own experience is that it was hard to enforce if you don't have proper processes to maintain it and strategies to …
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 …
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 …
0
votes
6answers
88 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 routines, …
4
votes
4answers
180 views

StyleCop for other languages

Hi, weve been using StyleCop for enforcing coding standards in C#, I was wondering are there similar tools for other languages? namely: js css sql
4
votes
2answers
279 views

Good example of written Rails coding standards?

I'm in the process of developing written code standards for a Rails app and am looking for some good examples of coding standards developed by others. Something that expands a bit on the ideas …
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 …
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 …
2
votes
4answers
73 views

Oracle Coding Standards Feature Implementation

Okay, I have reached a sort of an impasse. In my open source project, a .NET-based Oracle database browser, I've implemented a bunch of refactoring tools. So far, so good. The one feature I was …

1 2 3 4 5 14 next
15 30 50 per page