Tagged Questions

10
votes
17answers
425 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.. …
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 …
0
votes
5answers
66 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 …
71
votes
96answers
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? …
2
votes
2answers
38 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 …
5
votes
9answers
287 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 …
1
vote
6answers
78 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 searc …
6
votes
6answers
268 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 …
6
votes
19answers
491 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 …
1
vote
2answers
128 views

Coding style: function and procedures coding standard

Ch 7.6 of Code Complete 2 is confusing me, I've attached some sample code (in php) mind telling me which style is the best? or suggest something better? thanks Style 1 public fun …
40
votes
29answers
2k views

Checking in of “commented out” code

Ok, here is something that has caused some friction at my current job and I really didn't expect it to. Organized in house software development is a new concept here and I have dra …
7
votes
4answers
111 views

What should the standard be for ReSTful URLS?

Since I can't find a chuffing job, I've been reading up on ReST and creating web services. The way I've interpreted it, the future is all about creating a web service for all your …
3
votes
6answers
127 views

3-Tiered Web Architecture: Are Layers on Seperate Machines Beneficial?

A client I'm working for has a standard in which they require the data layer of new applications to be wrapped into a web service, and placed a machine seperate from where the busi …
2
votes
8answers
327 views

How to code in professional manner?

I was wondering, how a program can be written in a perfect professional style. Many times it happens that we write a very good program/code which gives the accurate outpu …
22
votes
45answers
2k views

Is Programming Style important? How Important?

Last year I was troubleshooting a team member's code and it was lacking indents and comments. I was talking to him about it telling him it was not a good idea but he got offended. …

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