Quality is a generic term mostly used for image and video clarity and quality.

learn more… | top users | synonyms

75
votes
53answers
5k views

Why is software quality so problematic?

Even when viewing the subject in the most objective way possible, it is clear that software, as a product, generally suffers from low quality. Take for example a house built from scratch. Usually, ...
45
votes
34answers
3k views

Why is code quality not popular? [closed]

I like my code being in order, i.e. properly formatted, readable, designed, tested, checked for bugs, etc. In fact I am fanatic about it. (Maybe even more than fanatic...) But in my experience actions ...
43
votes
19answers
15k views

Calculate code metrics

Are there any tools available that will calculate code metrics (for example number of code lines, cyclomatic complexity, coupling, cohesion) for your project and over time produce a graph showing the ...
41
votes
14answers
7k views

When should assertions stay in production code?

There's a discussion going on over at comp.lang.c++.moderated about whether or not assertions, which in C++ only exist in debug builds by default, should be kept in production code or not. Obviously, ...
37
votes
6answers
2k views

How to write high quality Javascript [closed]

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 ...
34
votes
19answers
7k views

What is the point of a “Build Server”?

I haven't worked for very large organizations and I've never worked for a company that had a "Build Server". What is their purpose? Why aren't the developers building the project on their local ...
28
votes
10answers
1k views

Do java's Inner classes pose a security risk?

Recently the security team on my project released a secure code guidelines document, designed to be used as part of our code reviews. The first thing that struck me was an item that said "Do not use ...
27
votes
24answers
8k views

is a great memory a requirement for great programming [closed]

Do you think having a great memory is REQUIRED to be a great programmer? I don't consider myself a great programmer but I do think I am decent. But my memory is REALLY bad so I find myself always ...
26
votes
11answers
3k views

How do you measure the quality of your unit tests?

If you (or your organization) aspires to thoroughly unit test your code, how do you measure the success or quality of your efforts? Do you use code coverage, what percentage do you aim for? Do ...
23
votes
1answer
1k views

Haskell libraries overview and their quality [closed]

I want to use Haskell in production. It has a lot of libraties but not all of them are stable, ready-to-use and well-developed. Some libraries with interesting conceptions have experimental status. ...
22
votes
11answers
1k views

What can you do to a legacy codebase that will have the greatest impact on improving the quality?

As you work in a legacy codebase what will have the greatest impact over time that will improve the quality of the codebase? Remove unused code Remove duplicated code Add unit tests to improve test ...
21
votes
19answers
2k views

Code Quality [closed]

I work for a software development company and we have around 100 people working on a product, 1/3 of these people are QA. Lately management wants to have a better way to rate individual programmers ...
16
votes
12answers
2k views

What are the Best Components of Boost? [closed]

I've been browsing revision 1.38.0 of the Boost libraries, in an attempt to decide if there are enough jewels there to justify negotiating my company's external software approval process. In the ...
16
votes
5answers
651 views

Studies showing the effect of code quality/QA? [closed]

I am looking for studies about applied code quality, comparing costs before and after. They should show a clear benefit in cost (or maybe a negative effect of too much cost). I need hard facts like ...
15
votes
7answers
2k views

Seeking clarifications about structuring code to reduce cyclomatic complexity

Recently our company has started measuring the cyclomatic complexity (CC) of the functions in our code on a weekly basis, and reporting which functions have improved or worsened. So we have started ...
14
votes
16answers
2k views

Do many Python libraries have relatively low code quality?

Edit: Since this question was asked a lot of improvement has happened in the standard Python scientific libraries (which was the targeted area). For example the numpy project has made a big effort to ...
13
votes
12answers
3k views

How do we define Code Quality? [closed]

Does anyone have a reasonable definition of Code Quality? I don't think there is a good definition, and I see plenty of bad definitions. There are many definitions for Correctness, but I would ...
13
votes
17answers
828 views

What code or output is art worthy? [closed]

I am wondering what code or even output of a program people would consider as art. Are there any examples of a program artefact that should/could belong in an art gallery for the public or for ...
13
votes
6answers
853 views

Writing Quality Tests

We know that code coverage is a poor metric to use when gauging the quality of test code. We also know that testing the language/framework is a waste of time. On the other hand, what metrics can we ...
13
votes
6answers
2k views

Is it possible to tell the quality level of a JPEG?

This is really a two part question, since I don't fully understand how these things work just yet: My situation: I'm writing a web app which lets the user upload an image. My app then resizes to ...
12
votes
9answers
8k views

JUnit's @Ignore

I wonder if it is a good practice to use JUnit's @Ignore. And how people are using it? I came up with the following use case: Let's say I am developing a class and writing a JUnit test for it, which ...
12
votes
13answers
859 views

How exactly do you judge how well a programmer performs?

Given a team of developers collaborating on the production of a piece of sofware. How would you go about assessing individual developer performance and quality? I'm mostly looking for non subjective ...
12
votes
6answers
10k views

Quality problems when resizing an image at runtime

I have a image file on the disk and I am resizing the file and saving it back to disk as a new image file. For the sake of this question, I am not bringing them into memory in order to display them ...
11
votes
12answers
967 views

Performance vs Quality of Code

Do you think it's worth trading off some performance for code-quality and maintainability? I remember a post by Jeff Atwood that stated that hardware is cheap, developers are not. I think I'd like ...
11
votes
4answers
990 views

Reasons for refactoring tools for C/C++ to be so limited [closed]

