Oliver Hoff

Results 67 comments of Oliver Hoff

i think the "extern" property gives a lot of flexibility and isnt too hard to facilitate -> https://github.com/influxdata/influxdb-client-js/pull/178 but then the flux AST would be part of the API semver...

the use case is what buckets/splitBy would have enabled: ```ts number$.pipe( groupBy(isEven, { seed: booleans }), toArray(), mergeMap(([evenNumber$, oddNumber$]) => merge( evenNumber$.pipe(mapTo('I am even')), oddNumber$.pipe(mapTo('I am odd')), ) ), );...

> Every new feature we introduce we have to MAINTAIN FOR YEARS. So we need to be sure there's value to it. **Absolutely** no problem with this. I just want...

maybe errors during watched/unwatched should be handled like an unhandled promise rejection and reported in its own stack? rxjs has a global `reportError` that by default forwards to `globalThis.reportError` or...

while playing around with jotai and its store impl I ended up identifying 3 states for signals: - (computed only) dirty: needs to be recomputed on next read - (computed...

upstream reference (sink -> source) can be hard since the compute function also references them hard. once the entire computed goes out of scope so does the upstream references. downstream...

you can register the watcher yourself in a finalization registry to auto-unmount. the reference impl in this repo currently wouldn't allow for this since one needs a strong reference to...

Ref https://github.com/vuejs/rfcs/pull/21

the attribute order argument is well understandable, but then how much is it worth, when in some other common vue practices HTML/XML consistency is not followed either (case-sensitive v-on, PascalCase...

> This could be done via props and watchers? Probably i would say it should be done via props and watchers. a video player has states (video source, playing, volume,...