71
votes
51answers
4k views
Is a debugger the mother of all evil?
Some say that a debugger is the mother of all evil. What do you think of this approach?
I have a friend at work, a colleague, who's completely against using a debugger whatsoever.
I asked him: So, …
62
votes
30answers
1k views
How to help to an underperforming newbie do a better job?
I have been the only developer and the de-facto "senior developer" on my company's flagship product for a while (a .NET WinForms app, but that is not related). Just recently, they brought in a …
45
votes
32answers
2k views
How do you make people accept code review?
All programmers have their style of programming. But some of the styles are let’s say... let’s not say. So you have code review to try to impose certain rules for good design and good programming …
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 …
36
votes
5answers
2k views
Online Peer Code Review?
For people who work on very small teams, or by themselves, or on teams where they are by far the best developer and have a need to learn from someone better than them, are there any online …
34
votes
21answers
2k views
How to conduct a successful code review?
So I work in a shop that doesn't conduct code reviews. What are some of the best practices out there that actually work?
27
votes
29answers
1k views
Commenting code that is removed?
Is it a good practice to comment code that is removed? Like I used to have code here but it was removed by Ajahn on 10/10/08 because REASON.
Someone in my developer group during a peer review made a …
23
votes
22answers
952 views
How do you make wrong code look wrong? What patterns do you use to avoid semantic errors?
Ever since I first made the mistake of doing an assignment in an if I've always written my ifs like this:
if (CONST == variable) {
to avoid the common (at least for me) mistake of doing this:
if …
22
votes
40answers
2k views
Annoying or idiotic naming conventions?
What programming or naming conventions have you come across that really rub you the wrong way?
For those that aren't aware, in C# we can wrap blocks of code with a #region directive, which allows …
19
votes
14answers
723 views
How do I protect the trunk from hapless newbies?
A coworker relayed the following problem, let's say it's fictional to protect the guilty:
A team of 5-10 works on a project which is issue-driven. That is, the typical flow goes like this:
a chunk …
19
votes
18answers
2k views
Best tools for code reviews
It has been well established that code reviews are good, so this question is purely about the mechanics. For a dev environment centered around Visual Studio and Subversion what are the best tools for …
19
votes
7answers
2k views
Tool to aid Code Review
For our small team of 20 developers, we used do code review like:
Make a label in svn and publish the label to the reviewers
Reviewers checkout the code and add comments in line (with marker like: …
16
votes
4answers
1k views
Comparison of Code Review Tools/Systems
There are a number of tools/systems available aimed at streamlining and enhancing the code review process, including:
CodeStriker
Review Board, code review system in use at VMWare
Code Collaborator, …
16
votes
64answers
4k views
What is the worst code you’ve ever written?
Step into the confessional. Now's your time to come clean.
What's the worst code you personally have
ever written?
Why was it so bad?
What did you learn from it?
Don't tell us about code you …
15
votes
12answers
2k views
What’s the best way to do a code review with Subversion (SVN)?
I want to be able to do a peer code review with Subversion, but what's the easiest way to do this without installing a server application or paying for an online service?
PS: This is a .Net project …
