Daniel Compton
Daniel Compton
I've been having the same issue. I use Chrome and Chrome Canary, I'm not sure which one caused the problem.
```js const requestIp = require('request-ip'); requestIpSafe = requestIp.configure(['X-Client-IP', 'X-Forwarded-For', 'req.socket.remoteAddress']) // inside middleware handler const ipMiddleware = function(req, res, next) { const clientIp = requestIpSafe.getClientIp(req); next(); }; ``` `requestIp.configure` would...
I've made a PR for this, but I agree it's not an urgent issue. I've done some testing on an actual project and everything seems fine.
Nope no blocker. I just temporarily removed those settings while cloning, and then added local .git/config settings to disable checking.
It looks like this was fixed in https://github.com/ztellman/aleph/pull/337, since 0.4.5-alpha1 as @gsnewmark says. > This makes aleph client unusable on JVM 9/10 which I consider serious. > I can use...
[Deps](https://www.deps.co) (private Maven repository hosting) is using Aleph for the main web application and handling uploads. Downloads go through Varnish. All of the usage of Aleph is via [juxt/yada]( https://github.com/juxt/yada)...
There's a $20 bounty on this - https://www.bountysource.com/issues/98835-all-real-time-streams-should-emit-events-every-interval-with-decaying-ttls 
Thanks for catching this, it does look like a bug. In https://github.com/Day8/re-frame/commit/64f858c4e33f68b1da5d6f9532defd8a73345b0b I extracted part of `deref-input-signals` into `map-signals` so that I could reuse the same mapping logic when tracing...
To add to this list "Just for reference I think these are the bits of state that should be part of a frame:" * re-frame.trace has a `trace-cbs` atom. We'd...
Hey quick update from Day8 team on this 1. We've put in a ton of effort on 0.9 in docs and code, especially Mike on the docs, and we'd like...