active questions tagged code-review - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T10:02:24Z http://stackoverflow.com/feeds/tag/code-review http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1865450/comparing-doubles-in-visual-studio-a-standard-way-to-catch-this 1 Comparing Doubles in Visual Studio - a standard way to catch this? Alex 2009-12-08T08:14:26Z 2009-12-08T08:36:56Z <p>Folks, </p> <p>Even experienced programmers write C# code like this sometimes: </p> <pre><code>double x = 2.5; double y = 3; if (x + 0.5 == 3) { // this will never be executed } </code></pre> <p>Basically, it's common knowledge that two doubles (or floats) can never be precisely equal to each other, because of the way the computer handles floating point arithmetic. </p> <p>The problem is, everyone sort-of knows this, but code like this is still all over the place. It's just so easy to overlook. </p> <p>Questions for you:</p> <ul> <li>How have you dealt with this in your development organization? </li> <li>Is this such a common thing that the compiler should be checking that we all should be screaming really loud for VS2010 to include a compile-time warning if someone is comparing two doubles/floats? </li> </ul> <p><strong>UPDATE</strong>: Folks, thanks for the comments. I want to clarify that I most certainly understand that the code above is incorrect. Yes, you never want to == compare doubles and floats. Instead, you should use epsilon-based comparison. That's obvious. The real question here is "how do you pinpoint the problem", not "how do you solve the technical issue". </p> http://stackoverflow.com/questions/1745515/what-ide-lets-me-view-diffs-as-highlighting-on-my-code 2 What IDE lets me view diffs as highlighting on my code? talkaboutquality 2009-11-16T23:19:26Z 2009-12-07T15:41:47Z <p>EDIT: Primarily, talking about code written in C.</p> <p>Someone sends me a diff to review and I know I can take the "before" code, apply the diff (patch) to get proposed "after" code, and open both, pair of files by pair of files, in a difference viewer (e.g. WinMerge, <a href="http://en.wikipedia.org/wiki/Araxis%5FMerge" rel="nofollow">Araxis Merge</a>, etc.) to review the change.</p> <p>On the other hand, if I want to stay in my preferred code browser, with syntax highlighting and right-click definitions, then I don't have the diff anymore.</p> <p>For prose reviewers, MS-Word, which is like a prose writer's IDE, allows you to point a currently-open file at another version of that file, tell it "compare", and, instead of giving you two windows, it highlights the changes on the version you've got open.</p> <p>Anyone know of an IDE that does that for code?</p> <p>EDIT: In other words, an IDE with a <em>built-in</em> diff viewer? Or which allows plug-in of an existing great standalone one?</p> <p>(I bet I could hack an IDE-based code review add-in like Jupiter for Eclipse to do it; lying to it and pretending that the patch is a set of code review comments. But I don't want to lie. I want a source code editor that already think that "compare" is an IDE function.)</p> http://stackoverflow.com/questions/281177/commenting-code-that-is-removed 29 Commenting code that is removed? Andrew Jahn 2008-11-11T15:22:23Z 2009-12-07T15:13:39Z <p>Is it a good practice to comment code that is removed? For example:</p> <p><code> // Code to do {task} was removed by Ajahn on 10/10/08 because {reason}. </code></p> <p>Someone in my developer group during a peer review made a note that we should comment the lines of code to be removed. I thought this was a terrible suggestion, since it clutters the code with useless comments. What are your thoughts.</p> http://stackoverflow.com/questions/49906/best-tools-for-code-reviews 19 Best tools for code reviews Rob Walker 2008-09-08T15:11:56Z 2009-12-05T00:16:34Z <p>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 handling code reviews? </p> <p>We currently use TortoiseSVN as the Subversion client. so accessing diffs, logs, etc. is fairly straight forward, but I think the process could be streamlined more by a tool that was designed for code reviews. Are there any out there?</p> <p><strong>Update:</strong> Thanks for the input. ReviewBoard looks interesting, but would be difficult to fit into our infrastructure due to the lack of Windows hosting. rietveld appears to be at a very early stage at the moment. The commercial offerings certainly look more polished and the pricing isn't bad for a tool that would be a non-trivial part of a developers time.</p> <p><hr /></p> <p>For those interested, see <a href="http://beta.stackoverflow.com/questions/1542/online-peer-code-review" rel="nofollow">related</a> <a href="http://stackoverflow.com/questions/403/tool-to-aid-code-review">questions</a></p> http://stackoverflow.com/questions/1850160/code-review-tool-for-aptana-and-tortoise 0 Code review tool for Aptana and Tortoise? Angela 2009-12-04T22:47:13Z 2009-12-05T00:11:40Z <p>Hi, I've seen some links on this topic, but none with our situation:</p> <p><a href="http://stackoverflow.com/questions/49906/best-tools-for-code-reviews">http://stackoverflow.com/questions/49906/best-tools-for-code-reviews</a></p> <p>We use Aptana for coding and deployment, and Tortoise to put things back into SVN hosted by Unfuddle.</p> <p>I'd like a simple way to do remote, asynchronous code-review -- basically going through checked in code and making comments, asking questions, etcetera.</p> <p>Suggestions?</p> http://stackoverflow.com/questions/1845730/things-to-remember-while-doing-code-review-of-stored-procedures-in-sql-server 2 Things to remember while doing code review of Stored Procedures in SQL Server Rohit 2009-12-04T08:59:56Z 2009-12-04T14:29:51Z <p>What do you guys look for when you are doing a code review from performance prospective. When i do it I look for the following things</p> <p>1) Use NOLOCK when doing select so that table is not locked.</p> <p>2) Prefix dbo. before a table name.</p> <p>3) Use table variables instead of temp tables when dealing with less data</p> <p>4) Avoid cursors, use while loop instead.</p> <p>5) Joins are optimal or not.</p> <p>6) Use of ISNULL is case field has been defined to accept null values.</p> <p>Please share some more knowledge on this subject.</p> http://stackoverflow.com/questions/602138/is-a-debugger-the-mother-of-all-evil 70 Is a debugger the mother of all evil? Ran 2009-03-02T12:26:44Z 2009-12-04T12:16:23Z <p>Some say that a debugger is the mother of all evil. What do you think of this approach?</p> <p>I have a friend at work, a colleague, who's completely against using a debugger whatsoever.</p> <p>I asked him: So, you just write code without bugs? Is that it?</p> <p>He answers: Of course not. Everyone makes mistakes, the difference is how you deal with them <strong>effectively</strong>, how you make sure not to make the same mistake again. When using a debugger, you may find your way to <strong>that</strong> bug, and you may fix it for the specific scenario you've witnessed, but - a) you're wasting your time b/c all that time put into debugging can never be reused, it's a one time hack in the sense that if you have another bug later, you'll probably need to start all over again and b) you've only solved this one bug, and might be that for only this specific scenario that you tested, but you most likely did not solve a more general problem. That's b/c you're not thinking in generality, you're in a debugging mindset, not a general mindset.</p> <p>Me: OK, fine, you don't use a debugger, you think it's a waste of time. What do you do when you find a bug then?</p> <p>Him: When I find a bug here's what I do:</p> <ol> <li>Read my code. Understand it. <strong>Document</strong> it.</li> <li>If a class or a method or a function is not coherent <strong>refactor</strong> it until it is. </li> <li>Add <strong>asserts</strong>. Use preconditions, post-conditions etc. Asserts are very effective.</li> <li>Add <strong>logging</strong>. When the program runs it should tell its user what it's doing, like you're reading a book. Don't assume the user understands the code, don't assume <em>you</em> understand the code. Let the program tell you exactly what it's doing, you will not regret it.</li> <li><strong>Unit-Testing</strong>. Except for the most trivial getters and setters, you need to test everything. Most bugs can be found while unit-testing, or while writing the tests.</li> <li><strong>Code review</strong>. Have someone else look at your code. When he/she asks you questions you'll understand your code better. Many times I found bugs when trying to explain what my code is doing to a reviewer.</li> </ol> <p>Me: OK, dude, that's a lot of things. Are you sure this is the best use of your time?</p> <p>Him: True, if you have a single bug at 8pm after a long day, and all you want to do is fix it and go home, you might get tempted to open a debugger and get rid of that thing already, right? </p> <p>Me: yeah...</p> <p>Him: Well, I think that this is when good developers show. A good developer needs to be self disciplined and realize that: every minute you waste on a debugger is a wasted minute. You'll never get your time back. While if you invest your time smartly in documentation, refactoring, asserting, logging, unit-testing and code reviews you're investing in a brighter future. It might be that this evening you'll get back home late and that is indeed sad, but I also guarantee you that you are not going to regret this and in the next couple of days not only that your coworkers think highly of you, but also you'll have much more free time since at this evening you solved not only one bug, but also a design issue and five other bugs.</p> <p>Me: OK, that's a bit extreme for me. I can see why you're saying that using a debugger is a very short-term investment and that professionals should make long term investments, that's cool. But, isn't it a bit too extreme? I mean is there any good time to use a debugger at all? What about, for example when you inherit the code and you don't even know how it's supposed to run?</p> <p>Him: Dude, in my team I'd not want to have you. If you want to read new code, print it and take it somewhere quiet. A debugger is not a Kindle. </p> <p>So, stackoverflowers, what do you think of this approach? Is a debugger the mother of all evil?</p> http://stackoverflow.com/questions/1820815/how-to-help-a-struggling-newbie-do-a-better-job 78 How to help a struggling newbie do a better job? flipdoubt 2009-11-30T16:23:01Z 2009-12-03T18:05:08Z <p>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 "newbie" developer with a fresh computer science degree. No experience with source control, unit testing, software maintenance, etc. </p> <p>I recently assigned him a small chunk of work and made myself fully-available for assistance, only to find his output lacking in a big way, both in terms of speed and quality. I tried not to be too heavy-handed, so the only upfront guidance I gave him is a wiki article describing the task that I update (but he has not), several code samples on new technologies (such as IPC), and I decomposed the tasks into several FogBugz cases (to which he provided no original estimates, actual time, or commentary until I told him what I would put). He rarely asked questions and, when he did, he seemed to follow my suggestions as though they were requirements, often without understanding them and even when they were wrong.</p> <p>So ... I fully sympathize with his situation where you don't know what to do and are afraid to ask questions. I know it is my responsibility to do a better job, but no one gave me any guidance so I have no experience with what a better job looks like. Luckily, he is on vacation for a week, so I have some time to think about how to improve the process. Here are some of the items that occur to me, but I am open to suggestions and criticism:</p> <ol> <li>Ask what part of the last iteration was most difficult. Ask what part took much more time than he expected.</li> <li>Do some pair programming. I already suggested this and he seemed open to the idea, but each time we started I tended to take over because he wasn't typing fast enough. Something I have to work on. </li> <li>Have a code review before checking the work in. (We did not this time because of his vacation.) The code review would highlight the following items.</li> <li>Require comments on all public members. (None of his code is commented.)</li> <li>Require him to remove all unused code. (A cursory review shows he did not.)</li> <li>Require him to commit code to each FogBugz Case as he completes it and/or revise cases where they differ from what he discovers while coding.</li> <li>Require him to enter original estimates into FogBugz and toggle the "working on" flag to keep him on task.</li> </ol> <p>While the code review stuff is specific and technical, I am more concerned with his ability to be a self-starter and to ask-for/get guidance where he needs it. I don't think of the FogBugz requirements (6 and 7) as hard rules, but it seems like he needs to follow them to keep him on track.</p> <p>Also, I know I need to improve my mentoring/training skills as much as he needs to improve his coding skills. Any suggestions on where to start when the "senior developer" has not participated in a formal code review or made it through a pair programming session without taking over?</p> <p>My impulse is to update the stuff he already checked in, but I know I should save that for a code review. I wanted him to check the work in so I could begin coding the part that uses what he checks in. So should I use what he checked in even though I don't think it is satisfactory?</p> http://stackoverflow.com/questions/130965/what-is-the-worst-code-youve-ever-written 16 What is the worst code you've ever written? Even Mien 2008-09-25T01:22:55Z 2009-12-03T15:49:34Z <p>Step into the confessional. Now's your time to come clean. </p> <ul> <li>What's the worst code you personally have ever written? </li> <li>Why was it so bad?</li> <li>What did you learn from it?</li> </ul> <p>Don't tell us about code you inherited or from some co-worker. This is about your personal growth as a programmer and as a person.</p> http://stackoverflow.com/questions/1838390/live-changelogging-for-cvs-comments 0 "Live" Changelogging for CVS-Comments? martin 2009-12-03T08:09:31Z 2009-12-03T12:11:14Z <p>Hello,</p> <p>My problem is that i often forgot what i have changed in my software, when i do a cvs-check in. So i have to lookup my code for changes. If this could be automated, it would be great.</p> <p>So can anyone tell me if there is a tool or something which can lookup my code (i'm using c#) for specific comments, that i add if i change something and write these comments to a file, so i can use it for cvs checkin?</p> <p>An example:</p> <pre><code>//BUGFIX: This Program part was changed //IMPROVED: This is a new Function ...ProgramCode... </code></pre> <p>The program should read my source files and recognize the comments with <code>BUGFIX</code> and <code>IMPROVED</code>. These comments should be written to a file. After they a written the lines with BUGFIX and IMPROVED should be removed from my sources. It should be possible to declare new tags.</p> <p>I would be happy if somebody can give me an advice.</p> <p>Greetings, Martin</p> http://stackoverflow.com/questions/1836109/is-this-a-proper-use-of-the-asynchronous-cababilities-of-the-socket-class 1 Is this a proper use of the asynchronous cababilities of the Socket class? ChaosPandion 2009-12-02T21:57:17Z 2009-12-03T03:17:02Z <pre><code>/// &lt;summary&gt;&lt;/summary&gt; private Byte[] _ReceiveBytes(Int32 size) { MemoryStream memory = null; SocketAsyncEventArgs args = null; EventHandler&lt;SocketAsyncEventArgs&gt; completed = null; Exception exception = null; Int32 last_update = Environment.TickCount; Boolean finished = false; Int32 count = 0; Int32 received = 0; completed = new EventHandler&lt;SocketAsyncEventArgs&gt;((s, e) =&gt; { try { count = e.BytesTransferred; last_update = (count &gt; 0 ? Environment.TickCount : last_update); memory.Write(e.Buffer, 0, count); received += count; finished = (received == size); if (!finished) { count = Math.Min(_ChunkSize, size - received); args.SetBuffer(new Byte[count], 0, count); if (!_Socket.ReceiveAsync(e)) { completed(s, e); } } } catch (Exception ex) { exception = ex; } }); using (memory = new MemoryStream()) using (args = new SocketAsyncEventArgs()) { count = Math.Min(_ChunkSize, size - received); args.SetBuffer(new Byte[count], 0, count); args.Completed += completed; if (!_Socket.ReceiveAsync(args)) { completed(_Socket, args); } while (!finished) { Thread.Sleep(_SleepTimeSpan); if (exception != null) { throw new Exception(_ReceiveExceptionMessage, exception); } else if (!finished &amp;&amp; Environment.TickCount - last_update &gt; _ReceiveTimeout) { throw new TimeoutException(_TimeoutExceptionMessage); } } return memory.ToArray(); } } </code></pre> http://stackoverflow.com/questions/1833195/how-to-get-free-impartial-code-reviews-advice 9 How to get free impartial code reviews / advice? James.Elsey 2009-12-02T14:22:14Z 2009-12-02T14:41:18Z <p>Hello,</p> <p>I haven't been able to find this question here so here goes.</p> <p>Is there any website / service that offers free (or at least cheap) code reviews?</p> <p>There must be lots of people that write applications in their free time, to learn new skills and also as a recreational activity, how can these people ever know if they are doing something terribly bad or using the wrong functionality to get from point A to point B?</p> <p>Is there some site that could cover the following?</p> <ul> <li>You post your source code, or linked to hosted application</li> <li>Others can review this, add comments/suggestions from both a users and developers perspective</li> <li>You can comment on other peoples' comments to obtain the best possible solutions to problems</li> </ul> <p>Maybe the site could have a reputation system like this, where you score up for helping with suggestions, afterall, if the reviews are free surely there should be something in it for the time invested?</p> <p>Anyways, not to deviate, my question is</p> <p><strong>Where can I get free advice on my applications that I develop in my own time, so I can know where I'm introducing bad practices, and how to improve techniques?</strong></p> <p>EDIT: Forgot to add, in my case my project is a Java web application, which I'll have up on Google project hosting. An example of a good review would be DAO, maybe someone would spot that I'm using a terrible hibernate query and I could improve performance by doing it another way. Things like that are hard to pick up if you're doing this as a learning project (well, reading proper tutorials would help)</p> http://stackoverflow.com/questions/1819978/code-review-determining-whether-a-folder-exists-given-the-full-file-path 3 Code review: Determining whether a folder exists, given the full file path? Mark 2009-11-30T13:57:50Z 2009-12-01T00:42:42Z <p>With a function being passed a full path to a file, such as <code>C:\someFolder\anotherFolder\someXML.xml</code>, determine whether the folder exists. Is there a smarter/better/more elegant way of doing this? Here is my implementation:</p> <pre><code>Private Function FolderExists(ByVal fullPath As String) As Boolean Dim folders() As String = fullPath.Split("\") Dim folderPath As String = "" For i As Integer = 0 To folders.Length - 2 'subtract 2 to avoid appending the filename. folderPath += folders(i) + "\" Next Dim f As New DirectoryInfo(folderPath) Return f.Exists End Function </code></pre> http://stackoverflow.com/questions/1822181/code-review-please-a-java-program-that-displays-an-xml-file-with-30000-terms-in 0 Code review please: a Java program that displays an XML file with 30000+ terms in a JTree. jeroen.vangoey 2009-11-30T20:21:33Z 2009-11-30T20:59:25Z <p>I am hunting for a job and one of the companies that I interviewed with asked me to write a little test program so that they could test my programming abilities. I am a biologist by training, and most of my programming knowledge I gain by autodidactic means. I am also more comfortable writing Python then Java. </p> <p>This is the brief I was given:</p> <blockquote> <p>Write a java program, that uses and XML file with GO-terms (downloadable on archive.geneontology.org/latest-full/go_200911-termdb.obo-xml.gz), and presents the information in this file as a jtree, that consists of</p> <ul> <li><p>level 1: all terms () in the file, to be visualized by their name ()</p></li> <li><p>level 2: shows below each term the corresponding references as subnodes, to be visualized by their GO-identifiers On double-click on a reference the corresponding in the jtree has to be put in focus. </p></li> </ul> </blockquote> <p>I have put the result I have coded up <a href="http://github.com/BioGeek/GeneOntologyTermsTree/" rel="nofollow">on github</a> as a NetBeans project.</p> <p>I welcome all constructive feedback. Also, upon seeing this code, what are some of the questions that I can expect?</p> http://stackoverflow.com/questions/1816324/java-code-review-binary-search 1 Java: Code Review: Binary Search Rosarch 2009-11-29T18:32:25Z 2009-11-29T23:40:29Z <p>I wrote this for self education. How does it look? (It passes all my junit tests.)</p> <pre><code>/** * find needle in haystack * @param haystack a sorted list * @param needle * @return i such that &lt;code&gt;haystack[i] == needle&lt;/code&gt;, or -1 if it is not found */ public static int find(char[] haystack, char needle) { int minWindow = 0; // lower bound of the search int maxWindow = haystack.length - 1; // upper bound of the search int midpoint = (maxWindow + minWindow) / 2; while (maxWindow - minWindow &gt; 1) { if (haystack[midpoint] == needle) { return midpoint; } if (haystack[maxWindow] == needle) { return maxWindow; } if (haystack[minWindow] == needle) { return minWindow; } if (haystack[midpoint] &lt; needle) { minWindow = midpoint; } else if (haystack[midpoint] &gt; needle) { maxWindow = midpoint; } midpoint = (maxWindow + minWindow) / 2; } return -1; } </code></pre> http://stackoverflow.com/questions/1804998/java-code-review-generate-a-subgraph 2 Java Code Review: Generate a subgraph Rosarch 2009-11-26T18:03:44Z 2009-11-27T07:46:03Z <p>I'm using JGraphT and I want to generate a subgraph, like this:</p> <p>If there's a graph like <code>{stuff -&gt; a -&gt; b -&gt; stuff}</code>, and you ask for the subgraph in direction of <code>{a -&gt; b}</code>, you'll get <code>{a -&gt; b -&gt; stuff}</code>. (<code>stuff</code> = collection of nodes and edges, <code>-&gt;</code> = an edge, <code>a</code> and <code>b</code> are nodes.)</p> <p>My idea is as follows: if the start is A, and the sink is B, remove all edges from A that don't lead to B. Then, traverse the entire graph, and if no path exists from a given vertex to A, remove it.</p> <p>Here is the full method. I would appreciate any comments reflecting any metric of code quality:</p> <pre><code>/** * subgraph that contains everything in the direction of sink * so if there's a graph like {stuff -&gt; a -&gt; b -&gt; stuff} * and you ask for the subgraph in direction of {a -&gt; b} * you'll get {a -&gt; b -&gt; stuff} * @param &lt;V&gt; vertex type * @param &lt;E&gt; edge type * @param g should be a dag * @param start a in the example above * @param sink b in the example above * @return a sub graph as specified above */ public static &lt;V, E extends DefaultEdge&gt; Graph&lt;V, E&gt; subgraphInDirection(UndirectedGraph&lt;V, E&gt; g, final V start, final V sink) { g = removeEdges(g, start, sink); return removeUnconnectedNodes(g, start); } private static &lt;Vertex, Edge&gt; UndirectedGraph&lt;Vertex, Edge&gt; removeEdges(UndirectedGraph&lt;Vertex, Edge&gt; g, Vertex start, Vertex sink) { final Set&lt;Edge&gt; outEdges = new HashSet&lt;Edge&gt;(g.edgesOf(start)); boolean removedEdge; for (Edge e : outEdges) { if (! (g.getEdgeTarget(e).equals(sink) || g.getEdgeSource(e).equals(sink))) { removedEdge = g.removeEdge(e); assert removedEdge; } } return g; } private static &lt;Vertex, Edge&gt; Graph&lt;Vertex, Edge&gt; removeUnconnectedNodes(UndirectedGraph&lt;Vertex, Edge&gt; g, Vertex start) { ConnectivityInspector&lt;Vertex, Edge&gt; conn = new ConnectivityInspector&lt;Vertex, Edge&gt;(g); boolean removedVertex; final Set&lt;Vertex&gt; nodes = new HashSet&lt;Vertex&gt;(g.vertexSet()); for (Vertex v : nodes) { if (! conn.pathExists(start, v)) { removedVertex = g.removeVertex(v); assert removedVertex; } } return g; } </code></pre> <p><strong>UPDATED</strong> to reflect initial comments.</p> http://stackoverflow.com/questions/1796455/class-identifier-used-inside-the-class-declaration-is-it-a-good-practice 6 Class Identifier used inside the class declaration. Is it a good practice? Liju Mathew 2009-11-25T11:50:24Z 2009-11-25T14:17:11Z <p>While reviewing one of our C++ class through coverity, it showed an error message on a particular class. The class is as follows:</p> <pre><code>class InputRecord { /* Construtor */ ... InputRecord::RejectRecord(); ... /* Destructor */ } </code></pre> <p>What is the significance of using an identifier inside the class? Is it a good practice to follow this?</p> <p>Thanks, Mathew Liju</p> http://stackoverflow.com/questions/359290/how-to-get-the-fxcop-custom-dictionary-to-work 9 How to get the FxCop custom dictionary to work? Thomas Bratt 2008-12-11T13:13:14Z 2009-11-25T12:06:39Z <p>How is it possible to get the FxCop custom dictionary to work correctly?</p> <p>I have tried adding words to be recognised to the file 'CustomDictionary.xml', which is kept in the same folder as the FxCop project file. This does not seem to work, as I still get the 'Identifiers should be spelled correctly' FxCop message, even after reloading and re-running FxCop. Using version 1.36.</p> http://stackoverflow.com/questions/1795726/where-will-the-result-will-be-stored-after-executing-pmd 0 Where will the result will be stored? after executing PMD micheal 2009-11-25T09:31:48Z 2009-11-25T10:16:21Z <p>Hi I am using PMD to do code-review for my application. I am able to do the review, but i dont have a clue where the report will be stored. i am using this cmd <strong>"C:\PMD test\Source>java -jar pmd-4.2.5/lib/pmd-4.2.5.jar JavaSource\com\ex\app html basic"</strong> in command prompt.</p> <p>it is displaying the entire result in the command window, is there any way the result will be stored as a HTML or any other file. if it is the case, where will it be stored? do we need to configure anything?</p> <p>Thanks</p> http://stackoverflow.com/questions/1789542/how-to-find-empty-catch-blocks-in-java-code 0 How to find empty catch blocks in Java code micheal 2009-11-24T11:41:45Z 2009-11-24T16:42:57Z <p>Hi, is there any way to find out all the empty catch blocks inside Java code. I know there are some tools like PMD to do that, but i am using RSA, is there any way we can write a regex to search for empty catch blocks?</p> <p>Update: i am working on a corporate machine where i cant install new softwares :(</p> http://stackoverflow.com/questions/1739142/from-a-management-pov-how-much-is-a-code-review-worth 8 From a Management POV: How much is a code review worth? Jorge Córdoba 2009-11-15T22:46:39Z 2009-11-23T20:26:36Z <p>It's obvious to me that code reviews (peer reviews) improve the quality of the generated code.</p> <p>I've worked hand to hand in some code with some of my coworkers and, specially with some of them, code was cleaner and a lot better. Reviewing other people code is not the same thing. You're not familiar with the code, you haven't made the vast majority of the design decisions and it can be quite frustrating until you really understand what's going on... even for the best written (non trivial) code.</p> <p>I tend to always say that coding, no matter how fun it is, is part of a business for money so my question is: Is it really worth it? I would have two developers just to get a level of excellence that might as well be achieved by a little more time with just one of them. Have you found it useful anytime?</p> <p><strong>Note:</strong> Altough I'm mostly a developer, I ask this from the manager point of view, from the "resource" (as in you're all just numbers) point of view :P</p> http://stackoverflow.com/questions/1412483/how-to-train-junior-programmers-in-code-review 11 How to train junior programmers in code review? RichAmberale 2009-09-11T18:13:12Z 2009-11-22T14:17:42Z <p>We're looking to start a code-review process for a group of ~30 coders who are all relatively junior programmers.</p> <p>What is your advice on how to train for code reviews? Are there code review pitfalls to be avoided? Essential things to look for?</p> http://stackoverflow.com/questions/1393069/what-was-trickiest-code-youve-ever-written -1 What was trickiest code you've ever written? Bhavesh.Bagadiya 2009-09-08T09:56:26Z 2009-11-21T20:31:42Z <p>Hi,</p> <p>As a programmer, I know sometime all has to write some code which they think -"Thank God! It's done" or "Ohh, how did I write it?"...</p> <p>Do you have any such piece of code.</p> http://stackoverflow.com/questions/1774256/java-code-review-merge-sorted-lists-into-a-single-sorted-list 0 Java Code Review: Merge sorted lists into a single sorted list Rosarch 2009-11-21T01:59:13Z 2009-11-21T15:47:34Z <p>I want to merge sorted lists into a single list. How is this solution? I believe it runs in O(n) time. Any glaring flaws, inefficiencies, or stylistic issues?</p> <p>I don't really like the idiom of setting a flag for "this is the first iteration" and using it to make sure "lowest" has a default value. Is there a better way around that?</p> <pre><code>public static &lt;T extends Comparable&lt;? super T&gt;&gt; List&lt;T&gt; merge(Set&lt;List&lt;T&gt;&gt; lists) { List&lt;T&gt; result = new ArrayList&lt;T&gt;(); int totalSize = 0; // every element in the set for (List&lt;T&gt; l : lists) { totalSize += l.size(); } boolean first; //awkward List&lt;T&gt; lowest = lists.iterator().next(); // the list with the lowest item to add while (result.size() &lt; totalSize) { // while we still have something to add first = true; for (List&lt;T&gt; l : lists) { if (! l.isEmpty()) { if (first) { lowest = l; first = false; } else if (l.get(0).compareTo(lowest.get(0)) &lt;= 0) { lowest = l; } } } result.add(lowest.get(0)); lowest.remove(0); } return result; } </code></pre> <p>Note: this isn't homework, but it isn't for production code, either.</p> http://stackoverflow.com/questions/1760688/is-this-a-clear-use-of-goto 5 Is this a clear use of goto? Jamie Penney 2009-11-19T03:26:31Z 2009-11-19T13:23:31Z <p>Hi All,</p> <p>Just wondering if this is considered a clear use of goto in C#:</p> <pre><code>IDatabase database = null; LoadDatabase: try { database = databaseLoader.LoadDatabase(); } catch(DatabaseLoaderException e) { var connector = _userInteractor.GetDatabaseConnector(); if(connector == null) throw new ConfigException("Could not load the database specified in your config file."); databaseLoader = DatabaseLoaderFacade.GetDatabaseLoader(connector); goto LoadDatabase; } </code></pre> <p>I feel like this is ok, because the snippet is small and should make sense. Is there another way people usually recover from errors like this when you want to retry the operation after handling the exception?</p> <p><strong>Edit:</strong> That was fast. To answer a few questions and clarify things a bit - this is part of a process which is essentially converting from a different kind of project. The _userInteractor.GetDatabaseConnector() call is the part which will determine if the user wants to retry (possibly with a different database than the one in the config they are loading from). If it returns null, then no new database connection was specified and the operation should fail completely.</p> <p>I have no idea why I didn't think of using a while loop. It must be getting too close to 5pm.</p> <p><strong>Edit 2:</strong> I had a look at the LoadDatabase() method, and it will throw a <code>DatabaseLoaderException</code> if it fails. I've updated the code above to catch that exception instead of Exception.</p> <p><strong>Edit 3:</strong> The general consensus seems to be that</p> <ul> <li>Using goto here is not necessary - a while loop will do just fine.</li> <li>Using exceptions like this is not a good idea - I'm not sure what to replace it with though.</li> </ul> http://stackoverflow.com/questions/1757665/cleaner-way-to-translate-index-into-specified-string 2 Cleaner way to translate index into specified string? Palchazk 2009-11-18T17:23:18Z 2009-11-18T19:15:00Z <p>Could I achieve this in a more cleaner way? Would be really appricated. </p> <pre><code> switch($vocation) { case 1: $vocation = "Sorcerer"; break; case 2: $vocation = "Druid"; break; case 3: $vocation = "Paladin"; break; case 4: $vocation = "Knight"; break; case 5: $vocation = "Master Sorcerer"; break; case 6: $vocation = "Elder Druid"; break; case 7: $vocation = "Royal Paladin"; break; case 8: $vocation = "Elite Knight"; break; } </code></pre> <p>Thanks!</p> <p>and sorry about the title couldnt figure out a better one</p> http://stackoverflow.com/questions/1753369/review-c-selectors-and-method-delegates 0 [review?] C++ selectors and method delegates jcayzac 2009-11-18T02:59:17Z 2009-11-18T03:16:00Z <p>Hi, I just wrote this for handling method selectors in C++ in an Objective-C way. I can see some advantages over derivating you class from an IObserver abstract class:</p> <p>— Client class doesn't need to implement any pure virtual methods with fixed names. If you register to two services that want to call their own version of, say, onEvent() on the listening object, you're screwed and you must split your class in two parts. This problem can be overcome by using longer names, like onMyFirstServiceEvent() and onMySecondServiceEvent(), but this is ugly ☺. Using this method you can branch them on any method that implement the correct prototype.</p> <p>— You can register different delegates for different call to the same service. Like onEncode1PassDone() on a first call, then onEncode2ndPassDone() on the second call to an encoder service.</p> <p>— You can make a copy of your selector on the heap and cast the result to (void*), if you want to pass selectors thru a C interface. Or even put them in shared pointers.</p> <p>— EDIT: Also you can bridge two frameworks that don't know each other at compile time, as long as they use selectors. It might be useful if you want to build filter graphs and load 3rd party filters dynamically, for instance.</p> <p><strong>Please feel free to comment!</strong></p> <p><strong>selector.hpp:</strong></p> <pre><code>#if !defined(UUID_A2291D647BC7414D941B6507B137361F) #define UUID_A2291D647BC7414D941B6507B137361E // Selectors and method delegates for C++ // Julien Cayzac http://julien.cayzac.name/ // Public domain. // // Usage: // // ------------------------------------------------ // #include &lt;selector.hpp&gt; // #include &lt;iostream&gt; // // class X { // public: // void test(int bla,float foo) { // std::cerr &lt;&lt; "Delegate got called with [bla=" &lt;&lt; bla &lt;&lt; ", foo=" &lt;&lt; foo &lt;&lt;"]\n"; // } // $selector_t(int,float) r() { // return $selector(this, X::test,int,float); // } // }; // // // class Y { // public: // void doSomethingAndCallDelegate($selector_t(int,float) a_selector) { // std::cerr &lt;&lt; "Just did something!\n"; // a_selector(1,2.f); // } // }; // ... // X x; // Y y; // $selector_t(int,float) my_selector = x.r(); // my_selector(5,3.f); // // output: // // Delegate got called with [bla=5, foo=3] // y.doSomethingAndCallDelegate(my_selector); // // output: // // Just did something! // // Delegate got called with [bla=1, foo=2] // ------------------------------------------------ // #include &lt;boost/bind.hpp&gt; #include &lt;boost/function.hpp&gt; #include &lt;boost/shared_ptr.hpp&gt; namespace detail { template&lt;typename R,typename Z,typename A&gt; static inline boost::function&lt;void (A)&gt; bbind(const boost::function&lt;void (A)&gt;&amp;,R m,Z o) { return boost::function&lt;void (A)&gt;(boost::bind(m,o,_1)); } template&lt;typename R,typename Z,typename A,typename B&gt; static inline boost::function&lt;void (A,B)&gt; bbind(const boost::function&lt;void (A,B)&gt;&amp;,R m,Z o) { return boost::function&lt;void (A,B)&gt;(boost::bind(m,o,_1,_2)); } template&lt;typename R,typename Z,typename A,typename B,typename C&gt; static inline boost::function&lt;void (A,B,C)&gt; bbind(const boost::function&lt;void (A,B,C)&gt;&amp;,R m,Z o) { return boost::function&lt;void (A,B,C)&gt;(boost::bind(m,o,_1,_2,_3)); } template&lt;typename R,typename Z,typename A,typename B,typename C,typename D&gt; static inline boost::function&lt;void (A,B,C,D)&gt; bbind(const boost::function&lt;void (A,B,C,D)&gt;&amp;,R m,Z o) { return boost::function&lt;void (A,B,C,D)&gt;(boost::bind(m,o,_1,_2,_3,_4)); } template&lt;typename R,typename Z,typename A,typename B,typename C,typename D,typename E&gt; static inline boost::function&lt;void (A,B,C,D,E)&gt; bbind(const boost::function&lt;void (A,B,C,D,E)&gt;&amp;,R m,Z o) { return boost::function&lt;void (A,B,C,D,E)&gt;(boost::bind(m,o,_1,_2,_3,_4,_5)); } template&lt;typename R,typename Z,typename A,typename B,typename C,typename D,typename E,typename F&gt; static inline boost::function&lt;void (A,B,C,D,E,F)&gt; bbind(const boost::function&lt;void (A,B,C,D,E,F)&gt;&amp;,R m,Z o) { return boost::function&lt;void (A,B,C,D,E,F)&gt;(boost::bind(m,o,_1,_2,_3,_4,_5,_6)); } template&lt;typename R,typename Z,typename A,typename B,typename C,typename D,typename E,typename F,typename G&gt; static inline boost::function&lt;void (A,B,C,D,E,F,G)&gt; bbind(const boost::function&lt;void (A,B,C,D,E,F,G)&gt;&amp;,R m,Z o) { return boost::function&lt;void (A,B,C,D,E,F,G)&gt;(boost::bind(m,o,_1,_2,_3,_4,_5,_6,_7)); } template&lt;typename R,typename Z,typename A,typename B,typename C,typename D,typename E,typename F,typename G,typename H&gt; static inline boost::function&lt;void (A,B,C,D,E,F,G,H)&gt; bbind(const boost::function&lt;void (A,B,C,D,E,F,G,H)&gt;&amp;,R m,Z o) { return boost::function&lt;void (A,B,C,D,E,F,G,H)&gt;(boost::bind(m,o,_1,_2,_3,_4,_5,_6,_7,_8)); } } // namespace detail #define $selector_t(x...) boost::function&lt;void (x)&gt; #define $selector(receiver, method, x...) detail::bbind(boost::function&lt;void (x)&gt;(), &amp;method, receiver) #endif // UUID_A2291D647BC7414D941B6507B137361E </code></pre> http://stackoverflow.com/questions/1454664/tips-to-keep-focused-during-code-reviews 8 Tips to keep focused during code reviews Robert MacLean 2009-09-21T14:00:54Z 2009-11-17T06:54:25Z <p>I often get sent to sites where I need to do a code review of a system I am not involved in, and once reviewed won't be involved in again. I spend time during the usual tool tests and looking for patterns but at some point you just need to read code. </p> <p>After the first 5000 or so lines it just becomes impossible to focus on the code, especially since it is business tools and thus not the most interesting solutions. So what tips are their for staying focused on the code during a code review?</p> http://stackoverflow.com/questions/1738763/how-to-add-insert-comment-feature-to-any-windows-text-code-editor 0 How to add insert-comment feature to any Windows text (code) editor talkaboutquality 2009-11-15T20:46:46Z 2009-11-15T21:08:24Z <p>I want to write a Windows add-on or application that adds the following function to any Windows text (code) editor:</p> <ol> <li>I select one or more lines of code in the editor (existing functionality of the editor)</li> <li>I right click and there's an "Insert Comment" choice which I can pick</li> <li>I type my comment and then click outside the comment edit box</li> <li>The text of the comment, along with the file name and starting line number of source code file on which I commented, are saved in program variables of my add-on/app</li> </ol> <p>Note that while IDE-specific solutions for Eclipse, Visual Studio, and/or Source Insight are welcome, I'm really looking for a generic answer.</p> <p>(FYI, I would then take those variables' values and write them out to the Review Board submit-comment API, meeting my goal of being able to submit comments using Review Board while browsing code in my Windows IDE.)</p> http://stackoverflow.com/questions/527259/what-should-be-done-first-code-reviews-or-unit-tests 9 What should be done first: Code reviews or Unit tests? goldenmean 2009-02-09T06:26:48Z 2009-11-15T20:23:26Z <p>Hello,</p> <p>If a developer implements code for some module and wants to get it reviewed. What should be the order :</p> <p>*First unit test the module after designing test cases for the module, debugging and fixing the bugs and then give the modified code for peer code review </p> <p>(<em>Pros</em>- Code to be reviewed is 'clean' to a good extent. Reduces some avoidable review comments and rework. <em>Cons</em>- Developer might spend large time debugging/fixing a bug which could have pointed/anticipated in peer code reviews)</p> <p>Or</p> <p>*First do the code review with peers and then go for unit testing.</p> <p>What are your thoughts/experience on this?</p> <p>I believe this approach for unit testing, code reviewing should be programming language agnostic, but it would be interesting to know otherwise(if applicable) with specific examples.</p> <p>-AD</p>