Linus Ericsson

Results 25 comments of Linus Ericsson

Thanks for your quick reply! Just to clarify, what we want is to avoid is that the log-viewer can be opened in the production client. We will try out your...

We do get klang working in production, but we did confuse the format of edn-file. If you `(read-string "{:logger-fn 'klang.core/log!}")`, logger-fn becomes a `Cons` (a quote) which gives very confusing...

It does make sense, thank you! Regarding accepting `(quote some-symbol)` I just want to make this doesn't affect the runtime performance, ie that the more promiscuous lookup is done entirely...

The thing about datomic and datascript is that you often can create two queries on the exact same dereffed db, then merge the two result sets, either by a third...

This is because files are added as resources in jars, and the citrus jar's `resources/public/index.htm`l shadows the figwheel identically named `resources/public/index.html`. This google group post mentions the problem: [Classpath bug...

No :( Like the idea, but didn't understand it at the time.

Thanks for reporting alternative seemingly-promising-but-not-that-useful-in-practice experiments! It's very helpful because I spend some time thinking about them too, mostly for fun, but anyway. Could we simply use a PersistentVector with...

Well, to answer myself, the better way forward would be to try using `core.rrb-vector` (which allows gcing of dropped elements). A possible optimization would be to make the interceptor chain...

Thanks for the 0.5.0-release. The exposed chain-api very useful for various types of work, event handling and more. I spent some time re-implementing the chain backed by ordinary PersistentVector using...

Just for the sake of completeness, Metosin has provided a significantly faster implementation of a large subset of the interceptor chain: https://github.com/metosin/sieppari One key difference seems to be that the...