Tagged Questions
The legacy tag has no wiki summary.
68
votes
13answers
4k views
Am I a dinosaur programmer? [closed]
I have been a professional programmer for more than 30 years, and have chosen a career path involving hands-on programming. Programming is something that I love, and I take great pride in the fact ...
52
votes
10answers
971 views
Being pressured to GOTO the dark-side
We have a situation at work where developers working on a legacy (core) system are being pressured into using GOTO statements when adding new features into existing code that is already infected with ...
25
votes
11answers
2k views
Converting C source to C++
How would you go about converting a reasonably large (>300K), fairly mature C codebase to C++?
The kind of C I have in mind is split into files roughly corresponding to modules (i.e. less granular ...
22
votes
13answers
2k views
How do you introduce unit testing into a large, legacy (C/C++) codebase?
We have a large, multi-platform application written in C. (with a small but growing amount of C++) It has evolved over the years with many features you would expect in a large C/C++ application:
...
21
votes
17answers
988 views
What makes code legacy?
I have heard many developers refer to code as "legacy". Most of the time it is code that has been written by someone who no longer works on the project. What is it that makes code, legacy code?
...
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 ...
17
votes
13answers
1k views
Dead languages
At which point should you (or your company) ditch the language used for many years, for which you have the workforce, simply because it became irrelevant or much better alternatives came into the ...
16
votes
4answers
3k views
Is it possible to share a masterpage between MVC and webforms?
I am adding MVC to a project that has MANY legacy webform pages. This works fine. However, I currently have a separate masterpage for MVC and for the webforms. The two master pages produce ...
14
votes
9answers
10k views
How can I run a Windows GUI application on as a service?
I have an existing GUI application that should have been implemented as a service. Basically, I need to be able to remotely log onto and off of the Windows 2003 server and still keep this program ...
13
votes
8answers
426 views
Understanding and modifying large projects
I am a novice programmer and as a part of my project I have to modify a open source tool (written in java) which has hundreds of classes. I have to modify a significant part of it to suit the needs of ...
13
votes
6answers
1k views
Finding “dead code” in a large C++ legacy application
I'm currently working on a large and old C++ application that has had many developers before me. There is a lot of "dead code" in the project, classes and functions that aren't used by anyone anymore. ...
13
votes
18answers
2k views
Rewrite of legacy code
My department is currently faced with the responsibility for the task of maintaining a rather large COBOL code base. We are wondering how to add new features to keep up with business needs. COBOL ...
12
votes
6answers
1k views
C++ Unit Testing Legacy Code: How to handle #include?
I've just started writing unit tests for a legacy code module with large physical dependencies using the #include directive. I've been dealing with them a few ways that felt overly tedious (providing ...
12
votes
16answers
875 views
Why continue writing legacy systems?
I have a student position working on some websites for my school. Everything my school does is in VBScript/ASP Classic. I'm a bit confused about something. I can understand that my school as a LOT ...
11
votes
8answers
816 views
Strategy for large scale refactoring
I'm currently working in a piece of code where both logic and data access are present in the GUI classes. Obviously, I would like to improve on this situation.
The current current structure is ...
9
votes
4answers
163 views
Testing Legacy PHP Spaghetti Code?
I inherited a fairly large, homemade, php4+MySQL, ecommerce project from developers that literally taught themselves programming and html as they wrote it. (I would shudder except that it's really ...
9
votes
9answers
439 views
Cleaning up a large, legacy Java project
I've been assigned to do some work on a huge Java project, and the influence of several iterations of developers is obvious. There is no standard coding style, formatting, naming conventions or class ...
9
votes
16answers
486 views
Why is the software world full of status codes?
Why did programmers ever start using status codes? I mean, I guess I could imagine this might be useful back in the days when a text string was an expensive resource. WAYYY back then. But even ...
9
votes
5answers
527 views
How to reverse engineer undocumented legacy application?
Once I was assigned to a project which was about adding couple new features to the existing Java based web application. Because it was a matter of just couple simple features there was no chance for ...
8
votes
6answers
548 views
How did 16-bit C compilers work?
C's memory model, with its use of pointer arithmetic and all, seems to model flat address space. 16-bit computers used segmented memory access. How did 16-bit C compilers deal with this issue and ...
8
votes
4answers
681 views
How to (unit-)test data intensive PL/SQL application
Our team is willing to unit-test a new code written under a running project extending an existing huge Oracle system.
The system is written solely in PL/SQL, consists of thousands of tables, hundreds ...
8
votes
8answers
307 views
Delete or comment out non-working JUnit tests?
I'm currently building a CI build script for a legacy application. There are sporadic JUnit tests available and I will be integrating a JUnit execution of all tests into the CI build. However, I'm ...
8
votes
3answers
234 views
Who should learn the “old” system?
I've been involved in several projects which basically involved replacing an "old" system with a "new" system. Invariably, the pattern has been that practically no one on the team building the "new" ...
8
votes
6answers
258 views
Is there a point where cost of refactoring outweighs the cost of re-writing?
We have some really shocking code touted as a next generation framework at my current place of employment.
Thing is, there is only one person of this opinion and that is the guy who wrote most of it. ...
8
votes
16answers
815 views
Getting your head around other people's code
I'm occasionally unfortunate enough to have to make alterations to very old, poorly not documented and poorly not designed code.
It often takes a long time to make a simple change because there is ...
8
votes
8answers
956 views
Unit Testing Legacy ASP.NET Webforms Legacy Applications
I've inherited a legacy web application that has no unit tests in it. I'd like to add some, but am at a loss of where to start. Should I add them to old code? Or just new code going forward? What if ...
8
votes
8answers
2k views
Stored procedures reverse engineering
We're having problem with a huge number of legacy stored procedures at work. Do you guys recommend any tool the can help better understand those procedures? Some kind of reverse engineering that ...
8
votes
11answers
2k views
Are there any Technical Advantages on Mainframe (or any other legacy systems)?
Background: I believe most of the major financial institutes and major retailers still have many critical business processes and data relied on the legacy systems, such as Mainframe. Many developers ...
8
votes
6answers
661 views
Namespace/solution structure
I apologize for asking such a generalized question, but it's something that can prove challenging for me. My team is about to embark on a large project that will hopefully drag together all of the ...
7
votes
3answers
46 views
What is a good way to manage cleanup commits in git for a legacy project?
I have a large codebase, where almost every single file isn't aligned properly, has bad spacing between variables or methods, or just generally ugly code.
I'd like to make it better as I work with ...
7
votes
11answers
282 views
“Cosmetic” clean-up of old, unknown code. Which steps, which order? How invasive?
When I receive code I have not seen before to refactor it into some sane state, I normally fix "cosmetic" things (like converting StringTokenizers to String#split(), replacing pre-1.2 collections by ...
7
votes
6answers
822 views
How can I manage Perl module dependencies?
I'm currently in a project which develops using a framework developed by another department as the base. We are currently introducing quality standards (at last, yay!) in our department, but it's ...
7
votes
6answers
1k views
legacy gcc compiler issues
We are using a legacy compiler, based on gcc 2.6.0, to cross compile for an old imbedded processor we are still using (yes, it is still in use since 1994!). The engineer that did the gcc port for this ...
7
votes
4answers
476 views
How do you start with FxCop on legacy code?
Does anyone have any experience of introducing FxCop to legacy code? We would like to have our build fail if anyone introduces code that violates rules. But for the time being, this is impossible, as ...
7
votes
5answers
827 views
Adding unit tests to an existing project
My question is quite relevant to something asked before but I need some practical advice.
I have "Working effectively with legacy code" in my hands and I 'm using advice from the book as I read it in ...
7
votes
4answers
2k views
What are some good techniques to convert an Ms Access application to a .Net Application?
We have a 12-year-old Ms Access app that we use for our core inventory warehousing and invoicing system. It IS already running on an SQL Server backend, but all the "logic", forms and reports are in ...
6
votes
4answers
112 views
Implementing a DSL in C# for generating domain specific XML
I have a legacy HTTP/XML service that I need to interact with for various features in my application.
I have to create a wide range of request messages for the service, so to avoid a lot of magic ...
6
votes
2answers
191 views
How to remove CSS spaghetti in legacy web app?
After working on several large web applications, and seeing gigantic style sheets with no clear structure, I'd really love to know if people have found ways to keep their css clean for large and ...
6
votes
2answers
207 views
Can I throw C++ exceptions from legacy C callbacks?
I have C++ code that uses some C libraries. The C libraries take C language callbacks. I wrote a callback in my C++ code and now I somehow need to report error from it (but it returns void). I wonder ...
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
2answers
601 views
Why does Joomla debug show 446 queries logged and 446 legacy queries logged?
I have been called in to fix the performance of a Joomla site that was already setup.
I look at the debug output and it shows the same queries twice, once for queries logged and again for legacy ...
6
votes
4answers
212 views
Legacy code - when to move on
My team and support a large number of legacy applications all of which are currently functional but problematic to support and maintain. They all depend on code that the compiler manufacture has ...
6
votes
1answer
408 views
bash: $[<arithmetic-expression>] vs. $((<arithmetic-expression>))
I have just stumbled upon the bash syntax:
foo=42
bar=$[foo+1] # evaluates an arithmetic expression
When I Googled for this, I found ...
6
votes
2answers
175 views
What problems should I expect when moving legacy Perl code to UTF-8?
Until now, the project I work in used ASCII only in the source code. Due to several upcoming changes in I18N area and also because we need some Unicode strings in our tests, we are thinking about ...
6
votes
5answers
323 views
Help me explain the benefits of XML and other markup languages
I am trying to convince some senior people at my company of the advantages of transmitting data in a structured format between two of our systems.
Currently one system outputs flat text files and ...
6
votes
4answers
2k views
How can we work with VB6 dll called from a multithreaded c# windows service application?
I'm running a multithreaded windows service that need to call a VB6 dll. There's no documentation about this VB6 dll and this legacy system supports a very critical business process.
At first time ...
6
votes
7answers
462 views
Will “Working Effectively with Legacy Code” help someone working with an app ported from VB6 to VB.NET?
I would like to refactor a large legacy application originally written in VB6 and subsequently ported to .NET. In order to do this with confidence, I want to have unit tests around the existing code ...
6
votes
1answer
535 views
Tips for testing data intensive legacy application
I'm working on a very large, data-intensive legacy application. Both the code base & database are massive in scale. A great deal of the business logic is spread across all of the tiers including ...
6
votes
10answers
299 views
Learning a legacy Java system
I've been tasked with maintaining and refactoring a legacy Java system. I currently do C# and .NET, although I'm familiar with Java.
The legacy system uses RMI, a client/server architecture and was ...
6
votes
5answers
971 views
C++0x implementation guesstimates?
The C++0x standard is on its way to being complete. Until now, I've dabbled in C++, but avoided learning it thoroughly because it seems like it's missing a lot of modern features that I've been ...