0
votes
1answer
28 views
Java Code Review: Merge sorted lists into a single sorted list
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?
I don't really like …
5
votes
7answers
235 views
Is this a clear use of goto?
Hi All,
Just wondering if this is considered a clear use of goto in C#:
IDatabase database = null;
LoadDatabase:
try
{
database = databaseLoader.LoadDatabase();
}
catch(Databas …
8
votes
14answers
362 views
From a Management POV: How much is a code review worth?
It's obvious to me that code reviews (peer reviews) improve the quality of the generated code.
I've worked hand to hand in some code with some of my coworkers and, specially with …
2
votes
7answers
65 views
Cleaner way to translate index into specified string?
Could I achieve this in a more cleaner way? Would be really appricated.
switch($vocation) {
case 1: $vocation = "Sorcerer"; break;
case 2: $vocation = "Druid"; …
0
votes
0answers
80 views
[review?] C++ selectors and method delegates
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:
— Client cl …
2
votes
2answers
54 views
What IDE lets me view diffs as highlighting on my code?
EDIT: Primarily, talking about code written in C.
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, a …
3
votes
8answers
117 views
Challenges of code review with remote team
My entire team works from a different geographical location and I am the only programmer working remotely. I often find it quite difficult to have my code reviewed, as people take …
4
votes
10answers
141 views
How to decide which parts of code to review?
Esp. if there is a very large code base and if the team is also doing some level of test-driven development, it is not practical and also does not make sense to do review of entire …
0
votes
3answers
114 views
Code Review: Is this the most efficient/elegant way to recursively walk a tree
This is more of a general question so the answer does not have to be in C#. I have a general code structure below that I use to recursively walk a tree structure. In this particula …
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 g …
3
votes
5answers
130 views
PHP beginner - looking for veteran criticism of code example (code works btw, that’s a start!)
From what I've gathered browsing SO, I'm the worst nightmare of good people like you: someone who never formally learned any programming, decided he'd like to enhance his hobby web …
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. …
2
votes
6answers
117 views
What is a good (coding) platform to use for telephone coding interview?
We are going to interview some candidates over the phone and we need the candidate to write code (pseudo code). Obviously, asking the candidate to read the code out loud to us over …
2
votes
3answers
54 views
Mailing list to review Git commits
We use Git as a revision control system for our code.
I need to setup a mailing list to help code reviews.
Each new commit to a specified subset of Git branches must be sent to t …
0
votes
1answer
11 views
How to add insert-comment feature to any Windows text (code) editor
I want to write a Windows add-on or application that adds the following function to any Windows text (code) editor:
I select one or more lines of code in the editor (existing fun …
