Daniel Kehlibarov
Daniel Kehlibarov
Well, this is out of the box with vue-pwa:  Of course with some tinkering on the web server.
http://leafletplayback.theoutpost.io/examples/example_2.js ``` var _colorIdx = 0, _colors = [ 'orange', 'green', 'blue', 'purple', 'darkred', 'cadetblue', 'red', 'darkgreen', 'darkblue', 'darkpurple' ]; function _assignColor() { return _colors[_colorIdx++%10]; } ``` and then: ```...
Hi @christhaxter, I'm not familiar with R at all, but is the above syntax correct? I saw this usage of the JS function: https://www.rdocumentation.org/packages/htmlwidgets/versions/1.6.1/topics/JS Also there is a difference in...
> by the way .another question. how to do same things on windows Better use WSL for your development workflows.
> `>wsl --unregister ubuntu` followed by `>wsl --install` fixes the problem for ubuntu atleast On point! Thanks!
Here's my simple setup, hope it helps. ``` import 'dotenv/config'; import express from 'express'; import { pino, transport } from 'pino'; const APP_PORT = process.env.APP_PORT || 3333; const LOKI_HOST =...
How do you ensure the heartbeat is sent every 5 seconds?