Pēteris Caune

Results 237 comments of Pēteris Caune

If there is idempotence key, it could be also used to measure job execution times for concurrent / overlapping jobs. * 00:00 Job A starts (idempotence key "A") * 00:10...

Yes, I think this would be a neat and useful feature. I'm open to reviewing and accepting PR(s).

Thank you for the report! To be honest, I'm not very familiar with hosting Django apps in subpaths. For reference, my current understanding is that SITE_ROOT should only contain scheme,...

Are you interested in XMPP support on the hosted service, or on a self-hosted instance? If self-hosted, have you considered the Apprise integration? It supports *lots* of notification methods, including...

Thanks for the hint! The Mattermost integration currently uses the exact same notification JSON template as Slack. We still list it as a separate integration, so it can have its...

Hi @moshner, thanks for the suggestion. Publishing a channel on IFTTT has a yearly cost, which is out of range for this project currently. If you have ideas on how...

Hi @kadambkaluskar, looking at msg91 API docs, it looks like it should be possible to invoke the "Send SMS" API call with the existing Webhook integration. Can you please give...

The above snippet was simplified for clarity. Here's a full one: ``` navigator.mediaDevices.getUserMedia({ video: { facingMode: facingMode }, audio: true }).then(function(stream) { console.log("Got stream from browser"); var video = document.getElementById("self");...

Thanks, missed that! Wasn't intentional, it was just me copying samples from README and not knowing how error reporting works. I'm now getting this: ![image](https://user-images.githubusercontent.com/661859/80702477-cc6e1180-8ae9-11ea-94d4-2f12f27ec4b5.png) To me it looks like...

Ah I see. I commented out the line that updates `localStream` and now it indeed works: ``` navigator.mediaDevices.getUserMedia({ video: { facingMode: facingMode }, audio: true }).then(function(stream) { var video =...