Max Weber

Results 9 comments of Max Weber

Sorry for the extreme late response. I didn't look into Github for a while and I misconfigured the email notifications. I'm going to look into your pull request as soon...

Hi Don, sorry for the late answer. Regrettably, I do not have the time to work on clj-facebook-graph at the moment. Robert was so kind to push a patch for...

Hi Sergey, sorry for the late answer. I've just pushed a commit to my fork of clj-decline (https://github.com/maxweber/clj-decline) which implements your proposal. Specifications can now look like this one: {:name...

One other thing which is missing for the specification stuff is the possibility to state that a particular key is not allowed inside a map or the other way around...

Hi Sergey, the validation-spec function supports optional keys now. The keyword of an optional key starts with a question mark: >(def check (validation-spec {:?name not-empty? :num int?})) >(= (check {:num...

@thheller, thank you so much for creating shadow-cljs :+1::+1: I hacked a bit on a prototype to create a shadow-cljs REPL for Deno: https://github.com/maxweber/cljs-deno-example It is working 🥳 But I...

I created a modified version of `devcards` that is adapted to `shadow-cljs`, so that you don't need to remember the workarounds: https://github.com/simplemono/devcards

Thanks a lot for the workaround. As suggested I set `calva.definitionProviderPriority` to: ```json "calva.definitionProviderPriority": [ "lsp", "repl" ] ``` and now 'Go to Definition' works 🥳 One strange thing was...

> Did you try with the latest nrepl dependencies any? I'm sorry for wasting everybody's time here :sweat_smile: I switched to the most recent versions of: ```clojure nrepl/nrepl {:mvn/version "1.3.1"}...