Daniel Meyer
Daniel Meyer
# Plans for the next major version So in the last major RxDB versions, the focus was set to **improvements of the storage engine**. This is done. RxDB has now...
Source: ```js async wrapCall(fun) { const unlock = this.lock(); let ret; try { console.log('wrapCall() ' + this._queueCounter); ret = await fun(); } catch (err) { // not sucessfull -> unlock...
Hi. I know this repo is no longer maintained, but it was really helpful for research when I wrote my two posts. So I made this PR that you might...
This PR contains a test case to reproduce a bug in the pouch-find plugin. Using the `$gt` operator over a nested field will return the wrong query results. ```js await...
I added my open source project where I published a model that is capable of segmentating fashion products from product images.
I created a tether between 2 elements with the following js: ```js new Tether({ element: '#a1234', target: '#target', attachment: 'top right', targetAttachment: 'top left' }); ``` When the tether is...
When doing a full build from the `Dockerfile` in the repo, I got this error because the `RUN` command tries to run `sed` on a file that does not exist....
When doing a full build from the `Dockerfile` in the repo, I got this error because the `RUN` command tries to run `sed` on a file that does not exist....
There was the call `const csv = csvString.toString();` which enforces the input of `fromString()` to be a string. But the variable `csv` was never used which is why I got...