davesann
davesann
``` (def routes-test ["/" {(->Alternates ["index" "index-x" "index.html" "x-index.html" "index-x.html" "x.html"]) :handler }]) (bidi/match-route routes-test "/index") => {:handler :handler} (bidi/match-route routes-test "/index-x") => nil (bidi/match-route routes-test "/index.html") => nil (bidi/match-route...
``` (def routes-test ["/" {(->Alternates ["xxx" "index" "a"]) :handler}]) (bidi/match-route routes-test "/index") => {:handler :handler} ``` however, ``` (def routes-test ["/" {(->Alternates ["xxx" "" "index" "a"]) :handler}]) (bidi/match-route routes-test "/index")...
## Expected behavior in evil mode w motion should work on clojure symbols for example: this-symbol?! ## Actual behavior currently the motion will only include 'this' - i.e up to...
I came a situation where notifications are lost (I think because here: https://github.com/gmethvin/directory-watcher/blob/main/core/src/main/java/io/methvin/watcher/DirectoryWatcher.java#L347) the has is not seen as new. This appears to arise from the manner in which an...
It would be useful to have log levels and means to disable or enable log statements in specific namespaces. I would see this as a compile time feature - what...
from your docs: ``` clojure (let [color (java.awt.Color. 10 10 10)] (g/translate translator color)) ``` does not work correctly because translate requires opts to use translator as an arg. the...
I am experimenting with replicant and came across the following difficulty. If I change a "view" from say: [:p {:id "a"}] to [:p {:id "b"}] Then the lifecycle events that...
trying to download with [email protected] instead of https:/... forces the user to have a git account and add ssh keys. Is there a reason for this choice? https://github.com/omnyway-labs/vulcan/blob/master/src/vulcan/deps.clj#L96
using portfolio.reagent-18 - not tested for others. I noticed that: - if I remove a defscene - comment it out - the page will not update and remove it -...
Just exploring. One of the first things I wanted to do was create scene variants programmatically. This is hard because defscene is is a macro as are some of the...