The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
6answers
857 views

Is there a name for when a sales team irresponsibly promises non-existent features? [closed]

It's a common issue to see a company's sales team promise new features in order to close a sale. Many times these new features are still in development or are still being designed. Sometimes features ...
-1
votes
0answers
29 views

Crowdfunded feature request system

I develop a free webapp and am thinking of taking some of the most popular and time consuming feature requests and turning them into mini, crowdfunded projects. I would post those on the site and ...
1
vote
1answer
67 views

What common apporaches exist for database versioning for a feature driven development?

It's not clear how data consistency is provided for different branches. We have a large knowledgebase which is filled by the experts and delivered as updates to our clients. This data is also used ...
7
votes
6answers
425 views

In Agile development, who owns the software “features” and how to you manage the development?

Some development teams in my company are switching to Agile development practices and their developers' work seem to be diminishing to discuss and program minutia about trivial software features ...
9
votes
2answers
296 views

Dealing with Feature Intersections

I have recently witnessed more and more problems similar to the ones explained in this article on feature intersections. Another term for it would be product lines, though I tend to attribute these to ...
5
votes
5answers
184 views

How do you balance the speed of Sprints with the customer's conservative adoption schedule?

I'd prefer to have sprints that last 3-4 weeks, but customers don't want to adopt new feature/function every 3-4 weeks. Existing customers are conservative and, once we meet their minimum bar for ...
5
votes
2answers
140 views

How do you track existing requirements over time?

I'm a software engineer working on a complex, ongoing website. It has a lot of moving parts and a small team of UI designers and business folks adding new features and tweaking old ones. Over the last ...
5
votes
3answers
199 views

Are there any off the shelf solutions for feature use analysis?

I write a set of productivity tools that sells online and have tens of thousands of users. While we do get very good feedback, this tends to come from only the most vocal users, so we fear we might be ...
-3
votes
4answers
339 views

I am trying to figure out how difficult or expensive it would be to add this feature

I am trying to figure out how difficult/time consuming it would be to add the following feature: We have a database with our subscribers and we want to send updates to paying subscribers. The catch ...
5
votes
4answers
215 views

How early is too early to be involved in new feature development?

I develop an internal business application that our engineers use to test and debug the company's product. The engineering manager has been pushing to get the software developers involved when the ...
4
votes
1answer
340 views

I would like to improve in writing goal-oriented user stories/features

I would like to improve my user stories writing abilities so I need your experience and guidance. I think that each variable part of a user story can be improved by following certain guidelines. 1. ...
2
votes
1answer
243 views

How to describe framework/features of a java application for client presentation?

I have been asked to put down the architecture and features of our Java application (more from infrastructure/software point of view). It will go on a Powerpoint presentation, so I need to provide the ...
2
votes
5answers
377 views

At what point is it good to try to reinvent a standard?

Take a look at this picture from XKCD.com Browsers are a good example of this. While I develop websites for them, I have to search through the unique 'standards' for each to make sure my sites are ...
3
votes
6answers
152 views

Is issue (bug and feature) count a good measure of a project?

One of the projects I work on is measured by number of issues. Management has given arbitrary (as far as I can tell) measurements that we need to have no more than X number of bugs and Y number of ...
4
votes
5answers
541 views

Why don't databases have good full text indexes

Why don't any of the major RDBMS systems like MySQL, SQL Server, Oracle, etc. have good full text indexing support? I realize that most databases support full text indexes to some degree, but that ...
17
votes
4answers
550 views

If the bug is 5+ years old, then is it a feature?

Allow me to add details: I work at an institutional place with many coders, testers, QA analysts, product owners, etc. and here is something that bugs me: We have been able to sell crappy (albeit ...
7
votes
8answers
854 views

What's the most important feature of quality software?

This question is along the same lines as this one, but instead of talking about quality of code, I'm talking about the final product from the users' perspective. If you had limited time / budget, and ...
8
votes
6answers
3k views

Where do you get programming ideas from? [closed]

If you wanted to create a new software product, where would you go to get your idea? Would you focus on the consumer market or the business market?
13
votes
9answers
345 views

How do you know when to stop adding features?

Some time ago I wrote a very small python script that periodically checked an xml feed for new entries, and alerted the user to new entries when present. I wrote this for myself, so it was essentially ...
4
votes
3answers
843 views

What's stopping Oracle from supporting identity (auto-numeric) columns?

As far as I know, Oracle's RDBMS is one of the few (the only?) SQL database products that doesn't support identity/autonumeric columns. The alternative offered by Oracle is database sequences, a ...