Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

76
votes
30answers
3k views

Requirements Smells

We've all heard and debated about Code Smells, and occasionally you hear people talking about "design smells", so I've been thinking, why not take it one step further? If you deal directly with ...
70
votes
20answers
2k views

How to define code quality in a contract? [closed]

At my workplace we want to outsource some parts of our software development project to an external contractor (another company with multiple developers). Our greatest fear is that although all ...
53
votes
10answers
16k views

Examples of Requirement Documents

I was wondering if anyone could provide me some information on what they put in a requirements document, how do you structure it? I'm the lead for the first time ever and I want to make sure I provide ...
48
votes
16answers
28k views

What are some free and/or open source Requirements Management tools?

I am looking for free and/or open source requirements management tools. Does anyone have any experience with these tools and can recommend one or two? Thanks.
28
votes
20answers
9k views

Requirements Gathering

How do you go about the requirements gathering phase? Does anyone have a good set of guidelines or tips to follow? What are some good questions to ask the stakeholders? I am currently working on a ...
25
votes
25answers
2k views

Best way to communicate with a programmer to define a project?

What are the best set of details to give to a programmer to define a project? Simply put, I know what I want done, but I know nothing about programming and so what is the best way to define my ...
23
votes
12answers
726 views

Why are there so many sites dedicated to programming and yet there are relatively few that actually describe the systems that they're trying to produce?

There's a lot of sites out there that teach people how to build better software--but why is it that there are very few sites that actually give detailed descriptions of the domains that we (as ...
20
votes
14answers
6k views

Why are software requirements always phrased with “shall” instead of “will”?

Why is it when I'm documenting requirements, it always has to be phrased as "It SHALL do this..." vs. "It WILL do this...". I know this is a odd question, but one I've never been able to find an ...
18
votes
23answers
4k views

What should every PHP programmer know?

I would like to be a PHP/MySQL programmer What are the technologies that I must know? Like: Frameworks IDEs Template Engines Ajax and CSS Frameworks Please tell me the minimum requirements that ...
17
votes
11answers
456 views

How do you get non-technical folks to appreciate a non-UI problem?

Suppose you're working on an enterprise project in which you have to get management signoff in order for you to develop a new feature set. Usually your management has no problem signing off on some ...
15
votes
5answers
2k views

How do you implement requirements traceability in practice?

I am currently examining the benefits and costs of introducing requirements traceability into the development process where I work. I can see the potential benefits to the stakeholders of ...
14
votes
10answers
2k views

How do you manage a large product backlog?

We have a large backlog of things we should do in our software, in a lot of different categories, for example: New problem areas for our products to solve New functionality supporting existing ...
13
votes
8answers
930 views

How do you get from requirements to production?

I'm doing some research for an article I'm writing about the process of getting from the requirements to production. I met with some of my peers last week and they had some interesting ideas. As a ...
12
votes
11answers
2k views

Force a class to override the .equals method

I have a bunch of class who implement a common interface : Command. And this bunch of class goes to a Map. To get the Map working correctly, I need to each class who implements Command to override ...
12
votes
16answers
1k views

Should I accept IE 5.0 (!) as a browser requirement for a project?

Unbelievable as it sounds, I received a request for proposal for a project which has the Internet Explorer 5.0 and Firefox 2.0 as minimum browser requirements! We tried to explain to the client all ...
11
votes
5answers
5k views

Tracking requirements across multiple projects with JIRA (or other tools)

My company has been using JIRA as a requirements tracking tool as well as a bug tracker, and it's been working pretty well while we've been working on one project at a time. We now have a scenario ...
11
votes
10answers
1k views

How to tell a project manager “NO” to scope creep

While project managers may each have their own personality and management style, it seems that many of them have a pernicious love of sneaking in "scope creep" when they can (whether anyone is ...
11
votes
7answers
3k views

Are there any free and/or better alternatives to RequisitePro to capture requirements?

I'm looking for a tool that will help with gathering and maintaining requirements (most probably use case specifications) I have used Rational Requisite Pro in the past and found it was OK but no ...
11
votes
15answers
1k views

Best way to avoid scope creep as a developer with no project management

I'm a s/w developer in a small internal IT department within a financial firm and have worked on a number of small-medium sized projects that have had little or no project management throughout. This ...
10
votes
7answers
2k views

Using a Wiki for Requirements Management?

I have been looking for a collaborative tool for developing functional specifications. I am looking for the ability to: Have multiple users contribute to the specification. Provide some form of ...
9
votes
2answers
334 views

What are functional and non functional parts of an application?

I was asked this question in an interview. What are functional and non functional parts of an application ?
9
votes
4answers
714 views

How do I calculate minimum system requirements?

For the apps I'm writing in Visual C#?
9
votes
5answers
3k views

User stories vs use cases

Are use cases just multiple user stories?? What are the benefits of using user stories over use cases.. and vice-versa... When to use one over other... Does all agile methodologies uses user ...
8
votes
3answers
374 views

What tool do you use for software requirements? [closed]

What tools do you use to capture/structure software requirements at early phases of the project? I'm tired of lousy software that only gets in the way and actually helps less than simple Word after ...
8
votes
3answers
1k views

Personal tool for authoring & organizing user stories?

My company uses Jira for storing requirements, which are written in the form of User Stories ("As a ... I want ... So that...") with details in the subtasks ("Given ... when ... then..."). I write ...
8
votes
6answers
2k views

Gathering Requirements with Scrum

My development team is working to the Scrum methodolody, pretty much. We have a prioritised product backlog, which we break down into sprints tracked by a burndown chart. Trouble is, the product ...
8
votes
7answers
743 views

In agile/scrum user stories, how much detail is enough?

Enough detail is enough is the usual response. On the project we are currently busy with (which was incomplete and handed over to us without any brs/documentation/user stories of any sort, we get ...
8
votes
11answers
1k views

How to avoid “bad” requirements

I frequently hear "X% of software project fail due to bad requirements". The X in that statement has ranged from about 70 to 95. However, I seldom hear how requirements go bad. In fact, the ...
8
votes
8answers
631 views

Is there a way to directly link requirements to code units? Is it a stupid idea to even try?

Say we've got requirements for all the functionality we want to build. Each requirement is listed in a Word doc with an associated ID. For instance, Requirement 123 is "each refund, if processed the ...
8
votes
3answers
361 views

How can I learn about writing project specs?

I recently read through Code Complete, and it recommends that I create a project specification before actually coding. The book didn't go very far into detail about what 'specs' are, and how they are ...
8
votes
7answers
382 views

How to make your embedded C code immune to requirement changes without adding too much overhead and complexity?

In many embedded applications there is a tradeoff between making the code very efficient or isolating the code from the specific system configuration to be immune to changing requirements. What kinds ...
8
votes
9answers
344 views

The Neglected Stakeholder a.k.a the System Administrator

Some time ago I came to realize that almost every customer project that I have been working on so far has neglected an important group of stakeholders: the system administrators. These silent heroes ...
8
votes
11answers
2k views

Best Software Requirements tool for Windows?

What is the best tool for managing software requirements [for Windows] ?
8
votes
5answers
330 views

How do you prevent requirements from getting out of control?

I'm interested in data/information/knowledge management, so I am building an application for this purpose in an effort to understand the concepts better. However, since I'm building this for myself ...
7
votes
1answer
89 views

How to determine the minimum JRE version and system requirements for my Java application

I have written an application in Java using Eclipse IDE and I now need to know the minimum JRE version that is required to run the application! I know that certain methods are only available under ...
7
votes
3answers
300 views

How to specify install order for python pip?

I'm working with fabric(0.9.4)+pip(0.8.2) and I need to install some python modules for multiple servers. All servers have old version of setuptools (0.6c8) which needs to be upgraded for pymongo ...
7
votes
3answers
226 views

Feature Specification

I am at a starting point of a new project. We brainstormed about what features it should include. We also talked about potential customers, about similar products, which are already out there, about ...
7
votes
8answers
235 views

How to modify CSS when requirements change?

Suppose I'm given the requiremnt to geneate a few pages that have tables on them. The original requirement is for all tables to be 500px. I'd write my CSS as follows: table { width: 500px; } ...
7
votes
4answers
1k views

Does ASP.NET MVC require IIS?

Does ASP.NET MVC require IIS? Could I develop an application that uses the new ASP.NET MVC framework on a client machine that does not have IIS installed?
7
votes
7answers
970 views

How do you manage customers with regards to changing requirements?

Steve Yegge's wisdom notwithstanding, most developers are faced with requirements which were gathered from non-technical customers. Sometimes there are project managers who deal with the customers ...
7
votes
12answers
4k views

What do gurus say about Requirements Traceability Matrix?

Our organization is at CMMI Level 2, and as part of the requirements of the level, we have to maintain an RTM (Requirements Traceabiliy Matrix), which more or less contains the following entries for ...
7
votes
7answers
609 views

Requirement Clarity - How much is too much?

It’s been only recently that I have been responsible for requirement gathering and I am quite overwhelmed by my inability to capture ALL requirements. At the end of a release requirements slip and I ...
7
votes
6answers
761 views

Whats a good process for writing story cards?

We are just going through defining our story cards for the next project. We have a good idea what the customer want through workshops We have a business requirement document that will be signed off ...
7
votes
2answers
688 views

Sofware Requirements Analysis

There are many tools out there for writing and managing requirements, but are there any good ones out there for reviewing them? I'm not talking about managing reviews, but automation tools that ...
7
votes
8answers
751 views

Essential techniques for pinpointing missing requirements?

An initial draft of requirements specification has been completed and now it is time to take stock of requirements, review the specification. Part of this process is to make sure that there are no ...
7
votes
9answers
592 views

How do you avoid waiting for requirements when using iterative agile development methods like SCRUM?

We attempt to do agile development at my current job and we succeed for the most part. The main problem seems to be that the developers on the project are always waiting for requirements at the ...
6
votes
7answers
216 views

Changing project requirements - should client pay

Not sure where to put this but a site filled with working programmers is a good bet. I built a website for a client, that included (on the home page) a fancy jQuery image slider with controls. This ...
6
votes
7answers
191 views

What is the term for gathering requirements *from* developers?

Is there an appropriate term for a requirements-gathering methodology where requirements are gathered as contrived by developers while the system is being developed, as opposed to the usual / normal / ...
6
votes
8answers
236 views

Which tools you use in the initial brain-storming of the project requirements?

Other than pencil & paper? I found freemind, the mapping tool very useful. Any other ideas?
6
votes
11answers
511 views

Good tool to collect issues, improvements, ideas

I need a tool for collecting feedback and new ideas inside our company regarding our internal IS product. The problem is the acceptance level for such a tool. Most of our colleagues are not IT ...

1 2 3 4 5 6