Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
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 ...
16
votes
6answers
906 views

Boost like libraries in C

Can you recommend peer reviewed libraries that I can use in C environment (something like Boost for C++) ? Something that provides hash, thread, interprocess communications, lists, smart memory ...
10
votes
3answers
144 views

How beneficial is a top down code review?

It seems that most code reviews are bottom to top - being that the lower engineers get their code reviewed by the higher ups and the higher ups by the managers or not at all. It occurred to me when ...
8
votes
6answers
372 views

How do you promote a culture of peer code review with your team?

We have tried many methods such as Code review required before check-in (hard to enforce) Monthly code review sessions (tend to side-track, time consuming, too high level) One or two devs with free ...
8
votes
11answers
746 views

How to prevent (junior) developers making the wrong decisions/bad code?

Short of hovering over the developers and question all decisions they make/code they produce, like architectural choices, massive codefiles (5k LOC), no code commenting or documentation, etc. I'm ...
7
votes
6answers
1k views

Peer Reviews or Pair Programming, or Both?

Do you participate in code peer reviews or practice pair programming, or both? Have you been able to demonstrate an increase in software quality using these practices? What benefits and drawbacks ...
6
votes
6answers
231 views

Qualities of Code Reviewers

When choosing code-reviewers for your project what qualities you see/prefer in the candidates (the one who does review)? # of years of experience? time availability (not selecting very busy guys) ...
6
votes
14answers
1k views

Simple C++ function — Is this code “good”?

The following code was produced by a consultant working for my group. I'm not a C++ developer (worked in many languages, though) but would like some independent opinions on the following code. This ...
5
votes
6answers
565 views

Yearly Developer Review

What criteria do you rate your developers on when doing their yearly reviews? We are looking to improve our process more than "we feel you did a good job, here is a raise!" We were thinking something ...
4
votes
4answers
182 views

Is there a site where I can post snippets of code for review?

I'd seen someone post a link to such a site on SO , but I forgot what it was...
4
votes
3answers
310 views

How to ensure correctness of data gathered via crowdsourcing?

I have a site where users are entering data of some products they buy. How do I ensure correctness of data entered via crowdsourcing (enabling users to vote/edit products) minimizing amount of work ...
4
votes
5answers
274 views

If you pair program, do you still need a peer review?

I think in general Peer reviews are a very good part of development process, they often catch or question things which were not apparent when code was originally written and make you more self ...
3
votes
5answers
882 views

Best way to track and enforce peer reviews before commit

I was wondering what mechanism have people used to enforce and track peer reviews for committing to SVN. For each commit I want to be able to track if people have had a peer review (I am not sure ...
3
votes
6answers
666 views

Recommendation for text-based software design review collaboration tool

Much of the software design we do in our company is in Microsoft Word, embedding pictures and Visio diagrams where necessary. Can anyone recommend a good software design review collaboration tool ...
2
votes
2answers
300 views

Documents in LaTeX, output in PDF, sources in SVN - need customizable component or software for peer review

We have a large SVN repo of LaTeX documents. Each document ultimately is rendered into PDF. Documents need to be reviewed. Review has two major goals: ensure the quality of text itself and ensure the ...
2
votes
1answer
285 views

What is your review process for Rhapsody development?

My team is using the IBM's Rhapsody tool to do real-time embedded development. Unfortunately, we are unhappy with our current review process. More specifically, we've had difficulty because: there ...
2
votes
2answers
296 views

Review my game project OR (How to peer-review my project)?

I just finished a 2d platformer in C++/Allegro. Its still in an incomplete stage... I wonder how to go about a peer-review from people who are into game development. I would like to review my project ...
1
vote
0answers
131 views

Where are the C experts for professional code peer review? [closed]

I have written some code in C that I would love to get professionally peer reviewed. I would like someone to help me with memory profiling etc as well to make the code rock solid. The code is probably ...
1
vote
1answer
125 views

PHP Website Framework Question - Reviewing Structure

I've been designing a php website for my school on and off for about a year now - this is really just a way for me to learn php and designing. However, lately I've been feeling like the whole system ...
1
vote
2answers
102 views

Does anyone know of a code change management tool that can highlight code changes in Visual Studio?

Hey all, I am trying to find a tool that can highlight code changes in Visual Studio so they can be easily found and reviewed. Below are some requirements for what we are looking for... Identify and ...
1
vote
3answers
65 views

Model diagram doesn't seem right. How else can I relate the objects?

I have a entity diagram from some analysis that I'd like to have someone look over. For some reason the System object just doesn't seem right to me. Is there a better way to relate the objects? Its ...
1
vote
7answers
239 views

Best approach to constructive criticism during pair programming

While pair programing what is the most optimal way to offer constructive criticism? How do you critique without pointing out flaws?
1
vote
2answers
127 views

How do you peer review SRSS reports?

I'm a big fan of peer review of code but when it comes to reports there just doesn't seem like a good way reviewing them. Showing differences just gets you the XML which isn't very readable and ...
1
vote
3answers
275 views

Where can I find Peer Code Review?

I was looking for a website that would allow me to post my C# applications, have people download them and tell me what the like/dislike about them. If you know of one please let me know, or if we can ...
0
votes
1answer
30 views

Wiki, Content Management or Roll my Own?

Oh, Collective Wisdom of the Crowd, I've been handed the Task. My inclination is to go code but as I'm old and weary I'm aware of my total ignorance in Web coding, as well as my tendency to code ...
0
votes
1answer
48 views

Sources, APIs and techniques for academic data-mining

So I'm gonna do a historical trends analysis for one of my education literature review class. I'm considering use the abstracts and keywords from the peer-reviewed journals since 1970s, I know ...
0
votes
1answer
57 views

How can I improve this C# .NET4 code?

I have a list of filenames (not the full path). (IEnumerable< string >) I have a list of a class, which contains a string property (FullPath) that contains a full file path. ( List< CustomClass ...
0
votes
0answers
42 views

How to change Codestriker way of showing diff colors

I am using Codestriker as a peer code review tool linked with subversion repository. Is there a way to customize the Codestriker's colors of code differences shown on split screen? UPDATE: I was ...
0
votes
5answers
175 views

My first attempt at K&R 2-3's hex to integer htoi()

I'm working through K&R on my own to learn C. 2-3 Write the function htoi(s), which converts a string of hexadecimal digits (including an optional 0x or 0X) into it's equivalent integer ...
0
votes
2answers
473 views

Define Date format, regex match, and check validity - Peer Review

I'm writing a input validation method for codeigniter to check date format. I'm actually just doing it in a test script to get the functionality nailed down. I've got something that works but I'd ...
0
votes
4answers
238 views

What would you submit as an example of your best code for peer review? [closed]

If your company was being audited, or you were in an interview, and you were asked to provide an example of your best code for peer review, what would you submit? (I would like actual code examples ...