vote up 101 vote down star
82

The Joel Test is a measure of how a team performs with regards to the best practices in coding. What questions, given a 'yes' answer, would subtract from the the Joel test score?

(Assuming you don't simply negate the current questions on the 'Joel Test', ie: "Do you have no source control?")

For example:

  • Does the company insist on being very process heavy?
flag
16  
This should probably be CW. – Paul Tomblin May 23 at 11:34
5  
Terrific question. I will almost certainly apply this in practice. – User May 23 at 13:12
5  
@Vaibhav Garg: Make it 10 upvotes then make it a community wiki please. Otherwise local farmers will likely close it. – User May 23 at 13:14
5  
It is good practice for the closers to explain why this post was closed – Kb May 23 at 17:40
show 4 more comments

81 Answers

vote up 53 vote down

Do developers have to account for their time in small increments?

link|flag
4  
+1 - Micromanagement FTL – Wayne M May 23 at 23:15
4  
No downvote, but I'm not sure I agree. I suppose it depends on what you mean by "account". Keeping track of time spent on different bits of a project allows for more realistic estimates and can be an early warning indicator that something's gone wrong. – Tom Wright May 25 at 0:30
1  
Keeping track of time spent in minor increments means that everything takes three times as long to complete! – Peter Boughton May 25 at 12:33
1  
As Peter Boughton said, if you start keeping a very granular time sheet, most of your day will be spent of the context switch from filling it out. – Spoike May 27 at 12:11
2  
Ugh.. I have to track my whole day in 15 minute increments. This is just one of three (yes, three) time tracking tools we're required to use. That thing is giving me ulcers since it's practically expected that 100% of our time is billable to a specific client request, and management has aliased the word "estimate" to mean "definitive number, god help you if you're one minute over." – AgentConundrum May 28 at 0:07
show 3 more comments
vote up 16 vote down

Here are the first two that popped into my head:

Are suggestions about programming techniques or implementation details from non-technical people taken seriously by management?

(As a corollary) Do employees from multiple departments without an ownership stake in technology make suggestions about programming techniques or implementation details and expect to be taken seriously?

link|flag
6  
My project manager is great. He knows he's not technical, so he says, "Here, build this." I do and all is well. I've had plenty of project managers that want to micromanage every detail of a given project. – Drew May 24 at 20:14
1  
@Drew You're very lucky! – André May 25 at 15:06
vote up 4 vote down

Do you have to fill in TPS reports ?

link|flag
3  
Have you seen my stapler? – Matthew Whited May 27 at 18:30
vote up 12 vote down

Have you upgraded to Fortran 77 yet?

link|flag
2  
May backfire if the answer is something like "No, we're still on Fortran II". – Spoike May 27 at 12:12
show 1 more comment
vote up 4 vote down

This has probably been answered but.

  • Do you code before any planning is done?
link|flag
show 1 more comment
vote up 18 vote down

Do they hire developers primarily based on academic degrees?

link|flag
2  
I believe the result of that would be massive over-engineered projects that implement every single Gang of Four design pattern in the book. – Soviut May 25 at 7:07
1  
The keyword here is "primarily." I doubt Google is willing to hire anyone just by seeing his/her PhD. – Mehrdad Afshari May 27 at 18:33
show 4 more comments
vote up 4 vote down

Do they measure developers by SLOC or LOC?

link|flag
show 2 more comments
vote up 5 vote down

Do you plan when to do refactoring? (If refactoring is something you plan, then people aren't doing it all the time, when required. If the business prioritise what's on the plan, you're also letting non-technical people make decisions about essential technical work).

A related one:

Do you branch before refactoring? (You're not breaking refactoring into small, low-risk steps. You're not sharing the work between those working on the branch and those on trunk. You're introducing merge hell between trunk and the refactored code.).

I've seen both of these many times, sometimes on the same project.

link|flag
show 3 more comments
vote up 10 vote down

Do management judge projects by their costs only and are unable to judge them by their value earned?

link|flag
vote up 3 vote down

Are projects managed merely to fail as cheaply as possible?

link|flag
vote up 2 vote down
  • Is your development environment constrained to the point of having no ability to load or cleanly interface with external libraries or tools?
  • Do you use an undocumented, incomprehensible and over-engineered framework with major portions of the source code controlled by an outside party?
link|flag
vote up 21 vote down
  • Do you only release a product if there aren't any more known bugs?
  • Is my manager non-technical?
  • Are there more than 3 people who can assign work to me without any approval?
link|flag
3  
+1 on #3. I've been there before. – Jason Baker May 25 at 0:01
show 5 more comments
vote up 3 vote down

Is the build process manual? Does it have a dedicated "build person", and take hours to produce one build, assuming nothing goes wrong?

link|flag
1  
Already covered in the original Joel test (can do one step build) – stefanB May 25 at 6:53
vote up 7 vote down

Are they one-deep in any critical positions, like Oracle DBA's? So when the one guy goes on vacation you're hosed?

link|flag
show 2 more comments
vote up 17 vote down

Is unpaid overtime a regular occurrence, and nothing is being done to change that?

EDIT: StefanB notes that some overtime might be normal. I don't disagree with this, and in fact when I'm passionate about a project, I will give it of my own volition. But I've been in places where some is expected of the employee and is programmed into the schedule; I'm not talking about emergency situations that require occasional heroics, I'm talking about sizable chunks of time that show disrespect for the employee's personal time.

The law states you are paid for a standard work week of 40 hours. Dedicated employees have no problem giving a little extra, but when it's chronic or counted on by management, and that same management isn't comparably dedicated to offering comp time or overtime pay, that's when people are justified in being upset about it.

link|flag
1  
@Mike Arthur: I wish, for myself and so many others dealing with corporate America, that it was that simple. – Bernard Dy Sep 1 at 15:28
show 5 more comments
vote up 10 vote down

Is developer regularly (once a month) asked to complete numerous online courses prescribed by management to tick some bigger company-wide goal that is completely irrelevant to what developer is paid for (e.g. ethic course, personal goal management course, meeting your goals course, how to use your new time tracking tool in 50 easy steps course, be happy at work course ...)?

link|flag
1  
Monthly compliance training here, but as I work in healthcare I give it a pass – Joel Coehoorn May 27 at 13:34
show 1 more comment
vote up 2 vote down

Is people manager making code production decisions (e.g. you need to split coding that module in 5 parts because I give you 5 people, could you have test plan finished a week before requirements are completed so that test developers can start implementing test cases ...)?

link|flag
vote up 20 vote down

is there no coffee maker?

link|flag
2  
This question is very important for me, but I know many programmers who dislike coffee. – Kwang Mark Eleven May 27 at 20:57
3  
I think that crappy coffee indicates a lot. It says to me that a company would rather do the bare minimum to pacify employees than to spend a bit more and make them happy. I'm not asking for a cappuccino machine; just some coffee that doesn't taste like burnt cardboard that's been sitting in a warehouse for three years. – Adam Jaskiewicz May 28 at 20:11
show 3 more comments
vote up 2 vote down

Are you required to restart your development box at least once a week?

Even though developing for Linux/Unix systems it always feels like Linux development environment is only an after-though. You're given Windows box and have to open millions of terminals and work remotely using vnc with minimalistic setup to not burden the server where every other developer uses Window box. Not to mention that you have to 'restart' once a week when critical patches for software are applied.

Where are those companies using Mac OS only environment?

link|flag
show 3 more comments
vote up 8 vote down

So the guy in charge of software development has never been a developer?

link|flag
4  
Worse is the CEO who once did some programming in VB/Fortran 66/Excel macro and therefore can make technical decisions – mgb May 29 at 18:12
vote up 2 vote down

Do you not work for a company that develops and sells software?

link|flag
vote up 0 vote down

Do employees have to fill in an hourly timesheet?

link|flag
2  
Downvoted public sector projects require time accounting. – Rob Spieldenner May 27 at 19:12
1  
quarter hour, actually.. :( – AgentConundrum May 28 at 0:17
2  
And that makes them horrible projects to work for. – Alterlife May 28 at 4:16
vote up 3 vote down

Are you forced to use an ill designed hungarian syntax?

link|flag
vote up 18 vote down

Do you expect developers to serve support requests while doing project work?

(= Do you let the urgent override the important?)

link|flag
vote up 8 vote down

Does the number of new feature requests correlate to the length of time the CMO was stuck at the airport with his Blackberry?

link|flag
show 1 more comment
vote up 1 vote down

Are your designs disregarded because they're not inline with the company's [secret] vision?

link|flag
vote up 1 vote down
  • Are there any relationships/alliances between any team members?
  • Are there any relationships/alliances between team members->outside persons?
link|flag
vote up 6 vote down

Are there no programming questions when interviewing a new developer?

link|flag
show 1 more comment
vote up 27 vote down

You're required to use IE6 at work. And you do web development.

Guilty as charged. Ugh.

link|flag
2  
I am required to use IE6... sob! – Kwang Mark Eleven May 27 at 20:58
show 3 more comments
vote up 0 vote down

Is the team all male (or all female).

On a small team it probably doesn't matter but when you have a larger team that is single sex it quickly leads to a poor working environment.

link|flag
1  
One of the best places I worked at was an entirely male environment. – pzycoman Jun 8 at 12:06
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.