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.

learn more… | top users | synonyms

0
votes
0answers
11 views

Install PHP_CodeSniffer in ubuntu

I want to install PHP_CodeSniffer code review tools in ubuntu using terminal. pear install PHP_CodeSniffer doesn't works. please help me out.
0
votes
3answers
76 views

Returning a generic list in java

In my Java application, I'm storing the result of a REST call in a Response Object. The response object has the following members class Response{ boolean successful; //true if call did not result ...
-1
votes
1answer
44 views

Code review tool with IntelliJ and Git integration

We use IntelliJ to edit code and Git for version control. We need to review the code before committing the code into repository. What code review system supports IntelliJ and Git?
0
votes
0answers
5 views

Exporting gitorious code reviews

Does a tool or command to export GITORIOUS code review reports exist? What if I want to backup/restore the code review database? What if I had to send some reports to an external consultant/auditors ...
0
votes
4answers
97 views

C# - want to refactor - appropriate design pattern?

My application currently takes a string read by a barcode scanner, and performs a task depending on the format of the barcode string. Essentially, the barcode string is passed to a web service ...
0
votes
0answers
18 views

Add comments to Reviewboard with Python API

I've been trying to use the Reviewboard Python API, to create a review + comments on an existing review request. Unfortunately I'm having difficulty figuring out the API. I've tried the following: ...
0
votes
0answers
14 views

Good way to do editable messages for plugin?

I am working on a plugin, and have a page setup for the theme developer to be able to edit how my plugin is displayed, and the plugin just injects itself where the theme developer sets certain divs ...
1
vote
1answer
65 views

Gerrit unable to clone

I am trying to create a gerrit review system and was able to successfully get the gerrit to run on port 8084 and review is being on 29429 port successfully. When I am trying to run the git clone ...
0
votes
2answers
83 views

Code Review in Visual Studio 2012, with TFS 2010

Is it possible to enable Code Review in VS2012 with a TFS2010 server? Our should we upgrade our TFS server to TFS2012 before its possible? Thank you! :-)
3
votes
2answers
43 views

How much using statements should I use? There is a limit?

Hey guys can you give me some tips. I've noticed that the correct way to open and close connections to a database is using the using statement that automatically use the IDisposable interface to ...
0
votes
0answers
32 views

VS 2012 Code Review automatically update the related Work Item

Case: I got a Work Item(Bug). Did some changes to the Code. Used the Visual Studio 2012 Code Review Feature. Problem: The related Work Item(Bug) is not updated, when I use the Code Review ...
0
votes
2answers
40 views

Gerrit with users outside of LDAP

So I am using LDAP for authentication however we have an external developer (customer who contributes to the code) which i wish to give access to the git repos but also the web ui interface. Can this ...
-1
votes
2answers
99 views

Getting the time difference between two different times [closed]

gcc (GCC) 4.7.2 c89 Hello, I have developed a sample program that should get the difference between a start time and an end time. I then use the seconds to calculate how many days has elapsed ...
0
votes
0answers
41 views

Using jquery to prepare jQuery UI tabs, optimize?

CodeReview link: http://codereview.stackexchange.com/q/26006/24914 I am looking for someone to review my solution to a jQuery DOM manipulation exercise on appendto.com: ...
4
votes
2answers
110 views

Building a lazy sequence out of IO data

I'm trying to get a grip on Clojure. As an exercise, I set out to build a function that returns a lazy sequence of a given subreddit's entries. In order to make my aim clear, I put together the ...
2
votes
0answers
36 views

Review code in Accurev using crucible

I have earlier used Crucible to setup code review for the code lying in SVN. I remember there used to be feature either to select difference between two version of files, or I was able to select whole ...
0
votes
0answers
32 views

Confusing 'Partial' ResultSet fetching

During code review i found a bit unusual way how to fetch results from DB. We have large table (>10^6 rows) where we run overnight job. I understand following reasons : performance is good as we ...
-3
votes
1answer
34 views

Which would you prefer as code reviewer : Readability vs Completeness? [closed]

