Tomas Brambora
Tomas Brambora
I just got bitten by rate-limiter thinking by default the rule applies to each connection separately. This example should help educate users that it is not in fact the case...
Hi, I came across a situation where I have non-trivial setup (basically a short description of a db table) in my feature file background and I would like to be...
Hi, this library looks awesome! Unfortunately, my Meteor 1.2 report `SyntaxError: Unexpected reserved word` on `class Property`. I tried adding the `ecmascript` package - no difference. Maybe the release build...
It might be better to relax the statusCode checks a bit (i.e., consider things to be OK if statusCode is in the 2xx family).
Steps to reproduce: 1. set up Friend with oauth2 workflow 2. in `credential-fn` return nil 3. log in I'm redirected to `http://localhost:56990/oauth2callback?state=&code=` and Ring says 404 not found. It works...
TL;DR Preallocating a `size + 100` item array when tracking dependencies seems overly generous and can lead to more frequent garbage collections, causing jank. This PR replaces that with relative...
`trackDerivedFunction` from `packages/mobx/src/core/derivation.ts` gets called every time a derivation is read (i.e., very often) and we currently preallocate 400 bytes (via `new Array(100)`) for the new dependencies array. This seems...
When `autorun` uses a `delay`, we compute derived state eagerly when dependent state is invalidated, i.e. before the autorun actually runs. It's unclear why we need to (or should) do...
`computedFn` uses `_isComputingDerivation()` to determine whether it should cache or not. However, when getting value of a computed from within an action, `_isComputingDerivation()` will return `true` and `computedFn` will cache...
Looks like meteor has changed the build process behaviour and now the builds hang. The problem is that meteor is checking `${HOME}/.meteor` to load package metadata (which is empty). Look...