brjann
brjann
My database query functions often accept a collection of IDs to perform the query on. Depending on the origin of the request, they may be seqs, vectors or sets. Would...
When the user clicks outside the popover to close it, the on-click event is propagated to the parents of the popover element. This causes an issue for me. It would...
I have a babashka nREPL running on a Raspberry Pi and want to connect to it. The nREPL is located at `192.168.1.195:1337`, and it gets tedious to write the host...
I'm switching from `kee-frame.fsm.alpha` to `re-statecharts` and this far I really like the new library! I think I have stumbled upon a race condition though. I cannot return this from...
The `:after` keyword can be used to specify a delayed transition, and allows a function that returns a dynamic delay. Would it make sense to cancel the delay if the...
### Prerequisites - [x] I have [searched](https://github.com/twbs/bootstrap/issues?utf8=%E2%9C%93&q=is%3Aissue) for duplicate or closed issues - [x] I have [validated](https://html5.validator.nu/) any HTML to avoid common problems - [x] I have read the [contributing...
Reitit allows two syntaxes for path parameters, colon and bracket syntax ```clojure [["/users/:user-id" {:handler get-user}] ["/api/:version/ping" {:handler ping-version}]] [["/users/{user-id}" {:handler get-user}] ["/files/file-{number}.pdf" {:handler get-pdf}]] ``` The bracket syntax is required...