Questions tagged [waterfall]

Waterfall is an abstraction model for software design which translates requirements into lists of simple routines and arranges them in a sequence of phases based on dependencies.

Filter by
Sorted by
Tagged with
53 votes
16 answers
4k views

Giving up Agile, Switching to waterfall - Is this right? [closed]

I am working in an Agile environment and things have gone to the state where the client feels that they would prefer Waterfall due to the failures (that's what they think) of the current Agile ...
user avatar
  • 33.9k
22 votes
6 answers
16k views

Asynchronous Loop of jQuery Deferreds (promises)

I am trying to create what I think is referred to as a "Waterfall". I want to sequentially process an array of async functions (jQuery promises). Here's a contrived example: function doTask(...
user avatar
  • 4,091
12 votes
8 answers
16k views

Functional Spec & Agile Processes [closed]

In traditional Waterfall, requirements were gathered - typically in a MS-Word document - following an esoteric template. In a "strict" waterfall model, this document is frozen after the requirement ...
user avatar
12 votes
3 answers
11k views

Bot framework v4.0 how to execute the previous waterfall step in a dialog

I'm trying to create a dialog in which I define multiple waterfall steps. In the context of this dialog, I need sometimes to go back to the previous waterfall step according to the choice of the user. ...
user avatar
12 votes
6 answers
2k views

Is frequency of release the only real difference between Agile and Waterfall? [closed]

Obviously the differences in the impact to teams, customers, ROI, etc. of applying the two approaches is huge and is the subject of many books and endless discussions and conferences. But as I think ...
user avatar
11 votes
6 answers
1k views

Handling interdependent and/or layered asynchronous calls

As an example, suppose I want to fetch a list of files from somewhere, then load the contents of these files and finally display them to the user. In a synchronous model, it would be something like ...
user avatar
  • 1,301
9 votes
15 answers
2k views

Predictive vs Reactive software design [closed]

I know that for me I first got started following the waterfall method of project management and along with that I went with the predictive approach to software design. In this I mean we had huge ...
user avatar
9 votes
2 answers
3k views

How to cheaply simulate water on iOS?

First off, I'm not thinking about that. I was wondering how to make a simple simulation of a waterfall onto some dunes on the iPhone. It turns out several people tackled the issue of moving water, ...
user avatar
  • 5,337
8 votes
4 answers
3k views

What methodology is closest to the Surgical Team in The Mythical Man-Month? [closed]

The Mythical Man-Month is now classic, but the "Surgical Team" methodology is still interesting. What methodology most closely resembles it or has the same essence? To summarize the Surgical Team ...
user avatar
  • 4,277
7 votes
5 answers
5k views

Asyncjs : Bypass a function in a waterfall chain

I want to jump a function from a chain of waterfall functions with asyncjs in nodejs. My code look like this : async.waterfall([ function(next){ if(myBool){ next(null); ...
user avatar
7 votes
3 answers
6k views

Adaptive Card response from a WaterfallStep Dialog MS Bot framework v4

I am trying to send an adaptive card which has 2 options for user to select. When user submit the response from adaptive card I am receiving : Newtonsoft.Json.JsonReaderException: Error reading ...
user avatar
7 votes
1 answer
2k views

Can you go back a step in a waterfall dialog if the user entered wrong data? #botframework

In a dialog, I want to ask the user for his email address. If the user entered an invalid email by mistake, I would like to be able to go back or get into some "loop" situation of keep asking him for ...
user avatar
  • 167
7 votes
0 answers
949 views

Why does a cached file have a high Waiting (TTFB) or Content Loaded ms value?

I'm looking at a waterfall in Chromes Developer tools of several CSS and Javascript files. When refreshing the page, several of the files load from the browser cache, as expected. These are taking ...
user avatar
6 votes
14 answers
663 views

when a bug for client is really a new feature [closed]

I read what-payment-structure-do-you-use-for-small-projects and I wonder how you guys are dealing with bug vs. feature. I once had a situation where a client wanted static reports. Then near the end ...
user avatar
  • 59.9k
6 votes
6 answers
9k views

What are alternatives to the Waterfall model

Can you please give a methodology that stands to alleviate the disadvantages of waterfall model?
user avatar
  • 61
6 votes
2 answers
2k views

What is a simple implementation of async.waterfall?

I'm using some functions from the async library, and want to make sure I understand how they're doing things internally; however, I'm stuck on async.waterfall (implementation here). The actual ...
user avatar
  • 5,580
6 votes
3 answers
4k views

Node async parallel inside waterfall

I'm building a server in Nodejs to retrieve data from some database. I've worked with the async library for some time now and figured out some things like putting a waterfall inside a parallel ...
user avatar
  • 127
6 votes
2 answers
3k views

Understanding Node.JS use async.waterfall how to execute external functions

I need to execute async function using async.js module. But i have some problem when i execute external functions. the code is pass well. but when i change global variables to local variables, i can'...
user avatar
5 votes
6 answers
826 views

Are you an agile/pragmatic developer in a waterfall organization? [closed]

If so, how do you deal with things that just don't "feel" right such as: not writing unit tests not having a continuous build not refactoring not having a team coding standard not pair programming ...
5 votes
1 answer
2k views

R Plotly: How to set the color of Individual Bars of a Waterfall Chart in R Plot.ly?

I am trying to change the color of the individual bars of a waterfall chart using R Plotly. More specifically the first and the last bar, I want it to be blue and yellow respectively. So in the below ...
user avatar
  • 3,097
4 votes
1 answer
22k views

(Rational) Unified Process vs Waterfall Model

I was reading about software development model and life cycle, where I learned about waterfall model and Unified process. However both the process involves requirement gathering, design phase, ...
user avatar
  • 387
4 votes
1 answer
2k views

I use async waterfall, why callback is not a function?

I get this: Error: TypeError: callback is not a function Code: var async = require('async'); async.waterfall([ (callback) => { callback(null, 'test'); }, async (value1, callback) =&...
user avatar
  • 135
4 votes
1 answer
2k views

handling error in async waterfall with expressjs

I don't see why expressjs don't handle error when it's throw in async.waterfall var express = require('express') , app = express.createServer() , async = require('async'); app.use(express....
user avatar
  • 107
4 votes
4 answers
3k views

SDLC and Software Process

I have some confusion about the terms SDLC and Software Process. With respect to these (and more or less similar) terms, a have a few question. What is the difference between SDLC and Software ...
user avatar
4 votes
2 answers
3k views

async.js waterfall in node.js: how to use bind and this?

I'm learning node.js coming from a PHP background with a limited JavaScript level. I think I got over now the change of mindset implied by the asynchronous approach. And I love it. But, as many ...
user avatar
4 votes
0 answers
101 views

What is a function call written as (0, fn)(argOrArgs)? [duplicate]

I am using Node.js async/waterfall, find this strange pattern of program: var callback = (0, _once2.default)(callback || _noop2.default); can someone explain what (0, _once2.default) means? why not ...
user avatar
  • 575
3 votes
1 answer
3k views

Convert Dataframe to make Waterfall Chart in ggplot2

I want to transform my dataframe into a format that would be suitable for a waterfall chart. My dataframe is as follows: employee <- c('A','B','C','D','E','F', 'A','B','C','D','E','F'...
user avatar
  • 3,873
3 votes
1 answer
2k views

can I use async.waterfall inside async.parallel?

I want to call two functions and get the results in parallel but one of the function's results needed to be adapted. So the function structure is: function test(cb) { async.parallel({ func1: ...
user avatar
  • 2,107
3 votes
1 answer
394 views

Is there any harm to not calling the final callback in an Async waterfall?

async.waterfall( [ function(cb){ //do some stuff and then never call cb leaving the async waterfall unfinished },...], function(err,result){ //we only get here if the cb is called ...
user avatar
3 votes
1 answer
661 views

Waterfall Highchart to start some of the columns in between the series with 0 y-axis

Can anyone please help me to change the behaviour of waterfall highchart to show graph like in screenshot? Actually I know about isSum and isIntemediateSum property. Using which I can start some of ...
user avatar
2 votes
4 answers
2k views

Are there any pros for the waterfall model testing vs agile? [closed]

I have read much information about agile and waterfall and I just cannot think of any reason why someone today should do the waterfall. I am concerned especially about testing process. Do I miss ...
user avatar
  • 4,629
2 votes
3 answers
212 views

how to refactor waterfall .then() [duplicate]

This code here loads data using actions and would be series, but its going to be hard to edit this code add another API load, and the syntax is not clear. this.props.loadNutMatrixes({perPage:'all'...
user avatar
2 votes
2 answers
3k views

Image Segmentation, watershed, waterfall, p algorithm

I was wondering if anyone is aware of any currently available packages for segmentation using the waterfall method or p algorithm. I've looked in github, CRAN, and Fiji and haven't found anything ...
user avatar
  • 321
2 votes
3 answers
5k views

stacked waterfall charts in highcharts

We have a requirement for stacked waterfall charts (we are using highcharts.com). http://fiddle.jshell.net/8JP8T/ gives an option for creating waterfall charts but we need to create stacks. Anyone ...
user avatar
2 votes
1 answer
3k views

Node async waterfall callback was already called

I'm trying to read some files from dir with async.waterfall, it seems to me that I'm doing stuff right, but I get the specified error and the readData function is never called. What's wrong? var fs = ...
user avatar
2 votes
2 answers
1k views

Node.js server waterfall error TypeError: Cannot read property 'Symbol(Symbol.toStringTag)' of undefined

I am writing a server with two functions, one using the output of another function. When the server runs, it gives an error: TypeError: Cannot read property 'Symbol(Symbol.toStringTag)' of undefined ...
user avatar
2 votes
1 answer
752 views

Highcharts - column chart with drilldown to waterfall

I have a strange behavior with my drill down to a waterfall chart. My middle column which is a negative value is not positioned on the top, instead it is going from zero down. I have taken the exact ...
user avatar
2 votes
1 answer
354 views

about labeling the x axis

I have many data need to be plotted as waterfall in matlab. I have more than 10 columns of data, each column represents one data data set. I put all data in a big matrix such that the first data set ...
user avatar
  • 2,123
2 votes
1 answer
7k views

waterfall plot using ribbon

I have a series of spectral data which I want to plot in a waterfall style plot. waterfall itsself is no that usefull, because the thin lines have too many differences in each spectrum, that is is not ...
user avatar
2 votes
1 answer
39 views

How do I show multiple years on a plotly waterfall chart using R

I'm working on making a waterfall chart to show the changes across multiple years using the same categories (i.e. buckets of change). I run into issues with my categories having the same name (growth, ...
user avatar
2 votes
1 answer
76 views

Using for loop with async in nodejs

I have connected with mongodb and nodejs. I have question about sav query results to list. results = []; for(i = 0; i<query.length; i++){ db.collection(collectionName).find(query[i]).toArray(...
user avatar
  • 31
2 votes
1 answer
427 views

fill the blanks of waterfall from other table

I have two tables: 1. raw forecast data from forecast table, pulled by snap shot dates, and I use the data to created waterfall looks like this item/snapshot forecast weeks 123 | 8/25/14 | ...
user avatar
  • 155
2 votes
1 answer
2k views

Microsoft Project and Waterfall [closed]

Microsoft Project and Waterfall Does using Microsoft Project force you into a waterfall model? Could anyone point me to examples of successful iterative (agile for example) projects that successfully ...
user avatar
2 votes
0 answers
107 views

duplex stream getting changed in callback:node js

I have a code where I am getting a duplex stream and in that function I call a callback which return me the values from redis. function (index, arr, null, callback) { const streamObject = ...
user avatar
2 votes
0 answers
389 views

Slow TTFB at Cloudflare with Heroku server

I'm hosting my site at Heroku SaaS and something weird is happening with the Waterfall, to be specific the TTFB number. When accessing the site through the Heroku dns, I get a excellent TTFB, ~200ms. ...
user avatar
2 votes
0 answers
223 views

Waterfall plot with different x axis [duplicate]

I would like to make a waterfall plot in MATLAB using a different x axis for each plot. I want my plot to look like the picture in the answer to this question: waterfall plot using ribbon , but in ...
user avatar
  • 233
1 vote
4 answers
452 views

How to Transition to Scrum [closed]

My team has grown fairly quickly from 1 to 5 over the last year or so and are very interested in changing our development style from Waterfall to a more iterative approach like Scrum. We work for a ...
user avatar
  • 1,628
1 vote
1 answer
5k views

How to stop executing waterfall on error in async of node.js?

I am using async module with waterfall method. async.waterfall([ function(callback) { ... callback(err); }, function(result, callback) { ...
user avatar
  • 591
1 vote
2 answers
214 views

Should we use scrum when requirement is clear [closed]

I tried to practice Scrum in my team. But my colleague asks me: Our software has clearly requirement. So why we should use scrum How can I persuade him from this case.
user avatar
1 vote
4 answers
5k views

Is a Waterfall model an Incremental development model? [closed]

I was wondering if a Waterfall model is an incremental model because technically each phase of the Waterfall model adds on a little more. Thus saying this I have read from quite a few different ...
user avatar

1
2 3 4 5