Tagged Questions
The maintainability tag has no wiki summary.
39
votes
7answers
9k views
Django vs Flask for a long-term project
I am looking for a comparison of django and flask for a project that will live for a long time, and will need to be maintained, built upon and grow as the months progress.
I am considering Flask + ...
33
votes
7answers
5k views
Writing Maintainable Event-Driven Code
I have just recently started playing with event-driven architectures, coming from a pretty standard object-oriented mindset.
The first thing I noticed was that the difficulty in understanding and ...
33
votes
10answers
2k views
What should we do to prepare for 2038?
I would like to think that some of the software I'm writing today will be used in 30 years. But I am also aware that a lot of it is based upon the UNIX tradition of exposing time as the number of ...
32
votes
28answers
2k views
How complex should code be?
I'm studying about algorithms which can help me write smaller but more complex code. Instead of writing 150 lines of if-else statements, I can design an algorithm that does it in 20 lines. The ...
25
votes
10answers
1k views
Our code sucks and I'm powerless to fix it. Help!
Our code sucks. Actually, let me clarify that. Our old code sucks. It's difficult to debug and is full of abstractions that few people understand or even remember. Just yesterday I spent an hour ...
24
votes
9answers
401 views
managing document.ready event(s) on a large-scale website
NOTE: I have now created a jQuery plugin which is my attempt of a solution to this issue. I am sure that it could be improved and i've probably overlooked lots of use cases, so if anyone wants to give ...
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 ...
17
votes
17answers
1k views
Design of an Alternative (Fluent?) Interface for Regular Expressions
I've just seen a huge regex for Java that made me think a little about maintainability of regular expressions in general. I believe that most people - except some badass perl mongers - would agree ...
16
votes
8answers
480 views
Perl code maintainability
I've been writing Perl for several years now and it is my preferred language for text processing (many of the genetics/genomics problems I work on are easily reduced to text processing problems). Perl ...
15
votes
21answers
1k views
Mandatory use of braces
As part of a code standards document I wrote awhile back, I enforce "you must always use braces for loops and/or conditional code blocks, even (especially) if they're only one line."
Example:
// ...
11
votes
1answer
276 views
small code redundancy within while-loops (doesn't feel clean)
So, in Python (though I think it can be applied to many languages), I find myself with something like this quite often:
the_input = raw_input("what to print?\n")
while the_input != "quit":
print ...
11
votes
9answers
984 views
Do setup/teardown hurt test maintainability?
This seemed to spark a bit of conversation on another question and I
thought it worthy to spin into its own question.
The DRY principle seems to be our weapon-of-choice for fighting maintenance
...
10
votes
8answers
406 views
What programming shortcuts do you end up regretting or backing out?
I saw this question and it reminded me of AutoGenerateColumns in the old DataGrid. The few times I've used them, I ended up backing it out because I needed data formatting past the standard "spit out ...
10
votes
3answers
623 views
Maintaining both free and pro versions of an application
I want to create a PRO version of my application for Android and was wondering how to structure my repository.
For know I have a trunk and feature branches. I'd like to put a pro version in another ...
10
votes
10answers
559 views
Should I use Resharper to tidy up other peoples code?
I use Resharper at work. Some of my colleagues do not.
When I open some code that has been written someone who doesn't, it is immediately obvious by the amount of orange on my screen.
What I am ...
9
votes
13answers
468 views
At what point does refactoring become not worth it?
Say you have a program that currently functions the way it is supposed to. The application has very poor code behind it, eats up a lot of memory, is unscalable and would take major rewriting to ...
8
votes
5answers
338 views
Maintainability of Java annotations?
My project is slowly implementing Java annotations. Half of the developers - myself included - find that doing anything complex with annotations seems to add to our overall maintenance burden. The ...
7
votes
3answers
481 views
To CTE or not to CTE
Having been stuck with SQL2000 for far too long, I've not really had a lot of exposure to Common Table Expressions.
The answers I've given here (#4025380) and here (#4018793) have gone against the ...
7
votes
3answers
250 views
Delphi: Maintainability Virtual vs Virtual Abstract
I was writing a bunch of code a few months ago and now I'm adding stuff to it. I realized I wrote a bunch of functions that descend from a class that has about 2/3rds of its functions abstract and ...
6
votes
5answers
122 views
How do you understand regular expressions that are written in one line?
This is a neat well documented regular expression, easy to understand, maintain and modify.
text = text.replace(/
( // Wrap whole match in $1
(
...
6
votes
6answers
279 views
How to prove my stakeholder and manager my software works?
What do software engineers encounter after another stressfull release? Well, the first thing we encounter in our group are the bugs we have released out in the open. The biggest problem that we as ...
5
votes
3answers
91 views
jQuery design pattern for selectors to improve code maintainability?
Yesterday I had to go back to a page I had worked on a few weeks ago to redo the UI. The UI consisted of a jQuery UI tab control with 3 tabs. Each tab had 3-5 controls inside of it, and a submit ...
5
votes
5answers
134 views
Would you abstract your LINQ queries into extension methods
On my current project we set ourselves some goals for the code metrics "Maintainability Index" and "Cyclometic Complexity". Maintainability Index should be 60 or higher and Cyclometic Complexity 25 or ...
5
votes
2answers
159 views
Dependency Injection and code maintainability
I am working on a (vb.net/asp.net) project that is using interfaces to provide dependency injection. But to me, it feels like the maintainability of the code has been killed. When I want to read ...
5
votes
9answers
1k views
Is there any appreciable difference between if and if-else?
Given the following code snippets, is there any appreciable difference?
public boolean foo(int input) {
if(input > 10) {
doStuff();
return true;
}
if(input == 0) {
...
5
votes
2answers
2k views
Code Metrics Calculation in Visual Studio
What is the prefered score range for the code metrics calculation for the following
Maintainability Index
Cyclomatic Complexity
Depth of Inheritance
class Coupling
5
votes
3answers
270 views
To aggregate or not to aggregate, that is the database schema design question
If you're doing min/max/avg queries, do you prefer to use aggregation tables or simply query across a range of rows in the raw table?
This is obviously a very open-ended question and there's no one ...
5
votes
9answers
919 views
What's the cleanest way to write a multiline string in JavaScript?
It doesn't really have to add newlines, just something readable.
Anything better than this?
str = "line 1" +
"line 2" +
"line 3";
5
votes
11answers
622 views
One database or many?
I am developing a website that will manage data for multiple entities. No data is shared between entities, but they may be owned by the same customer. A customer may want to manage all their ...
4
votes
4answers
98 views
How to avoid a switch block with 300 cases?
I am trying to add 300 Challenges into my program, but only display them if the CompletionValue.IsChecked = false;
If you were creating this program. How would you store the Challenges?
I am using ...
4
votes
2answers
172 views
Is large scala codebase maintainable? [closed]
I have some experience with the scala. I want to introduce it into new project with 10 members. But despite all expressiveness of the scala, I am very unsure of how simple the code can be maintained ...
4
votes
4answers
179 views
Doing calculations in MySQL vs PHP
Context:
We have a PHP/MySQL application.
Some portions of the calculations are done in SQL directly. eg: All users created in the last 24 hours would be returned via an SQL query ( NOW() – 1 day)
...
4
votes
3answers
169 views
Cruft code. IoC to the rescue
In question about usefulness of IoC Container, the winning submitter mentioned that with an IoC container you can take this:
public class UglyCustomer : INotifyPropertyChanged
{
private string ...
4
votes
9answers
546 views
from X import a versus import X; X.a
This is one of those semi-religious Python questions that I suspect has well reasoned responses lurking in the community. I've seen some Python programmers use the following style fairly consistently ...
3
votes
2answers
59 views
guidelines/ideas to make supporting application easier (java) -
Writing a good quality software should be the first step. For now that is kind of moving goal.( We have some thing along the lines of automatic code quality and architecture quality ...
3
votes
1answer
173 views
What's the best technique to build scalable (extensible), maintainable, and loosely coupled software?
I have been playing around with the concept of 'module' that some mvc frameworks implement and it seems like a good solution, and also with TDD, but I think there must be something more, like a design ...
3
votes
5answers
631 views
How do I share a constant between C# and C++ code?
I'm writing two processes using C# and WCF for one and C++ and WWSAPI for the second. I want to be able to define the address being used for communication between the two in a single place and have ...
3
votes
3answers
172 views
Program structure in long running data processing python script
For my current job I am writing some long-running (think hours to days) scripts that do CPU intensive data-processing. The program flow is very simple - it proceeds into the main loop, completes the ...
3
votes
3answers
683 views
Cyclomatic Complexity vs project health
I have done the code analysis for my project using VS2010.
Here is my results,
Maintainability Index - 75%
Cyclomatic Complexity - 213
Depth of Inheritance - 7
Class Coupling - 98
Lines of Code - ...
3
votes
2answers
80 views
Usefulness of Toggle functions
Is it better to write functions that explicitly do something (i.e. HideForm/ShowForm etc...)
or is it better to write 'Toggle' type functions (i.e. ToggleVisibility)?
I find Toggle type functions ...
3
votes
2answers
139 views
Book/tutorial that teaches how to make programs that are easy to maintain and are less coupled?
I'm a PHP programmer and I really want to increase the quality of my code and most importantly I want to be better at programming.
What book, tutorial or article would you guys suggest that I read ...
3
votes
6answers
208 views
jQuery Refactoring/Maintaining
I've searched a little bit around SO and haven't found any questions/answers that are helping me. The problem is my jQuery function calls are getting much too large to maintain. I'm wondering if I ...
3
votes
6answers
183 views
When Refactoring a project to improve maintainability, what are some of the things to target?
I've got a project (about 80K LOC) that I'm working on, and I've got nearly a full month of luxury refactoring and feature adding time prior to release so long as I'm careful not to break anything. ...
3
votes
3answers
2k views
Maintainability Index
I have come across the recommended values for a Maintainability Index (MI) as follows:
85 and more: good maintainability
65-85: moderate maintainability
65 and below: difficult to maintain with ...
2
votes
4answers
45 views
How do people edit their websites later?
I'm making a website that needs to be maintained and have updates on things daily, but the people who are using the site and maintaining it can't code at all.
do web designers usually make some sort ...
2
votes
2answers
95 views
Game Development: How Do Game Developers Maintain Game Speed Regardless of FPS?
Say like it took a whole second for a character to jump in a game, how would a game developer go about keeping that jump time to 1 second if the FPS is either 10fps, 30fps, 100fps etc? - If you get ...
2
votes
1answer
227 views
Rails: stalker, rescue or something else
The actual problem
I am using Rails 3.0.4 and MongoDB through mongoid.
I am using @mailgun to deliver my emails. I send both bulk(like news-letter) and transactional(like activate account, forgot ...
2
votes
4answers
96 views
Which cast style is better and why?
Imagine in C++ two classes one named derived and another named base that is a base class of the first. If I had the following code, which is preferred:
base *b = init_value_here;
const derived *d = ...
2
votes
5answers
203 views
What are the drawbacks of using a method which calls a delegate for every row in SqlDataReader?
When I find a new idea, I always stick with it, and am unable to see any weak sides of it. Bad things happen when I start to use the new idea in a large project, and discover some moths later that the ...
2
votes
5answers
351 views
Alternatives of Google App Engine + Java
If I develop my web application on GAE using Java, in future would I have easy migration opportunities, or will I stuck to GAE?
What can be other alternatives of Google App Engine + Java?
Not: