vote up 0 vote down star

Should developers be limited to certain applications for development use?

For most, the answer would be as long as the development team agrees it shouldn't matter.

For a company that is audited for security certifications, is there a method that balances the risk of the company and the flexibility, performance of the developers?

Scope

  1. coding/development software
  2. build system software
  3. 3rd party software included with distribution (libraries, utilities)
  4. (Additional) Remaining software on workstation

Possible solutions

  1. Create white-list of approved software where developer must ask for approval for desired software before he/she can use it. Approval would be based on business purpose/security risk.

  2. Create black-list for software. Developers list all software used. Review board periodically goes over list.

Has anyone had to work at a company that restricted developer tools beyond the team setting? How did they handle the situation?

Edit

Cleaned up question. Attempted to make less argumentative.

flag
5  
I don't see the reason to insult secretaries. This question is a bit too argumentative I think; handling these sort of things is just a part of working. – silky Sep 28 at 3:57
silky: From the company's perspective or the developers? – TJ Sep 28 at 3:59
1  
@silky: post your comment as an answer. The monkeys are on a roll, here. :) – MusiGenesis Sep 28 at 4:00
1  
@TJ - voting to reopen, but make it CW. There is no definite answer to this. – ldigas Sep 28 at 4:15
Not only is this "subjective and argumentative", I'm also pretty sure it's a duplicate. I doubt I can find the old question though, it was a while ago. – John Saunders Sep 29 at 4:45
show 2 more comments

7 Answers

vote up 6 vote down check

No, developers should not be limited in the software they use, because it prevents them from successfully doing their jobs. Think about how much you are paying your team of developers, - do you really want all that money to go spiraling down the drain because you've artificially prevented them from solving problems?

1) Company locks down the pc and treats the developer as competent as a secretary

What happens when the developer needs to do something with administrative permissions? EG: Register a COM object, restart IIS, or install the product they're building? You've just shut them down.

2) Create a white-list of approved software...

This is also impractical due to the sheer amount of software. As a .NET developer I regularly (at least once per week) use upwards of 50 distinct applications, and am constantly evaluating newer upgrades/alternatives for many of these applications. If everything must go through a whitelist, your "approval" staff are going to be utterly swamped by just one or 2 developers, let alone a team of them.

If you take either of these actions, you'll achieve the following:

  1. You'll burn giant piles of time and money as the developers sit on their thumbs waiting for your approval team, or doing things the long slow tedious way because they weren't allowed to install a helpful tool

  2. You'll make yourself the enemy of the development department (not good if you want your devs to actually do what you ask them to do)

  3. You'll depress team morale substantially. Nobody enjoys feeling like they're locked in a cage, and every time they think "This would be finished 5 hours ago if only I could install grep", they'll be unhappy.

A more acceptable answer is to create a blacklist for "problem" software (and websites) such as Pidgin, MSN messenger, etc if you have problems with developers slacking off. Some developers will also rail against this, but many will be OK with it, provided you are sensible in what you blacklist and don't go overboard.

link|flag
This is more of what I'm looking forward to! Keep them coming! – TJ Sep 28 at 4:30
vote up 1 vote down

Whatever they do, don't take away the Internet in general. Google = Coding Help 101 :)

Or maybe just leave www.stackoverflow.com allowed haha.

link|flag
I'd say if you leave Stack and disable google Stack will be flooded by really simple LMFTFY questions :) – freiksenet Sep 28 at 4:00
vote up 3 vote down

I think developers should have total control on applications that they use as long as they can do their job with them. Developers' productivity is directly related to working environment and no one will like being restricted and everyone likes to use software they like themselves.

Of course there should be some standards in terms of version control, document format, etc., but generally developers should have right to use any programs they want.

And security should be developer's concern - company admins should care about setting up proper firewall to protect against any kinds of attacks.

link|flag
Agree, except for the last bit. – Darryl Hein Sep 28 at 4:09
At a project team level, I will concede that restrictions can be made for the project. However I'm more concerned for a blanket policy for ALL teams in the development dept and ways that can be handled. – TJ Sep 28 at 4:33
vote up 1 vote down

