Tagged Questions
The coding-horrors tag has no wiki summary.
22
votes
14answers
1k views
Code Review vs. Check In often?
Following Jeff's article about checking in often, some commenters couldn't resist spewing "Welcome to obvious land!" kind of comments. That's understandable, in most situation it's obvious that ...
10
votes
6answers
373 views
Ref Abuse: Worth Cleaning Up?
I have inherited some code that uses the ref keyword extensively and unnecessarily. The original developer apparently feared objects would be cloned like primitive types if ref was not used, and did ...
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 ...
4
votes
3answers
312 views
Code Complete 2ed, composition and delegation
After a couple of weeks reading on this forum I thought it was time for me to do my first post.
I'm currently rereading Code Complete. I think it's 15 years since the last time, and I find that I ...
3
votes
5answers
3k views
SVN and Xcode woes
I've heard repeatedly that Xcode's integration with SVN is lacking, but seeing as I have personally never used it, I cannot help but wonder why.
Now I'm starting a new project, and once again SCM has ...
2
votes
2answers
177 views
Java program to match songs (mp3) with slides (ppt) containing its lyrics
I have thousands of non-English songs in MP3s & thousands of PPTs, each displaying the lyrics of a song. I want to write a java program that would match up the correct MP3 with its PPT.
I could ...
0
votes
6answers
457 views
Common design by obfuscation practices?
What are some common practices you have seen used in the design by obfuscation crowd? I find it interesting to be on projects that are not allowed to be rewritten while, that would be the faster and ...