What is the problem that no industrial level refactoring tool for C/C++ have been created, I only need a tool that "just works"? What I mean by "industrial level" is a quality provided by JetBrains ...
11
votes
4answers
837 views

How to check if an image contains a face and it is reasonably visible

I am not sure if this is solveable, but I though I will ask anyway. In my company we deal with massive enrollment camps where small teams of 5 to 10 people go to a village and enroll people. The ...
11
votes
14answers
1k views

Defensive programming

When writing code do you consciously program defensively to ensure high program quality and to avoid the possibility of your code being exploited maliciously, e.g. through buffer overflow exploits or ...
10
votes
3answers
6k views

Awful background image quality in Android

I'm trying to place a background in my activity, but the image quality is not the expected. The image has a simple gradient above blue stripes, and currently looks like this: My activity layout: ...
10
votes
3answers
723 views

How can I learn about writing project specs? [closed]

I recently read through Code Complete, and it recommends that I create a project specification before actually coding. The book didn't go very far into detail about what 'specs' are, and how they are ...
10
votes
2answers
265 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). ...
10
votes
4answers
23k views

Android: BitmapFactory.decodeByteArray gives pixelated bitmap

I am working on an Android app that displays photos which are downloaded from Flickr. I obtain a bitmap object from a byte array, which in turn is read from the relevant Flickr URL, as follows: ...
9
votes
14answers
505 views

Should we fix that bug?

When triaging bugs for a release, what criteria are typically used to determine whether the bug will be fixed for the release?
8
votes
12answers
1k views

When is it time to have a QA department?

The Quality Assurance (QA) department is roughly a bunch of testers debunking your app(s) all day, giving the green light for releases, handling Alpha / Beta programs. And much more. But without a QA ...
8
votes
10answers
856 views

Six sigma quality management and software development

Is it possible to use Six Sigma Quality Management with Software Development Processes? What's your experience on that? If you're using an Agile method like Scrum or XP, isn't Six Sigma too ...
8
votes
5answers
2k views

How to measure robustness?

I am working on a thesis about meassuring quality of a product. The product in this case is a website. I have identified several quality attributes and meassurement techniques. One quality attribute ...
8
votes
3answers
1k views

Checking C# new() initialisation for null?

I've found this piece of code on Koders: private ServiceProvider SiteServiceProvider { get { if (serviceProvider == null) { serviceProvider = new ...
8
votes
9answers
252 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
3answers
12k views

How can I acheive the best overall FLV quality with FFMPEG?

First of all, FFMPEG has the worst documentation of all time, and secondly, the syntax is so trivial that it's often hard to understand what some lines are doing. What I'm looking to accomplish would ...
8
votes
3answers
1k views

Best PHP QA tools

I am looking for QA tools for PHP. I am used to PMD, FindBugs and Checkstyle in the Java world. Are there some similar tools for PHP doing code analysis? So far I have found these, but not tested yet: ...
8
votes
7answers
705 views

How to gauge the quality of a software product

I have a product, X, which we deliver to a client, C every month, including bugfixes, enhancements, new development etc.) Each month, I am asked to err "guarantee" the quality of the product. For ...
8
votes
4answers
542 views

High quality software examples

One of the best ways to learn about programming is reading high quality code/projects from great engineers. Which open-source projects do you think is worth looking at? I mean, that code that you can ...
7
votes
17answers
2k views

When reviewing requirements specification what “deadly sins” need to be addressed?

When reviewing requirements specification (that includes functional, non-functional requirements, constraints etc) however small or large it is what are the "deadly sins" committed by authors to look ...
7
votes
8answers
6k views

Developer testing vs. QA team testing - What is the right division of work?

While trying to advocate more developer testing, I find the argument "Isn't that QA's job?" is used a lot. In my mind, it doesn't make sense to give the QA team all testing responsibilities, but at ...
7
votes
8answers
716 views

What did Kylix do wrong?

With all the talk about the Delphi team working on cross-platform development, one sentiment that keeps coming up is, "I hope they do it right this time, not like Kylix." I didn't really notice Kylix ...
7
votes
12answers
578 views

Programming, quality over quantity?

This article got me thinking. Languages are split in to about 6 groups in the article: The Cs Virtual Machine Languages Languages Formerly Known as “Scripting” Functional Straight Jackets Lisps ...
7
votes
10answers
2k views

Delphi 2009? Ok or buggy?

I got tired of trying Delphi every year hoping that I will find a stable version to upgrade from my good old Delphi 7. Should I bother to try Delphi 2009? Or it is as unstable as the previous ...
7
votes
9answers
389 views

Making the case for code quality [closed]

Imagine you're working with developers who habitually write 300 line nested methods full of errors, possible errors, etc. etc. Applications regularly throw exceptions as a matter of course, and much ...
7
votes
2answers
4k views

Improve css3 text rotation quality

I've created a series of rounded tabs using CSS3. I've then rotated these tabs, but the quality of the text (Windows - Chrome) is poor and also 'dims/blurs' on transition. What are the alternatives? ...
7
votes
5answers
4k views

PHP Source Code Analyzers

I was wodering whether any of you had any experience with PHP source code analyzers (like FindBugs for Java). What I'm looking for is a tool that scans my codebase for what appears to be bad code. ...
7
votes
4answers
355 views

How does one deal with backdoor code changes?

Scenario I admit (somewhat shamefully) that I have not only witnessed this particular practise, but I have also committed it myself. My name is Jeff and I have gamed a quality process to get my way. ...

1 2 3 4 5 7