Dan Schultz
Dan Schultz
> I really don't want to create layers of leaky abstractions just to support content publishing websites that actually doesn't have complicated user interfaces on pages that display content. Any...
I'm not sure if configured imports are the right answer to this problem, as it doesn't abstract the components from the environment for the developer. With a configured imports approach,...
What options are there to get the Dart team to give this higher priority?
> Was this a copy pasta error or is there something I'm missing? No, this was just a scenario that wasn't fully thought out. This line prevents a memory leak...
@alexvbush, my plan was to add two new non-factory constructors `Property(Stream stream)` and `Property.withInitialValue(T initialValue, Stream stream)`. This API is more inline with how the `EventStream`'s constructor works. Thanks for...
Depends on danschultz/stream_transformers#17.
@Andersmholmgren those contributions would be amazing! I actually haven't come across any articles on unit testing reactive applications. This would be a great resource for RxJS and Bacon too. >...
@Andersmholmgren there's also a [helper function](https://github.com/danschultz/frappe/blob/master/test/shared/util.dart#L7) in Frappe to test streams. Maybe you'll find it useful for your app. `Future testStream(Stream stream, {behavior(), expectation(List values)})` - `stream` is the stream...
I like it. I've been doing something like this is some of my projects as well. I call them channels (from Elm), and they expose both an `EventStream` and a...
@jonaskello Signals also have a concept of an initial value. We might need to add an optional param to the constructors for this.