Jaap Broekhuizen

Results 44 comments of Jaap Broekhuizen

For example: https://shareaction.org/research-resources/voting-matters-2020/ In this ranking, Nationale Nederlanden and Northern Trust are in another league compared to Vanguard and BlackRock (iShares)

This does seem like it might cause collisions if your idAttribute format clashes with the default return values of `_.uniqueId` (which is used to generate the value of `this.cid`). You...

Backbone adheres to how REST API's work. REST does not generally support DELETE on ranges or lists. That's why the Collection class does not have a `destroy` method. You'll have...

Yeah, the pychromecast module has changed a lot since I built this little tool. I would like to update it but I don't think I'll find the time to do...

I have forked the repo and added a fix here: https://github.com/AdvancedClimateSystems/snap.svg.zpd Although this fix works, isn't there a better way of doing this? Checking the time at which the events...

Yeah I found out my solution is not consistent at all across browsers. It's also just a dirty hack to look at time stamps IMO. I am looking into alternatives...

Also checking timestamps is not only inconsistent across browsers, it's also inconsistent across computers. My linux laptop running chrome behaves slightly different than my coworkers windows desktop using chrome.

As this labeled "PR please", is there a pointer to where the problem might lie, so me of someone else can take a stab at actually creating a PR? This...

I would personally use redis pub/sub for this. Subscribe to an event (for example "send-to-ws") when the websocket connects. Then publish that event in the "somewhere" route. This way you...

If you are running one instance of the app (not multiple, like when you use uWSGI), something like this should work: ``` python app = Flask() websocket = WebSocket(app) clients...