1
vote
1answer
38 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
votes
9answers
161 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 …
6
votes
13answers
534 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 …
0
votes
2answers
120 views
Coding Standard [closed]
What do you gurus consider to be a very good coding standard in terms of PHP programming? Please advise!
3
votes
1answer
46 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 realised that 2010 is …
0
votes
10answers
95 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 hold x values
…
0
votes
4answers
41 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)
{
// Do …
1
vote
5answers
152 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
vote
3answers
125 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 block name, as below?
…
1
vote
8answers
253 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
class …
6
votes
16answers
457 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 …
0
votes
5answers
76 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, …
10
votes
17answers
474 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 …
2
votes
4answers
68 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
vote
5answers
81 views
Should query languages have priority of operator OR higher than priority of AND ?
Traditionally most programming languages have priority of AND higher than priority of OR so that expression "a OR b AND c" is treated as "a OR (b AND c)". Following that idea search engines and …
