Tagged Questions

Code quality is a measure of how well a set of code balances qualities of maintainability, performance, and style.

learn more… | top users | synonyms

70
votes
20answers
2k views

How to define code quality in a contract? [closed]

At my workplace we want to outsource some parts of our software development project to an external contractor (another company with multiple developers). Our greatest fear is that although all ...
58
votes
21answers
2k views

How do I get developers to treat test code as “real” code?

In the last two companies I've been at, I have found an overriding mentality among developers that it's okay to write unit tests in a throw-away style. Code that they would never write in the actual ...
56
votes
12answers
2k views

Is it worth creating a method if it is going to be called just from a single location?

A discussion I had today at work with one co worker. Is it worth creating a separate method, if it is going to be called just from a single location?. True, may be in the future you will have to call ...
51
votes
14answers
2k views

Java getter chaining bad or good?

To prevent monster constructors and monster interfaces with oversized delegating classes, I use alot of classes that hold other objects which again hold other objects. Therefore my code looks like ...
40
votes
17answers
2k views

Tools to identify code duplications

I have being reading and tracking some questions on code reuse and I have this question: Are there any tools to identify duplicate or similar code? I have googled this a while ago and found nothing ...
31
votes
6answers
1k views

How to write high quality Javascript

I have been in the process of learning Javascript to complement ASP.NET. I have a strong background in general programming, and have always been an advocate of disciplined practices and good hygiene ...
23
votes
23answers
3k views

How to increase code quality?

I would like to increase the code quality of myself and my team. What do you recommend me to do in order to achieve that? We are working with Visual Studio and C# (don't know if it's relevant ...
22
votes
9answers
1k views

How did Perl gain a reputation for being a write-only language?

How did Perl gain a reputation (deserved, undeserved, or used to be deserved, no longer so) of being a "write only language"? Was it The syntax of the language Specific features that were available ...
15
votes
5answers
2k views

How do you implement requirements traceability in practice?

I am currently examining the benefits and costs of introducing requirements traceability into the development process where I work. I can see the potential benefits to the stakeholders of ...
11
votes
4answers
244 views

Automatic logging for Python

I've worked on codebases for a number of big web projects in Python, and I always see a lot of logging lines in the code, such as: def report_view(request): log('report view started') try: ...
10
votes
5answers
317 views

Is fxcop a valuable/effective tool for improving code quality?

I have a large high quality c# framework codebase that I nevertheless want to try to improve. Is fxcop an effective tool for improving .NET frameworks? I know Microsoft uses the tool internally, ...
9
votes
5answers
939 views

Tips on a tool to measure code quality?

I'm looking for a tool that can provide code quality metrics. For instance it could report very long functions (spaghetti code) very complex classes (which could contain do-it-all code) ... While ...
9
votes
5answers
608 views

Tools to detect Dead code in delphi2007 or above

Are there good tools to detect dead code in DELPHI2007 or above? That can integrate with the IDE? The option to look at blue dots is just time consuming, so it’s ruled out.
8
votes
2answers
153 views

Tools to identify code duplications *for JavaScript*

No answer to Tools to identify code duplications deal with JavaScript. Are there tools to identify code duplication for JavaScript?
8
votes
2answers
83 views

Is it possible to do a spell check of method names/classnames in a build step

We want to improve quality of names used in 'symbols' (classnames, methodnames, member variables) Normal spell check does not work as we can have various meaningful names that are not really ...
8
votes
9answers
216 views

How do you encourage fellow programmers to care about code readability? [closed]

I've noticed some programmers do not seem to have much desire to write clean, organized, and readable code. What are some good ways to encourage consistent indentation, good naming of variables and ...
8
votes
8answers
317 views

Putting a dollar value on code quality

As noted in another thread, "In most businesses, code quality is defined in dollars." So my company has an opportunity to acquire a large-ish C code base. Obviously, if the code quality is good, the ...
8
votes
18answers
626 views

Would you feel offended or upset if another developer ran a code beautifier on the code base?

I am working on a project which other developers work on. I would like the code to be standardized. I don't necessarily care what standard it is (K&R, GNU, 2 lines max, 1 line max, spacing between ...
8
votes
13answers
1k views

Why use base16 numbers in code when base10 numbers are more readable?

I have seen many people uses base16 numbers in code where a base10 number is more readable. Here is a c# code. byte[] b = new byte[0x1000]; For me the below is more readable, byte[] b = new ...
8
votes
2answers
197 views

tool for detecting commented-out code

It is agreed by many that commented out code is a bad thing if you are using source control. (And it is agreed by many more, that if you are not using source control, that is even a worse thing). ...
8
votes
12answers
381 views

Effective technique to reduce and eliminate warnings in a large code base?

I have been involved in the development of large code bases that grew to millions lines of code over the course of multiple years and where the amount of warnings grew out of control because it was ...
7
votes
2answers
131 views

tool for finding the longest C function?

I'm dealing with some old (and bad) C code. Some of the functions in it are very long. I'm wondering if there is an existing tool that can give me some statistics on things like: how many functions ...
7
votes
4answers
1k views

Is there any static code analysis tool like checkstyle for Objective-C?

Checkstyle is a great tool to enforce a code standards for java. We have some projects working with objective-c, and I tried to find some similar tool like checkstyle for Objective-C, but didn't get ...
7
votes
15answers
497 views

Do I need to have meaningful names for loop control variables?

