chpill

Results 7 issues of chpill

A few days ago, some new feature appeared in clojure 1.10 alpha that overlaps greatly with what unrepl is trying to do: https://github.com/clojure/clojure/commit/86a158d0e0718f5c93f9f2bb71e26bc794e7d58e. From what I [heard on reddit](https://www.reddit.com/r/Clojure/comments/7wdlq4/first_cut_of_prepl_%E8%B7%AF_clojureclojure86a158d/), it...

question

I started to try writing an effect handler, akin to https://github.com/Day8/re-frame-http-fx In the code of the handler, there is a call to `dispatch` that is made... So we need a...

While looking at #1, I also noticed a problem with the effects that are registered in https://github.com/Day8/re-frame/blob/cf61b2db1da360687c6b247888b29fb58bedf7cb/src/re_frame/fx.cljc `:dispatch` `:dispatch-later` and `:dispatch-n` all use the global dispatch. `:deregister-event-handler` uses the global...

There is an issue with streaming responses when using a synchronous ring handler. Consider the following bare-bone SSE handler: (Tested with Clojure 1.12.0-alpha5 and Java 21) ```clj {:deps {org.clojure/clojure {:mvn/version...

Hello, first of all, thank you for this library! I am considering using it instead of the original adapter for a web project, but I ran into an issue with...

Implementation to illustrate my suggestion on https://github.com/tonsky/rum/issues/136 It works, using `child-context-types` and `context-types` to aggregate the different types correctly. But you have to be careful not to have a `{:class-properties...

Hi, Rum supports having multiple `:child-context` defined in mutliple mixins by [collecting] them and instructing react to [merge] them when needed which is great. [collecting]: https://github.com/tonsky/rum/blob/e1037a1d9fc9338fa4cd3ca4348694b785d2ea3f/src/rum/core.cljs#L35 [merge]: https://github.com/tonsky/rum/blob/e1037a1d9fc9338fa4cd3ca4348694b785d2ea3f/src/rum/core.cljs#L101 To be...