Lauri Siltanen

Results 6 comments of Lauri Siltanen

That works pretty well. Apparently `amazonica.aws.sqs/arn`does not support this and that is needed for subscribing.

~~Sorry to hijack this but what is that `describe` function?~~ Nevermind, `compojure.api.sweet/describe`

This ultimately boils down to the difference in `java.util.regex.Matcher` methods `find` and `matches` (`clojure.core/re-find`vs. `clojure.core/re-matches`). ```clojure (let [pattern (Pattern/compile "^thing$") matcher (.matcher pattern "thing\n")] (.matches matcher)) => false (let [pattern...

I didn't even know about `\z`. I think that's good enough for me.

The `lein change` proposal is lackluster at best. If I know the entire path AND version I want, I can just add them to the file. I don't want to...