Daniel Compton
Daniel Compton
I think using HTTP2 would greatly improve the page load performance of projects using Figwheel. Anecdotal reports on Clojurians also suggest this is the case for ClojureScript dev projects. With...
When working on a laptop, the screen isn't big enough to have the browser and editor both up. It would be good to have the option to show desktop notifications...
Is there any interest in a PR to figwheel for an option `with-reload` which would wrap the figwheel reload in a function so dynamic bindings (or other things) can be...
It could be helpful to add docs describing how to setup source maps with Figwheel, or at least mentioning the `:source-map-timestamp` configuration parameter. Relates to #51.
From https://www.christian-schneider.net/CrossSiteWebSocketHijacking.html, if somebody wasn't using CSRF tokens, it seems like it would be possible for any malicious website to open up a web socket to do Bad Things. I...
I got a security report recently that boiled down to Bidi using the `X-Forwarded-Host` value over the `Host` value. https://github.com/juxt/bidi/blob/master/src/bidi/vhosts.clj#L94-L98 This was added in https://github.com/juxt/bidi/commit/02d8f68da68c99697bbd63ea4018647834b79687. You can see more descriptions...
It could be helpful to show more data in the ex-info when throwing an exception. e.g. when doing the example in the README: ```clj (path-for my-routes :article) ;clojure.lang.ExceptionInfo: Cannot form...
SQLite brought the [session extension](https://www.sqlite.org/sessionintro.html) into the master trunk in 3.13.0. It can be used for applying patch sets from one DB to another. The example given was for merging...
Relates to #151, also the timing for dispatch-sync events shows up mostly in misc, not in the event handler.
If Transit doesn't have a reader for a particular value it just flows through an opaque type, a `Transit$TaggedValue`. In cljs-devtools this is inspectable: In re-frame-10x this is not: We...