Tagged Questions
Code review is systematic examination (often as peer review) of computer source code. It is intended to find and fix mistakes overlooked in the initial development phase, improving both the overall quality of software and the developers' skills.
238
votes
60answers
22k views
Is a debugger the mother of all evil? [closed]
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, ...
179
votes
40answers
9k views
A function that returns only true
During a code review I performed today for my colleague, I noticed a function that was defined as returning a boolean value, but in practice it returned only true. In a case of failure, this function ...
105
votes
35answers
3k views
How to help a struggling 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 ...
74
votes
10answers
7k views
Online Peer Code Review? [closed]
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 ...
54
votes
30answers
4k 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 ...
53
votes
25answers
5k 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?
44
votes
23answers
11k 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 ...
37
votes
11answers
1k views
Code analysis and task assignment in java
I've recently watched an interesting talk on how a part of the Jet Propulsion Laboratory is doing their code review.
Essentially they have a tool (Scrub) that:
Runs various code analyzers on the ...
36
votes
13answers
14k 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 ...
36
votes
10answers
6k 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: ...
33
votes
28answers
2k views
Commenting code that is removed?
Is it a good practice to comment code that is removed? For example:
// Code to do {task} was removed by Ajahn on 10/10/08 because {reason}.
Someone in my developer group during a peer review made ...
31
votes
20answers
1k 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 ...
30
votes
7answers
14k views
Open Source Code Review Tools? (Mondrian)
I've read a bit about Google's Mondrian, and I've seen Atlassian's Crucible demonstrated - I'm convinced that the tools have value. Are there open-source code review tools? It would be used on a ...
29
votes
9answers
3k views
How do you perform code reviews?
How are code reviews performed on your development team?
I've been a developer for several years now in several different companies and I have noticed that there isn't a consistent approach to ...
28
votes
5answers
4k 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, ...
27
votes
4answers
1k views
Auditing a PHP codebase
I'm about to look at a project's PHP codebase for the first time, and I'd like to perform a semi-formal audit. Because I'm new to the project, this will not only give me a chance to get properly ...
27
votes
18answers
2k views
C# Code Smells. What are the most common and how to fix them? [closed]
Possible Duplicates:
What are Code Smells? What is the best way to correct them?
Entity Framework “Code Smells” Question
Common programming mistakes for .NET developers to avoid? ...
23
votes
3answers
7k views
Review Board workflow for Mercurial repository
At my company we are trying to add code reviewing practices into our development process and for that purpose we decided to use Review Board.
While Review Board should work out of the box for ...
23
votes
14answers
933 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 ...
22
votes
6answers
6k views
Online code review tool with git integration
For our dev team we need to conduct code reviews regularly. Our core requirements are:
It is hosted somewhere so we don't have to bother with supporting the infrastructure for it
It can integrate ...
22
votes
5answers
5k views
How to get the FxCop custom dictionary to work?
How is it possible to get the FxCop custom dictionary to work correctly?
I have tried adding words to be recognised to the file 'CustomDictionary.xml', which is kept in the same folder as the FxCop ...
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 ...
20
votes
5answers
497 views
Is it OK doing a return from inside using block
I am doing a code review, and have found alot of code with the following format:
public MyResponse MyMethod(string arg)
{
using (Tracer myTracer = new Tracer(Constants.TraceLog))
{
...
20
votes
7answers
11k views
Best free Code Review tool for Eclipse/Java/Flex Development
I'm using Eclipse and I'm wondering what the best Eclipse/Java/Flexbuilder code review tool is. If it matters we're using SVN as our SCM.
Here are the following I've come across:
Jupiter - seems ...
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 ...
19
votes
5answers
2k views
Code reviews on the web for PHP and JavaScript code
What are the best places for freelancers or small companies to get code reviewed for PHP and JavaScript? Forums are an option, but are there any sites dedicated specifically to code reviews?
Edit: ...
19
votes
10answers
986 views
Extract relevant changes for code review
I'm working on a project with a team where we check in early and often. Individual checkins are completed to the satisfaction of the developer doing the change (including tests where possible) but ...
18
votes
4answers
211 views
Are there any code critique sites or similar resources?
I have noticed when people post example code illustrating some issue that they are having often they will gather a number of comments addressing the quality of the code they presented and not the ...
17
votes
15answers
853 views
Scope of variables in C#
I got a question for you guys on C# code writing:
I had a long debate with collegue of mine:
He says that by declaring and initilizing all variables in the beginning of the function make code more ...
17
votes
20answers
1k views
Any valid reason for code duplication?
I'm currently reviewing a very old C++ project and see lots of code duplication there.
For example, there is a class with 5 MFC message handlers each holding 10 identical lines of code. Or there is a ...
17
votes
6answers
6k views
TFS Tool for Peer Code review
Could any one suggest a tool for performing peer code review before check-ins that is integrated with Team Foundation Server and Visual Studio 2008?
[Update]: Looks like there is no such tool. Can ...
16
votes
9answers
14k views
ResultSet not closed when connection closed?
I ve been doing code review (mostly using tools like FindBug) of one of our pet projects and FindBug marked following code as errorneus (pseudocode):
Connection conn = dataSource.getConnection();
...
15
votes
6answers
286 views
Code review when working solo
What are my best options for conducting a code review since I'm an 'army of 1' at work?
The best I've done so far is run Sonar on my projects, but I'm thinking more could be done.
I'd love to go ...
15
votes
5answers
4k views
Successful code review strategy with SVN and ReviewBoard?
I've managed to introduce ReviewBoard to the coding workflow in my company, while "introduce" means having installed and presented it. We also have a general agreement that we need code reviews ...
15
votes
7answers
3k views
Code review process?
I'm looking to formalize the way we do code reviews at within my department because at the moment it't a bit disorganised.
Do you have a formal code review process?
If so what is it and how do you ...
15
votes
17answers
746 views
Persuading developers to fix smelly but working code?
In our company, developers always have dozens of important tasks assigned and tight deadlines in which to complete them.
In this environment, a code review often shows that their program will execute ...
15
votes
7answers
5k views
Code Walkthrough vs. Code Review
How many of you use walkthroughs instead of reviews? Or in conjunction with Reviews? Or only use walkthroughs?
Are Walkthroughs beneficial and how have you all implemented code walkthroughs?
15
votes
7answers
563 views
How can I introduce code reviews to my group/company? [closed]
I work for the company's research team, which is pretty selective in hiring. Having said that, we all tend to work on different projects, so it is very easy to cut corners because no one is watching. ...
14
votes
2answers
3k views
Workflow for GitHub-based code review
I'm considering using GitHub as our primary tool for doing code review. With features like in-line commenting and compare view, it seems to have a lot of features that tools like Gerrit have on offer.
...
14
votes
13answers
801 views
Reasons for doing Code Reviews when we only have Senior Developers
I'm currently trying to pitch code reviews ( to improve code quality) to my manager. I am getting some push back, due to the belief that code reviews aren't required when you only have senior ...
14
votes
20answers
838 views
When To Comment Code (The Other “When”)
Yesterday I was going through some code of mine which made no sense to me at first (written less than a month ago). When I understood it, I quickly added comments to avoid the exercise. This made me ...
14
votes
19answers
1k views
“How to do a code review?” or “How to tell a co-worker that her HTML sucks?”
I just started working for a small web company that has one designer and one programmer. I'm kind of the person in between with experience in both worlds.
The problem I see right now is that the ...
13
votes
4answers
2k views
Check for private API “usage” yourself?
So, we all know Apple forbids using private or undocumented APIs in iOS apps. I have no problem with this, as there are sound technical reasons for why this is a good idea. However, twice now I've had ...
13
votes
7answers
3k views
C# XNA: Optimizing Collision Detection?
I'm working on a simple demo for collision detection, which contains only a bunch of objects bouncing around in the window. (The goal is to see how many objects the game can handle at once without ...
13
votes
20answers
2k views
What should be done first: Code reviews or Unit tests?
If a developer implements code for some module and wants to get it reviewed. What should be the order :
*First unit test the module after designing test cases for the module, debugging and fixing the ...
13
votes
7answers
742 views
What do your code reviews involve and what patterns are successful?
I want to better understand the patterns that work and the patterns that don't work for successful code reviews.
Should there be a difference be a Formal Code Review and an Informal Code Review?
...
13
votes
13answers
1k views
How do you do code reviews?
I've recently moved from a company with 30 or so developers all based on the same site, to a smaller company with a total of 6 developers working all over the country.
Previously when I was ...
12
votes
3answers
324 views
Better way to trigger OnPropertyChanged
We have a WPF Project that follows the MVVM pattern.
In the View Model there is a lot of code that looks like this:
private string m_Fieldname;
public string Fieldname
{
get { ...
12
votes
9answers
2k views
algorithm to find complementary solution to this problem
I had this coding question in an interview.I couldnt find an optimum solution to this.
what I did was,
for(i=0;i<n;i++)
for(j=i;j<n;j++)
if(a[i]+a[j]==k) print a[i], a[j]
But that would give ...
12
votes
11answers
382 views
How does a lone developer code review?
I've had an epic google on this topic and also looked long and hard through the suggested answers to this quandary so please I just want some concrete advice if such exists. Here's my situation. I ...