Of course! If you want a repeatable build process, you don't want it contaminated by whatever random bit of junk a programmer happens to use as a tool to generate part of the code. Since whatever application you are building lasts much longer than anyone expects, you also want to ensure that the tools you use to build it are available for roughly the same duration; random tools from the internet don't provide any such gaurantee.

Your team should say "The following tools are allowed for build steps and nothing else" and attempt to make that list short.

Obviously, it shouldn't matter what a programmer looks at to decide what to do, so the entire Internet is just fine as long as its just-look. Nor does it matter if he produces code by magic (or random tool) as long as your team doesn't mind accepting just that tool's output as though it were written by hand.

link|flag
1  
The build process shouldn't be done on developer machines! Yes you definitely need to have discipline around shared resources (such as build machines), but that doesn't mean you need to limit what tools the developers can use on their own machines – Orion Edwards Sep 28 at 4:14
Sure it does. For any tool that produces code on their machine, if there is any value in running that tool to manufacture new code from inputs, then it will have to go into your build process. If they produce code once and you are happy with whatever got produced (e.g., its ok to edit that by hand), then it doesn't matter what tool they use. – Ira Baxter Sep 28 at 4:24
Somebody seems to think I suggested build processes should run (only?) on a developer's machine. Where your build process runs has nothing to do with my answer. (Ours happens to run on both the developer's machine and a build machine). – Ira Baxter Sep 28 at 4:34
1  
Don't know why this was downvoted - completely agree with the answer! +1 from me. – Vicky Sep 28 at 9:33
1  
Ira: I agree about the restrictions on the build machine, but I believe the original question was not about the build machine, but about software to be used by developers. There is a TON of stuff which you may not want on the build machine (texteditors, graphics applications, etc) but that you should still allow your devs to use on their own machines – Orion Edwards Sep 28 at 19:28
show 4 more comments
vote up 17 vote down

Limiting the software that developers can use on their work machines is a fantastic idea. This way, all the developers will quit, and then the company won't have to spend as much money on salaries and equipment, resulting in higher profits.

Real answer: NO!!!

link|flag
1  
I love this answer! It shows the developers' perspective if a bad solution is found. However it doesn't really answer the question... I like to think of a snippet from the base article of improvingsoftware.com/2009/09/… "Arbitrary or micro-management, illogical decisions, inconsistent policies, the creation of unnecessary work and exclusionary practices will elicit a quiet, subversive, almost vicious attitude from otherwise excellent IT staff." – TJ Sep 28 at 4:28
@TJ: I agree with every word of that quote except "quiet". – MusiGenesis Sep 28 at 4:51
vote up 2 vote down

I'd say this depends on quite a list of factors.

One is team size. If you have a team of half a dozen developers, this can be negotiated whenever a need for some application pops up. If you have a team of 100 developers, some policy is probably in order.

Another factor is what those developers do. If they compile C code using a proprietary compiler for an embedded platform, things are very different from a team producing distributed web or PC software in a constantly shifting environment.

The software you produce and the target customers are important, too. If you're porting the Linux kernel to some new platform, whether code leaks probably doesn't matter all that bad. OTOH, there are a lot of cases where this is very different.

There are more factors, but in the end it all boils down to two conflicting goals:

  • You want to give your developers as much freedom as possible, because that stimulates their creativity.
  • You want to restrict them as much as possible, as this reduces risks. (I'm talking of security risks as well as the risk to ship non-functioning software etc.)

You'll have to find a middle ground that doesn't hurt creativity while allowing enough guarantees to not to hurt the company.

link|flag
vote up 1 vote down

A better solution would to create a secure independent environment for the developers. An environment that if compromised won't put the rest of the company at risk.

The very nature of the development is to create crafty ingenuous pithy solutions. To achieve this, failures must happen.

link|flag

Your Answer

Get an OpenID
or

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