Tagged Questions

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

learn more… | top users | synonyms

248
votes
44answers
9k views

How do you handle poor quality code from team members? [closed]

I know most people have code review and standards in place, but I work at a place with poor standards. I'm not saying that my code is flawless by any means, but I find the code my fellow members ...
67
votes
52answers
4k 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, ...
38
votes
33answers
2k views

Why is code quality not popular?

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 ...
32
votes
13answers
3k 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, ...
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 ...
31
votes
18answers
7k 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 ...
28
votes
19answers
1k 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 ...
26
votes
10answers
894 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 ...
24
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 ...
23
votes
11answers
2k 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 ...
21
votes
10answers
859 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 ...
20
votes
19answers
1k views

Code Quality

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 ...
15
votes
5answers
553 views

Studies showing the effect of code quality/QA?

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 ...
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 ...
14
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 ...
13
votes
17answers
753 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 ...
12
votes
13answers
778 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
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 ...
11
votes
4answers
418 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
6answers
631 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 ...
11
votes
14answers
868 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
4answers
12k 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: ...
10
votes
6answers
654 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 ...
9
votes
11answers
828 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 ...
9
votes
12answers
2k views

How do we define Code Quality?

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 ...
9
votes
14answers
470 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
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
4answers
502 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 ...
8
votes
3answers
327 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 ...
8
votes
3answers
370 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. Do you know some similar tools for php doing code analysis ? So far I have found but not tested yet : ...
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
3answers
362 views

How can I learn about writing project specs?

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 ...
8
votes
9answers
651 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
12answers
533 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 ...
8
votes
3answers
671 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
394 views

Telling bugs and features apart?

Have you ever been in the situation when looking at the code you couldn’t tell if something is a bug or poorly implemented feature? Or you simply didn’t dare to fix something that looked like a ...
8
votes
2answers
704 views

.NET Code Security Review Tool

I am looking for a utility that can be used against .NET assemblies to validate code against best practices, and most importantly can review the code for Security, Injection, and Cross Site Scripting ...
8
votes
7answers
542 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 ...
7
votes
5answers
1k 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 ...
7
votes
8answers
677 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
11answers
2k views

How do you ensure code quality?

What techniques you use to ensure code quality? Pairing? Code reviews? Design? Documentation? What helps you creating extensible quality software?
7
votes
12answers
921 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 ...
7
votes
2answers
225 views

What kind-of stats does your company collect to define code / software product quality

Most programming houses / managers i know of can only define quality in terms of the no of bugs made / resolved in retrospect. However most good programmers can innately sense quality once they ...
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
17answers
1k 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
9answers
369 views

Making the case for code quality

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 ...
6
votes
1answer
573 views

increase quality/clarity/brightness of the photos taken with android camera

I have an android app where I'm using the android camera in order to take photos.And after struglling a little bit I managed to have my picture where I want and how I want.The final problem is the ...
6
votes
6answers
231 views

Qualities of Code Reviewers

When choosing code-reviewers for your project what qualities you see/prefer in the candidates (the one who does review)? # of years of experience? time availability (not selecting very busy guys) ...
6
votes
3answers
274 views

What data exists to show that refactoring is useful?

I'm giving a presentation on refactoring Python. I'd like to put in a couple of slides giving statistics to show that refactoring is a good thing. I've been searching the ACM digital library, but ...
6
votes
7answers
403 views

Do you find source code analyzers useful?

Do you use source code analyzers? If so, which ones and for which language development? Do you find them helpful in solving potential bugs in your code? Or are most of their warnings trivial? After ...

1 2 3 4 5