Eric Xanderson

Results 44 comments of Eric Xanderson

refresh the browser -> close is triggered If it was re-logging in, we'd have a different peerId, but the same peer ID shows up on the second client. That's the...

it appears to be chrome specific. I upgraded the demo here: https://github.com/disarticulate/y-webrtc/tree/master/demo Reproduce: 1. open 2 chrome threads (not in same window): ``` /usr/bin/chromium-browser --user-data-dir=$root/chrome1 --password-store=basic http://localhost:8080/demo/ & /usr/bin/chromium-browser --user-data-dir=$root/chrome2...

this affects development with https://flatgeobuf.org/ @ https://github.com/flatgeobuf/flatgeobuf

@qwazwsx appears to be an issue with es6 codes, where uglify is stuck forever on es5. Easiest way to route around was: ``` browser-buid.js // const UglifyJS = require('uglify-js'); //...

pull request here for tests: https://github.com/localForage/localForage/pull/1009 digging around, it looks like there's an upgradeneeded request that's blocked leading to the hang: ``` function _getConnection(dbInfo, upgradeNeeded) { return new Promise$1(function (resolve,...

further investigation seems to indicates there's atleast two issues going on. There's definitely the onblock concurrency needing to be handled, but there's also this versioning: ``` function _isUpgradeNeeded(dbInfo, defaultVersion) {...

inspiration: - https://github.com/graphile/postgraphile - https://github.com/djrobstep/migra my consideration is that everything I have is either in sql files or in the database. using this tool would require rewriting everything.

I was just following orders: ``` An easy way to create a cron schedule is: crontab.guru. ```

Imperfect solution is: ``` import Interaction from 'three.interaction/src/interaction/Interaction.js' ```

@martinpengellyphillips here's the https://github.com/yjs/y-webrtc/pull/25 pull request. I think some of the feedback is about better integration with @dmonad's approach and comments. As far as I know, this is just how...