I am interested in knowing which of the following you would prefer from the perspective of ease of reviewing code. Consider a peer code review system (CVS + Crucible or Git+Gerrit) in which there is ...
4
votes
5answers
102 views

How Can One Make This Code More Pythonic? [closed]

I am trying to do a very simple operation on an MxN matrix. If one of the elements in the matrix contains a zero, I would like to zero out that entire row in which the element resides. I implemented ...
2
votes
0answers
259 views

TFS 2012 - Code review - Reviewer name is not in the list of allowed reviewers

I want to use TFS 2012 code review template. I am using vS2012 online TFS workspace, where i created 5 of users. From VS2012 I am trying to Add Reviewer to review my code, it display error like ...
4
votes
2answers
87 views

How do I view comments from an earlier code review in Team Foundation Service?

I'm using Microsoft's online Team Foundation Service with Visual Studio 2012 Premium. I performed a code review for a colleague a couple of months ago, and now another code review has come through ...
0
votes
1answer
68 views

How can I make this IP checking snippet more efficient?

I have a short snippet of code to work out if a particular IP address is allowed to run the script: $allowable_ips = array( '192.168.0.', '8.8.8.8', ); $is_allowed = (bool) ...
3
votes
1answer
146 views

Using TFS API, how can I find the comments which were made on a Code Review?

I'm trying to figure out a way to find details about a Code Review Request / Response item in TFS2012. I can query for all Code Review Request/Response items in the following way: const string ...
1
vote
2answers
53 views

Code review annotations with // REVIEW tags in Eclipse

We are looking for a lightweight code review process. Has anybody tried the following: Author checks in into Subversion and gives her files a tag. Reviewer checks out the files, and inserts // ...
0
votes
0answers
60 views

Send Input data as parameter function or use it from model

I want to create an object an add it to a list when someone click a button. I have some doubts about which is the best way to do it; if is necessary to send the new element to the function or i have ...
1
vote
1answer
100 views

Combining lower dimensional slice with higher dimensional Repa array

I am writing a terrain generator using Repa. The generator first creates a DIM2 ground slice, and I want to be able to add DIM2 slices on top of that to create a DIM3 array. Imagine a 3x3x3 box. If I ...
-8
votes
1answer
79 views

writing a code that can only be understood by its owner [closed]

I know it sounds interesting...
1
vote
1answer
90 views

How to generate reports from Review Board?

We're looking for a way to have Review Board generate reports so we can see information such as how many review requests are being reviewed, and by who etc. I've looked around but haven't been able ...
13
votes
4answers
526 views

git find all unmerged commits in master grouped by the branches they were created in

I have to create some code review from unmerged branches. Side-note: In finding solutions, let's not go to local-branch context problem as this will run on a server, there will be just the origin ...
1
vote
1answer
180 views

TFS Code Review Plugin : Multiple Users

