Erik Demaine

Results 343 comments of Erik Demaine

Agreed; I expect a type error when setting value to undefined, so it seems fine to leave this behavior, provided we document and perhaps help avoid it. 1. In TypeScript,...

Yeah, fair enough. There's a question of whether you want arrays of signals to act like shorthand for a signal consistently across the interface, and you're leaning the other direction....

This sounds very cool! I do worry about cache consistency / race conditions though. In my app, several users/servers could be modifying the same object at almost the same time,...

It's good to explore new ideas! I think the only question here is whether a fork or merging or something else is better. Publishing your code would be a good...

Indeed, the code no longer responds to `overridePublishFunction`, as reported in #323. (This issue seems like a duplicate of that one.) Instead, you can turn off/disable Redis Oplog by *not...

That does seem like a good reason to add `overridePublishFunction` support back (and I see #359 is your issue for this -- again, this issue seems like a duplicate). I...

@theodorDiaconu OK, I did the suggested rename -- that is a better name. I also added a small section to `docs/vent.md`. Let me know if you'd like this moved somewhere...

If I'm reading the code correctly, it will do nothing if `redisOplog` isn't in `settings.json` (and no `REDIS_OPLOG_SETTINGS` environment variable is set). So if you're testing locally via `meteor` (without...

FWIW, I've been getting similar error messages, but I do have an actual `error` message. Still trying to track down what's causing it. ``` RedisOplog - Connection to redis ended...

You can turn off/disable Redis Oplog by modifying your `settings.json` to not set `redisOplog` at all (or setting it to `null`). I use this for local testing (via `meteor run`),...