Re: Cognitect and Nubank are Sponsoring Open Source Developers

2020-12-15 Thread Peter Strömberg
This is fantastic. What an excellent way to show the way! The Calva team is almost fainting from realizing we are both sponsored by the very company which creates Clojure. Wow, just wow! Den tis 15 dec. 2020 kl 18:09 skrev Alex Miller < alex.mil...@thinkrelevance.com>: >

Re: Idiomatic program for someone new to Clojure

2020-12-15 Thread James Lorenzen
So I think I can answer my first question. That particular line in `pipeline-build-count` is doing associative destructing . And you didn't have to do the `as response` but like you said in your comment, you are just doing

Re: Idiomatic program for someone new to Clojure

2020-12-15 Thread James Lorenzen
Thanks for the suggestions aditya. I definitely like where you are headed. I have a few questions. This syntax in `pipeline-build-count` method looks confusing to me: > [{:keys [body] :as response}] ;; destructuring for convenience and function API documentation Would you mind breaking that

Cognitect and Nubank are Sponsoring Open Source Developers

2020-12-15 Thread Alex Miller
https://cognitect.com/blog/2020/12/15/sponsoring-open-source-developers -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient

Re: Idiomatic program for someone new to Clojure

2020-12-15 Thread Peter Strömberg
Seconding aditya's advice here. I can truly recommend watching this talk about solving problems the Clojure way: https://youtu.be/vK1DazRK_a0 Interestingly, he applies it on a JavaScript code example. Which makes it all that much more powerful. On Tue, 15 Dec 2020 at 22:42, James Lorenzen

Re: Idiomatic program for someone new to Clojure

2020-12-15 Thread aditya....@gmail.com
On Wednesday, December 16, 2020 at 3:12:22 AM UTC+5:30 jamesl...@gmail.com wrote: > So I think I can answer my first question. That particular line in > `pipeline-build-count` is doing associative destructing > . > And you