Tagged Questions
The maintenance tag has no wiki summary.
161
votes
35answers
13k views
What to do about a 11000 lines C++ source file?
So we have this huge (is 11000 lines huge?) mainmodule.cpp source file in our project and every time I have to touch it I cringe :-)
As this file is so central and large, it keeps accumulating more ...
107
votes
16answers
63k views
Visual Studio setup problem - 'A problem has been encountered while loading the setup components. Canceling setup.'
I've had a serious issue with my Visual Studio 2008 setup. I receive the ever-so-useful error 'A problem has been encountered while loading the setup components. Canceling setup.' whenever I try to ...
51
votes
11answers
1k views
Managing highly repetitive code and documentation in Java
Highly repetitive code is generally a bad thing, and there are design patterns that can help minimize this. However, sometimes it's simply inevitable due to the constraints of the language itself. ...
51
votes
83answers
4k views
What infuriates you the most when maintaining others' code? [closed]
Maybe infuriate is not the politically correct term, but what kind of code would qualify for a genuine face palm?
Addendum:
For me, it's the misuse of technology. The group of people who develop .NET ...
39
votes
27answers
3k views
Inherited a PHP nightmare, where to start? [closed]
I've inherited a PHP project that's turning out to be a nightmare. Here are the salient points:
All the original developers have left
The code has no version control
All development and testing was ...
33
votes
7answers
520 views
Graceful maintenance of web applications
Yesterday's Stack Overflow downtime got me thinking about this a bit...
I live in Australia (though this is probably true for most people in a non-US timezone) and am constantly greeted with "... is ...
32
votes
4answers
823 views
Do you have health checks in your web app or web site? [closed]
I have built PHP based "health check" scripts for several projects in the past, but they were always custom-made for the occasion and not written for abstraction as an independent product. I would ...
32
votes
20answers
27k views
SQL exclude a column using SELECT * [except columnA] FROM tableA?
We all know that to select all columns from a table, we can use
SELECT * FROM tableA
Is there a way to exclude column(s) from a table without specifying all the columns?
SELECT * [except columnA] ...
31
votes
13answers
2k views
How do I write more maintainable regular expressions?
I have started to feel that using regular expressions decreases code maintainability. There is something evil about the terseness and power of regular expressions. Perl compounds this with side ...
23
votes
20answers
2k views
Is there a way to avoid spaghetti code over the years?
I've had several programming jobs. Each one with 20-50 developers, project going on for 3-5 years.
Every time it's the same. Some programmers are bright, some are average. Everyone has their CS ...
23
votes
35answers
1k views
Writing maintainable code
What is the single most important factor for writing maintainable code (language independent)?
21
votes
4answers
2k views
How to push a new local branch to remote repo and track it too [git]
I tried looking for a an answer to this, but couldn't find any which address this specific need. Which is weird.
I want to be able to do the following:
create a local branch based on some other ...
19
votes
14answers
765 views
Advice for dealing with code maintenance
I've been working at my university this summer in an image/video lab. Just recently, my professor gave me a program written by a grad student who just left the program to "fix up", because it was ...
19
votes
9answers
426 views
How to keep code maintainable after original programmer quit
Say if it's a 10 people project, 2-3 of the original programmer quit after the project has been release a stable version for a while. How to have the code maintainable in this case?
My imagination ...
16
votes
3answers
372 views
Do you develop your Perl applications as CPAN modules?
Recently I read a blog post saying that it is a good practice to develop Perl applications just as you would develop a CPAN module. (Here it is – thanks David!) One of the reasons given was that you ...
14
votes
11answers
885 views
I'm maintaining a Java class that's 40K lines long.. problem?
This may be a subjective question leading to deletion but I would really like some feedback.
Recently, I moved to another very large enterprise project where I work as a developer. I was aghast to ...
14
votes
7answers
2k views
Tips for maintaining an internal Maven Repository?
I'm interested in maintaining a Maven 2 repository for my organization. What are the some of the pointers and pitfalls that would help.
What are guidelines for users to follow when setting up ...
13
votes
7answers
280 views
Reuse, Rewrite, or Refactor?
At work I inherited development of a PHP-based Web site after the consultant who originally produced it bailed out and left without a trace. Literally half of the code is ripped from online tutorials, ...
12
votes
20answers
1k views
Are Stored Procedures Easier to Maintain?
What is the argument for and against putting code in stored procedures with the intention of making the code more maintainable (i.e. Easier to make changes to the business rules without recompiling ...
12
votes
13answers
1k views
Oldest programs you still have to maintain?
I'm quite a aware of the "subjectiveness" of this question. But I just wonder how you got along with "old" or older code. The oldest code I still have and understand was my theme for my diploma now ...
12
votes
1answer
3k views
Identifying Unused Objects In Microsoft SQL Server 2005
It's a trivial task to find out if an object is referenced by something else or not. What I'd like to do is identify whether or not it's actually being used.
My solution originally involved a ...
11
votes
44answers
1k views
What is the thing that irritates you while doing maintenance coding?
What is the thing that irritates you while doing maintenance coding?
Can you point out some points for easier maintenance for me and my fellow programmers?
11
votes
9answers
517 views
How do you familiarize with a codebase that has no documentation?
I don't know, I've been told that the previous developers did fine in picking up and heading straight into coding with no major problem. I wonder if I am doing it wrong by requesting my manager for ...
11
votes
7answers
535 views
Maintenance teams vs. not-so-focused development teams
My organization is doing a lot of new development using Scrum, while maintaining a lot of old code. While we try to keep each development team focused on the task at hand, it is difficult because many ...
11
votes
12answers
4k views
ResultSet: Retrieving column values by index versus retrieving by label
When using JDBC, I often come across constructs like
ResultSet rs = ps.executeQuery();
while (rs.next()) {
int id = rs.getInt(1);
// Some other actions
}
I asked myself (and authors of ...
10
votes
15answers
779 views
How to save my sanity while maintaining spaghetti code
Just wanted to hear some words of advice (and comfort.. ) that will help me to take control over some complicated spaghetti code -- code that was developed by multiple programmers (usually that never ...
10
votes
5answers
793 views
How to find a similar code fragment?
Does anyone has some tool or some recommended practice how to find a piece of code which is similar to some other code?
Often I write a function or a code fragment and I remember I have already ...
10
votes
6answers
1k views
Will a “Site Down for Maintenance” page break SEO?
In a situation when you are doing a major code release and/or database schema change to a production environment is it detrimental to SEO to put up a "Gone Fishin'" page while the upgrade happening?
...
9
votes
5answers
240 views
Should one avoid certain programming constructs (and others) for maintenance's sake?
I'm working on a non-personal project, so it's safe to say that the maintenance programmer will not be me, for otherwise I wouldn't need to ask this question.
Now there are some constructs ...
9
votes
5answers
4k views
Visual Studio 2008 / C# : How to find dead code in a project?
How do I find dead code in a Visual Studio 2008 C# project?
Like unused classes, unused variables or unused resources?
9
votes
7answers
559 views
Why separate maintenance work from development work?
I work at a company where maintenance is being done by the same team that brings life to a piece of software.
Very often I hear about organizations that have a separate maintenance team or a ...
9
votes
4answers
2k views
Deleting millions of rows in MySQL
I recently found and fixed a bug in a site I was working on that resulted in millions of duplicate rows of data in a table that will be quite large even without them (still in the millions). I can ...
8
votes
2answers
112 views
Scientific Computing: Balancing Self-Contained-ness and Reuse?
I write scientific research code, specifically in bioinformatics. Of course, in science, results should be reproducible. People who are not involved in a project on a regular basis and don't ...
8
votes
14answers
755 views
Coding Priorities: Performance, Maintainability, Reusability?
This came about mainly due to answers to SQL questions. UDF's and Sub Queries are intentionally omitted because of performance. I didn't include reliability not that it should be taken for granted, ...
8
votes
3answers
5k views
When should database indexes be rebuilt?
I was reading about refactoring a large slow SQL Query over here, and the current highest response is from Mitch Wheat, who wants to make sure the query uses indexes for the major selects, and ...
8
votes
9answers
344 views
The Neglected Stakeholder a.k.a the System Administrator
Some time ago I came to realize that almost every customer project that I have been working on so far has neglected an important group of stakeholders: the system administrators.
These silent heroes ...
8
votes
12answers
2k views
Best Tools for Software Maintenance Engineering
Yes, the dreaded 'M' word.
You've got a workstation, source control and half a million lines of source code that you didn't write. The documentation was out of date the moment that it was approved ...
7
votes
2answers
156 views
Maintaining Documentation
I am looking for some sort of tool or technique to help me keep track of functions and methods in my code that may need documentation re-evaluated. For example, lets say I have the following method:
...
7
votes
2answers
108 views
How do you maintain multiple versions of Databases?
We have many environments
trunk (dev integration) -> devel (team testing) -> qa (regression testing) -> live (customer use)
Each has its own database that works with the code in that environment.
...
7
votes
2answers
192 views
Understanding code
What is the best way to get acquainted with C# codebase of approximate size 200K LOC? Are there any tools available?
http://www.program-comprehension.org/ It seems there is an event going for a long ...
7
votes
8answers
327 views
How to reduce maintenance costs
It has come to the point where 4 out of 5 developers are full time dealing with maintenance or support issues.
This is mainly due to the total lack of accountability (read:reviews etc) during the ...
7
votes
7answers
1k views
Put a website in maintenance mode?
I've developed my first web application which, surprisingly, is getting very popular.
Because the website is now live, I have a hard time doing some changes, in fear some people are still logged in ...
7
votes
4answers
242 views
Hey indies! How much of your time is spent on maintenance?
I would like to know, for those of you who are one-man bands especially, how much of your time is spent maintaining or supporting your programs, as it compares to everything else you do in your day to ...
7
votes
5answers
1k views
Do you know a service like uservoice.com for bug reports?
Is there a service, similar to uservoice.com for bug reports?
It should
very easy to use for normal, non-techie users
be free
be easily maintainable
7
votes
5answers
571 views
What is the Best Practice to Kick-off Maintenance Process on ASP.NET
Given an ASP.NET application, I need to run a maintenance process on a regular basis (daily, hourly, etc.).
What's the best way to accomplish this without relying on an external process like a ...
7
votes
3answers
17k views
Reorganise index vs Rebuild Index in Sql Server Maintenance plan
In the SSW rules to better SQL Server Database there is an example of a full database maintenance plan: SSW. In the example they run both a Reorganize Index and then a Rebuild Index and then Update ...
6
votes
4answers
228 views
What is the best way to use reusable code?
More often then not you will likely come across a situation where you may need a function or procedure, chances are you have already written this code before.
My question is how do you organise it so ...
6
votes
1answer
160 views
Which packages/classes/methods/features will be removed after Scala 2.9?
I wonder if there is an overview somewhere, listing all the things scheduled for removal - not only the obvious things like case class inheritance - but also all the smaller places, were ...
6
votes
6answers
170 views
How to approach huge code base of undocumented code?
I have recently been assigned a project to further develop an existing code base. The code doesn't contain any tests and not even one single line of comments. The whole "thing" is written in a really ...
6
votes
1answer
228 views
Mantain old releases without creating long-lived branches
I'm newbie in Git.
I have read:
"Pro Git : Maintaining a Project" (book)
and
Git : Documentation/howto/maintain-git.txt
Tough question for me: how to mantain the old releases without creating a ...