Tony OHagan
Tony OHagan
Still getting this issue with latest quasar CLI (v1.5.0) and a freshly baked "quasar create" project. For this new project I'm using `npm` (v6.4.1) instead of `yarn` and I get...
I've just noticed that it *sometimes* works in VSCode terminal so it may be their bug - not yours! Appears to work ok and then stop working within a single...
I recommend you do some more reading on CouchDb - specifically look at it's [Eventual Consistency](http://guide.couchdb.org/draft/consistency.html) model and [Conflict Management](http://guide.couchdb.org/draft/conflicts.html) which I think is a mature well thought out solution...
You might look at the Delta Pouch plugin for PouchDb - https://github.com/redgeoff/delta-pouch "A PouchDB plugin for partial updates that uses the every-doc-is-a-delta storage pattern. You can use delta pouch to...
Just don't include Firebase keys/logins in your source code (you shouldn't be doing this anyway). Rather, include in your README the instructions for signing up with Firebase and generating and...
Personally I'd avoid any hosting company that offered any of the Firebase 3.x terms. The last one 3.4 is a serious "turn off" for me. These guys are sharks.
One solution comes to mind ... - Create command events with `thread_id = request_id` and `thread_level = 0`. - Business logic functions that execute command events create new events using...
Event threading is an old trick but you might consider it worth documenting as part of 3 factor examples or perhaps even supporting in the framework. Here's the backstory that...
Having conditional logic as you've described to filter triggers does not prevent this kind of bug. Adding a condition may help you fix it but it won't detect or prevent...
If you're wanting offline sync support you might want to have a look at [Superlogin](https://github.com/colinskow/superlogin/). It's based on Couch/Pouch but adds Node/Express/Passport to do authentication and a feature complete user...