Cefn Hoile
Cefn Hoile
As a short-term measure, recording in [the documentation](http://redux-saga-test-plan.jeremyfairbank.com/integration-testing/state.html) that setting a state via withState and via withReducer are incompatible with each other would have saved me (and perhaps others) a...
@vatosarmat can you point to where in the documentation this is clear? The scenario you describe (state that might change) could easily be understood (by non experts who have not...
Thanks for clarifying @vatosarmat > Maybe `expectSaga` should do some check and throw error if `with[Reducer|State]` called more than once? Yes, that's the kind of safety net I'm imagining. If...
I am still getting the hang of dynamic providers, but since there are now multiple providers possible, you could add one for each action pattern you want to mock, which...
Hi, @Jerimipo is this already fulfilled by the alternatives to select the following under `Menu => Config => System => Map Display => Elements => Trail Type` * `Vario #1...
I asked because I was working on an alternative display (which I flew with last season and worked pretty nicely). I was wondering what features others were thinking of with...
If I recall it was mostly https://github.com/cefn/XCSoar/blob/74d6a5ae63a89146965f6709a6a2acc26559c71c/src/Look/TrailLook.cpp#L58-L70 combined with some scaling interventions to make the circles bigger according to lift, although I think I may have overdone the scaling a...
To make the functions of this mixin available on lodash, you need to apply it as a mixin... ```javascript Welcome to Node.js v12.4.0. Type ".help" for more information. > lodash...
Given there can be only one listen socket and one client socket then why does webrepl.stop() not itself close the WebREPL connections properly? https://github.com/micropython/micropython/blob/37282f8fc135a16ff36e2afe0de907cbde531ed0/ports/esp8266/modules/webrepl.py#L51-L57 Do you mean that a browser/webrepl_cli.py...
In fact it seems I had one of my own sockets `s` not shutting down as well, so finally after running both... ```python webrepl.stop() s.close() ``` ...it was able to...