Tagged Questions

78
votes
35answers
2k 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 …
2
votes
7answers
48 views

Things to remember while doing code review of Stored Procedures in SQL Server

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 1) Use NOLOCK when doing select so that table is not locked. 2) …
9
votes
5answers
101 views

How to get free impartial code reviews / advice?

Hello, I haven't been able to find this question here so here goes. Is there any website / service that offers free (or at least cheap) code reviews? There must be lots of people that write …
0
votes
2answers
13 views

Code review tool for Aptana and Tortoise?

Hi, I've seen some links on this topic, but none with our situation: http://stackoverflow.com/questions/49906/best-tools-for-code-reviews We use Aptana for coding and deployment, and Tortoise to put …
0
votes
2answers
21 views

“Live” Changelogging for CVS-Comments?

Hello, 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. So can …
1
vote
1answer
71 views

Is this a proper use of the asynchronous cababilities of the Socket class?

/// <summary></summary> private Byte[] _ReceiveBytes(Int32 size) { MemoryStream memory = null; SocketAsyncEventArgs args = null; EventHandler<SocketAsyncEventArgs> …
0
votes
2answers
108 views

Code review please: a Java program that displays an XML file with 30000+ terms in a JTree.

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 …
3
votes
2answers
63 views

Code review: Determining whether a folder exists, given the full file path?

With a function being passed a full path to a file, such as C:\someFolder\anotherFolder\someXML.xml, determine whether the folder exists. Is there a smarter/better/more elegant way of doing this? …
1
vote
4answers
126 views

Java: Code Review: Binary Search

I wrote this for self education. How does it look? (It passes all my junit tests.) /** * find needle in haystack * @param haystack a sorted list * @param needle * @return i such that …
8
votes
16answers
459 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 some of them, code …
6
votes
4answers
127 views

Class Identifier used inside the class declaration. Is it a good practice?

While reviewing one of our C++ class through coverity, it showed an error message on a particular class. The class is as follows: class InputRecord { /* Construtor */ ... …
2
votes
2answers
65 views

Java Code Review: Generate a subgraph

I'm using JGraphT and I want to generate a subgraph, like this: If there's a graph like {stuff -> a -> b -> stuff}, and you ask for the subgraph in direction of {a -> b}, you'll get {a …
70
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. I asked him: So, …
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 good programming …
5
votes
7answers
264 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(DatabaseLoaderException e) …

1 2 3 4 5 20 next
15 30 50 per page