I have just started using TFS code review plugin and it looks good. I wanted to know if there is any such setting through which a code review request can be sent to a group directly { not adding each ...
0
votes
1answer
32 views

How to automate the code review process of a wordpress project? [closed]

I'm trying to automate the code review process in my wordpress project, and I'm looking for some opensource tool that will do some effective code review process. Any suggestions?
1
vote
1answer
132 views

How to unit test the vb.net windows form based application?

I have been assigned SDET role recently. And as part of my job I need to do the code review ,code coverage and Unit Testing of the code. The application is developed in the VB.Net and it is a thick ...
1
vote
1answer
121 views

Optimizing Scala code snippet

I'm still learning Scala, and I decided to implement an Othello game. I'm using Alpha Beta pruning basing myself on this algorithm to implement the AI component. However I've realized that my ...
4
votes
2answers
300 views

Printing Numbers in Sequence using n threads [closed]

As part of going through some interview questions i have found the following question. You are given a paragraph , which contain n number of words, you are given m threads. What you need to do is , ...
0
votes
3answers
92 views

Will Javascript sequential execution affect this code? [closed]

I found some code which I thought need some improvement; but finally I get skeptical about that; whether it needs or not so because of that confusion I a asking here. It was before like this: ...
0
votes
0answers
52 views

Hammurapi Ant Build Failed

I'm currently trying to use Hammurapi 3.18.4 for code review, and stucked on this problem: When running Ant for file build.xml to generate report for Hammurapi, I stumbled into these errors: ...
0
votes
1answer
132 views

How to improve performance of Ruby program? [closed]

I have just started learning ruby, and am trying out some of the challenges at HackerRank.com to test my knowledge. In particular, I have been working on the 'Lucky Numbers' challenge: A number is ...
3
votes
1answer
96 views

Regex matching to identify vulnerable code

I'm trying to write a regex that will be able to identify vulnerable code blocks. Typical locations in code that often go overlooked are TODO, FIXME, CVE, BUG comments in code. When performing a ...
0
votes
1answer
46 views

Tree compare revision in Eclipse SVN

When I have pending changes in my workspace I can rightclick the project and select "Compare with->Base Revision", which gives me a tree view of all pending changes with the possibility to view each ...
0
votes
2answers
61 views

Hibernate get method code review

hi guys need some expert advice. which is better (1 or 2) and why? 1 - no transaction object public Car getCar(long ID){ Session s = sessionFactory.getCurrentSession(); s.beginTransaction(); ...
0
votes
0answers
28 views

Does Review Board support commenting on individual lines in an attached source file?

I downloaded and installed Review Board in order to evaluate its fit for our team's workflow. I see that you can attach files to a review. When I go to review an attached file, Review Board lets me ...
0
votes
3answers
308 views

What's wrong with my quick sort?

This early morning I wrote a quick sort using c#, but it didn't work. Can anyone view my code and give me some suggestions? The result showed that it just moved some elements to the first half, but ...
-2
votes
1answer
233 views

Anybody know MATLAB and Python? (Code conversion MATLAB>Python) [closed]

I am trying to re-write this MATLAB program in Python. I haven't succeeded in getting the same Python output, yet. But my attempt is given beneath the MATLAB code. The code does not need any extra ...
0
votes
3answers
161 views

C++ Reading fixed number of lines of integers with unknown number of integers in each line

I'm trying to read in data and solve simple problem, data : 3 - number of lines to read in 1 1 2 2 2 3 4 after each line is entered I would like to obtain sum of entered numers, but ...
0
votes
1answer
134 views

Find intersection of two sorted arrays- how to simplify my code

I wrote a method to take two sorted arrays and return an array of all of the common values, ignoring duplicates. It has a lot of repetition. I'm not sure if it's just the nature of the question or if ...
4
votes
0answers
841 views

svn: E160013: File not found: revision 21602, path 'XXX' SVN Log Query

I am trying to query the SVN Log to get an XML output for a feature branch to include all revisions between 2 dates using SlikSVN cmd line. I am getting the error above "svn: E160013: File not found: ...
2
votes
1answer
39 views

tool for finding code that might throw and code that doesn't catch

Are you aware of any tool that can quickly assess C++ functions or methods that throws exceptions and quickly highlight those function methods that don't catch those /or any exceptions? Sometimes I ...
2
votes
2answers
64 views

Difference (if any) between .+? and .*

I am looking through some old code bases and have come across two regular expression parts that I think are semantically identical. Wondering it the Stackoverflow community can confirm my ...
2
votes
1answer
279 views

What is the best Java Code Review tool to add as plugin to eclipse? [closed]

I want to know what is the best Java code review tool available. Which tool is most preferred and which all can be added as eclipse plug-in. I tried PMD, but somehow I did not find it that good. I ...
1
vote
1answer
81 views

Defining custom syntax highlighting for Atlassian Fisheye/Crucible: MATLAB

I am using Atlassian Fisheye/Crucible ("fecru") for MATLAB code review and fecru is obviously missing a syntax scheme support for matlab code. Apparently there is a mechanism to support a user-defined ...

1 2 3 4 5 19