Tagged Questions

2
votes
6answers
91 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 …
1
vote
4answers
104 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 …
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 …
0
votes
1answer
68 views

Grouping data on year

mydata = [{'date': datetime.datetime(2009, 1, 31, 0, 0), 'value': 14, 'year': u'2009'}, {'date': datetime.datetime(2009, 2, 28, 0, 0), 'value': 84, 'year': u'2009'}, …
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. …
0
votes
1answer
13 views

WCF autogenerate FaultContracts

We have many WCF services, we have not been using contract first. So now we have a lot of code that throws exceptions, that are not specified in the FaultContracts. Other than man …
12
votes
20answers
774 views

Any valid reason for code duplication?

I'm currently reviewing a very old C++ project and see lots of code duplication there. For example, there is a class with 5 MFC message handlers each holding 10 identical lines of …
4
votes
3answers
181 views

Java: DRY out these two functions

These two functions have basically the same code. How can I factor it out? public static String[] removeSuffix(String gA, String gB) { String[] results = new String[2]; …
6
votes
13answers
328 views

What are the skills needed to read and understand other people’s code?

Hi, I have got a new job, and in this job I need to go through other people's code to understand the application. What are the skills which I must acquire to accomplish the tas …
0
votes
0answers
18 views

Code Review Tool Integrated with Gemini

Has anyone come across a code review tool that integrates with Countersoft's Gemini? I don't need anything too sophisticated. We have a relatively small development team of 10. I' …
5
votes
2answers
72 views

Best php qa tools

Hello, I am looking for qa tools for php. I am used to pmd, findbugs and checkstyle in the java world. Do you know some similar tools for php doing code analysis ? So far I have f …
4
votes
7answers
216 views

F# remove imperative code - quick help

I'm new to functional world and appreciate help on this one. I want to SUPERCEDE ugly imperative code from this simple function, but don't know how to do it. What I want is to ra …
0
votes
1answer
60 views

How to find all unused members or objects

I want to try to make code reviews go a bit faster. While in VS, on a particular class or .aspx page or whatever it is, I can right-click a variable, method, property and use the …
1
vote
6answers
160 views

Java: Calculating a metric of String simliarity

This method is a bottleneck in my program. (Or, it is at least where most of the time is being spent.) Its purpose is to calculate the similarity between two strings based on the …
15
votes
64answers
4k views

What is the worst code you’ve ever written?

Step into the confessional. Now's your time to come clean. What's the worst code you personally have ever written? Why was it so bad? What did you learn from it? Don't tell u …

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