Code Complete book suggested, it is a good practice to use meaningful names for loop control variables. For example: for(int month=0; month < MONTHS_PER_YEAR; month++){ // processing } ...
7
votes
12answers
626 views

Production Ready Code / Product Requirements

What are the things that we need to ensure before a software goes alive. I assume that the software is a commercial product. But most of them applies to OSS as well. I made it community wiki so feel ...
6
votes
2answers
158 views

automatically create testcode from class(jars)

We have thousands of classes without any true unit test coverage. As special project we aim to add reasonable coverage to all. One option is to create tests from sourced code and use ...
6
votes
5answers
273 views

Java code review annotations

Is there any frameworks which give an incomplete / stub annotation? Also TODO and FIXME would be great. Ideally what I'm looking for are annotations to be processed at compile time which could be ...
6
votes
6answers
3k views

'variable' was used before it was defined

I am checking if a variable is defined or not, and if it is not defined explicitly I am going to define it by doing: if ( typeof(aVariable) == 'undefined' ) { var aVariable = value; } Because the ...
6
votes
12answers
304 views

Is writing good code an asset or a liability? (maintenance contracts)

We all know that writing quality, well-factored code is an asset for code maintenance, ease of bug-fixing, and development of new features, but I would like to approach the subject from a different ...
6
votes
6answers
1k views

Simpson's Integral in Common Lisp

I just wrote a simple Common Lisp program to find out Simpson's Integral: ;Integration by Simpson's rule; CL code ;Found to be working correctly with 'clisp' (defun simpsons(f a b n) ...
5
votes
6answers
149 views

Good approaches to enforce building with increased warning level for new C++ code

I've inherited a large C++ codebase for several Windows applications that successfully is in use by many customers. The codebase is large, >1mill LOC. The codebase has a history of 15+ years. The ...
5
votes
2answers
417 views

PHP Tools for quality check

Are there tools for PHP to check the quality of code? I understand in Java they have tools like Parasoft which checks the quality and security of code and informs you of any changes to be made.
5
votes
7answers
233 views

Should I insist that we perform code reviews before merging back to trunk or am I just a code quality bitch? [closed]

I'm working in a small development time with very limited time for development. We develop a tool that is important for the result of our work, but not used daily. I am the only person in the team ...
5
votes
4answers
502 views

automatic code quality and architecture quality (static-code-analysis )

I am looking to create a continuous code quality monitoring environment for our large code (Java) base. The static code check will be done on every developer branch and integration branch. Here is ...
5
votes
3answers
405 views

What are some good books on software testing/quality?

I'm looking for a good book on software quality. It would be helpful if the book covered: The software development process (requirements, design, coding, testing, maintenance) Testing roles (who ...
5
votes
3answers
166 views

What tools do you use in your build process to guarantee better code quality?

Earlier today I asked a question about enforcing coding standards. Someone mention about NDepend tool that does code analysis. It looks like this tools does a lot of good thing to help developers to ...
4
votes
1answer
75 views

What are the best practices when organizing assets in Rails Asset Pipeline?

Is it good practice to store javascript/images/css in its own subdirectories within assets? I've seen these kind of organizational layout in other's codes vendor - assets - javascripts ...
4
votes
3answers
285 views

Tool to code quality

I just started developing in DELPHI, I have made some small Project, but it takes to much resources and memory. Is there any tool to cleanup my code, detect objects not released. Not like FastMM. ...
4
votes
2answers
688 views

Is there a Sonar for C#?

I'm looking for a package like Sonar (http://www.sonarsource.org/) that works for C#. Are there any?
4
votes
4answers
90 views

What is a common term for the following tools

is there a common term that can be used for the following tools Bugs Database Source control software a software use to compile from various programmers in one step These tools can be used by ...
4
votes
10answers
611 views

Why is bug count not a good measure of code quality?

Why is bug reports (unit testing, QA testing, etc.) not a good measure of code quality? And what is the best way to measure code quality? I believe code quality can be measured more during peer ...
4
votes
7answers
223 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
1answer
142 views

About code quality and designing

I don't know if I am only like this or maybe some people has same problem. Always when I get a project I don't know how to design it well. I mean I just try to make UML design, but always it doesn't ...
4
votes
6answers
309 views

Is it worth refactoring Swing code to conform to coding standards?

Code generated for swing always fails when it comes to code quality. Inevitably, there's one method that builds the entire interface, and there's anonymous event handling code that calls member ...
4
votes
4answers
2k views

Any code quality tool for pl/sql?

is there any tool, library that can analyze plsql code, like PMD/CheckStyle do for Java ?
3
votes
4answers
65 views

How can I ensure that all of my Javascript functions return a value?

I've had numerous bugs happening just because of a missing return in a function. You see, when most of the code you write is in Ruby, it's easy to forget about explicit returns. So I'd like to use ...
3
votes
3answers
241 views

Php site that could handle millions of users?

What do you need to do so that an existing php site can handle potentially millions of users? I'm supposing here that the site's design and architecture and code isn't really what it should be like ...
3
votes
2answers
491 views

Using Sparse to check C code

Does anyone have experience with Sparse? I seem unable to find any documentation, so the warnings and errors it produces are unclear to me. I tried checking the mailing list and man page but there ...
3
votes
8answers
303 views

When/how often to check whether object is null

I was writing some code and while unit testing I got a Null Pointer Exception...Now I'm wondering how often should we be checking that object is not null before doing get operations on it? For ...
3
votes
1answer
676 views

Groovy code analysis tool

Are there any good code analysis tools available for Groovy? I'm looking for something similar to FindBugs, PMD, CheckStyle, etc. I may even be able to use some of these tools directly if they work on ...

1 2 3