David Revay

Results 31 comments of David Revay

You also only have one instance AFAICS. You will notice mine has 3 ng-repeats. It works with one, just not more than one.

New val become zero when the section is hidden in an ng-hide/show

Another change would be to add a redux store to the main-thread using something like [electron-redux](https://github.com/hardchor/electron-redux). This makes sure the redux state is synced between the main-thread and renderers. This...

Yep, I think network discovery will be on the SettingsLibrary page but I'll give it some more thought. It will automatically discover other instances of Museeks running on the same...

I've been doing a `docker pull` for each file in the docker compose as suggested by ernsheong. The following script will automate that: ``` PATH_TO_DOCKER_COMPOSE='./docker/docker-compose.yaml' cat $PATH_TO_DOCKER_COMPOSE | grep '...

+1 I've been using this with in a serverless monorepo along side `serverless-plugin-monorepo`. Would be good to see this merged.

My temporary solution for now is to traverse the object and convert all `null`s to `undefined`. I will look into a better solution if required. Thanks 😃

Unfortunately I couldn't quite figure out what was going on so I wrote my own. This will give a breakdown of every chunk. Maybe useful to someone that needs the...

What worked for me was: ## Dockerfile: ```dockerfile FROM ubuntu:focal ENV DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get install -y -q git build-essential cmake python3 libzmq3-dev qt5-default libqt5svg5-dev RUN git clone...

Have a look at [react-popover-wrapper](https://github.com/MrBlenny/react-popover-wrapper). This is a wrapper component I use to easily allow click, hover and hoverDelay triggers.