Andraž Kos

Results 15 comments of Andraž Kos

I accidentally stumbled on the solution for your problem when trying to trigger window resize event. Action gets blocked when you capture it and then not return it. ```javascript {...

I have a similar problem, sometimes ctrl+drag starts drawing the dynamic overlay and works as expected, most of the time it does not start drawing the overlay and nothing happens....

MST is pretty low level, try searching for companies which are using some package which uses MST: https://github.com/mobxjs/mobx-state-tree/network/dependents?dependent_type=PACKAGE

Do one thing and do it well: **define the next legal state (of a variable) in relation to the current state (of the same variable)**. This is a feature MST...

I've used my implementation few comments above in a recent project while also onboarding the coworker to all of the principles behind XState and MobX and digged in many refactorings...

Solution is to define a map of machines: ```javascript const Store = types .model({ machines: types.map(MSTMachine) }) .actions(store => ({ addMachine({ name, machineConfig }) { store.machine.set(name, { machineConfig }) },...

Still using a similar pattern as above, upgraded with the latest developments in the architecture: Moved the statecharts to the FAAS side where I am running "state transition as a...

This is an impressive functionality of the NewPipe application for common issues such as: excessive silences, drawn-out transitions, and unnecessary pauses often found in various types of content. By intelligently...

Great point, now we know what we're looking for. I did dig out the code below which is performing the logic. https://github.com/google/ExoPlayer/blob/release-v2/library/core/src/main/java/com/google/android/exoplayer2/audio/SilenceSkippingAudioProcessor.java Next step from here is to convert it...

Chrome blocks http domains, please use https domain (for example free Firebase static file hosting, comes with https support out of the box)