58
votes
43answers
5k views
What is in your .vimrc?
Vi and Vim allow for really awesome customization, typically stored inside a .vimrc file. Typical features for a programmer would be syntax highlighting, smart indenting and so on.
What other tricks …
41
votes
36answers
2k views
How do you stop yourself from refactoring working but awful code?
I have this problem. I can't stop myself from refactoring existing code that works but is, in my opinion (and perhaps objectively), badly designed or contains other "code smells". This can have a …
40
votes
30answers
3k views
Java: Out with the Old, In with the New …
Java is nearing version 7. It occurs to me that there there must be plenty of textbooks and training manuals kicking around that teach methods based on older versions of Java; where the methods …
34
votes
29answers
2k views
When is it good (if ever) to scrap production code and start over?
We have a software product that was written by a single programmer who is no longer with the company, and have we even have a few customers running the software. I was asked to do a code review and …
30
votes
16answers
2k views
Unit testing for C++ code - Tools and methodology
I'm working on a large c++ system that is has been in development for a few years now. As part of an effort to improve the quality of the existing code we engaged on a large long-term refactoring …
30
votes
21answers
1k views
When do you know it’s time to rewrite an application
This is humbling, but probably something most can relate to. I am currently adding functionality to a PHP application I wrote for a client 2 years ago. In the interest of full disclosure, this was …
25
votes
11answers
1k views
C/C++: Detecting superfluous #includes?
I often find that the headers section of a file get larger and larger all the time but it never gets smaller. Throughout the life of a source file classes may have moved and been refactored and it's …
23
votes
9answers
879 views
Is there a working C++ refactoring tool?
Does anybody know a fully featured refactoring tool for C++ that works reliably with large code bases (some 100.000 lines)?
I tried whatever i can find again and again over the last years: SlickEdit, …
22
votes
2answers
454 views
Coding Katas for practicing the refactoring of legacy code
I've gotten quite interested in coding katas in recent months. I believe they are a great way to hone my programming skills and improve the quality of the code I write on the job.
There are numerous …
20
votes
27answers
2k views
Can you simplify this algorithm?
One for the mathematicians. This has gone around the office and we want to see who can come up with a better optimised version.
(((a+p) <= b) && (a == 0 || a > 1) && (b >= …
20
votes
23answers
894 views
How often should you refactor?
I had a discussion a few weeks back with some co-workers on refactoring, and I seem to be in a minority that believes "Refactor early, refactor often" is a good approach that keeps code from getting …
20
votes
12answers
1k views
Are there any utilites that will help me refactor CSS
I am working with some CSS that is poorly written to say the least. I am not a design/CSS expert, but I at least understand the C in CSS. While the built in CSS support inside of VS-2008 is far …
18
votes
11answers
1k 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 …
18
votes
18answers
2k views
What ReSharper 4.0 live templates for C# do you use?
What ReSharper 4.0 templates for C# do you use?
Let's share these in the following format:
[Title]
Optional description
Shortcut: shortcut
Available in: [AvailabilitySetting]
// Resharper …
17
votes
14answers
898 views
Refactoring and concurrent development branches
You have several maintenance branches for existing releases of your software. Some developers are making direct changes in the maintenance branches, and merging periodically into the trunk. Now comes …
