Tagged Questions

2
votes
2answers
53 views

Obtain Listing of all Fields in a Project

I have a relatively large solution that I compile to DLL. I would like to print out or list all the fields in every class in this project. I'm looking for a Visual Studio feature, Visual Studio …
3
votes
4answers
110 views

Best free Code Review tool for Eclipse/Java/Flex Development

I'm using Eclipse and I'm wondering what the best Eclipse/Java/Flexbuilder code review tool is. If it matters we're using SVN as our SCM. Here are the following I've come across: Jupiter - seems …
2
votes
4answers
48 views

Request for comments: python class factory for group of constant values

The following python module is meant to be a basis for "constant" handling in python. The use case is the following: one groups some constants (basically "names") that belong together with their …
2
votes
3answers
100 views

STL iterator - why is the code analysis tool complaining?

I'm checking the results from the static code analysis tool Klocwork. It complains about the following code: 293 for( my_vector_typedef::iterator it( start_pos ); it != end_pos ; ++it ){ 294 …
1
vote
2answers
51 views

code review ExecutorService usage correct?

List sychronizedList = Collections.synchronizedList(new ArrayList()); //is this ok? try { ExecutorService executor = Executors.newFixedThreadPool(10); for (final Object item : …
1
vote
6answers
102 views

Developers checking in non-conforming code

Consider a situation where a group of developers work independently(more or less) on projects. The dept. has a published standard to ensure code quality on issues like: no inline/embedded/dynamic …
1
vote
4answers
66 views

Comparing Doubles in Visual Studio - a standard way to catch this?

Folks, Even experienced programmers write C# code like this sometimes: double x = 2.5; double y = 3; if (x + 0.5 == 3) { // this will never be executed } Basically, it's common knowledge …
0
votes
2answers
17 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 …
2
votes
7answers
57 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) …
0
votes
2answers
22 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
88 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> …
9
votes
5answers
110 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
112 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 …
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 …
3
votes
2answers
72 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 2 3 4 5 21 next
15 30 50 per page