Re: what is currently considered a good blog engine, written in Clojure?

2020-12-13 Thread lawrence...@gmail.com
Thank you everyone. On Sunday, December 13, 2020 at 12:05:01 PM UTC-5 stan@gmail.com wrote: > On 13.12.2020 10:11, Christopher Small wrote: > > Oz (in addition to being a dataviz tookit) has evolved into the realm of > > static site generation > >

Re: Using asynchronous clojure function

2020-12-13 Thread Brandon R
Hi Ganesh, The function called wrap-content-type takes in another function (handler) and a content-type (string), and returns a function. The function that it returns takes in a request, which is a Clojure map, that has the keys that you see in the ring docs here:

Re: what is currently considered a good blog engine, written in Clojure?

2020-12-13 Thread Eugen Stan
On 13.12.2020 10:11, Christopher Small wrote: Oz (in addition to being a dataviz tookit) has evolved into the realm of static site generation , complete with live code reloading. Simply |(require '[oz.core :as oz]) (oz/build! [{:from

Using asynchronous clojure function

2020-12-13 Thread Ganesh Neelekani
Hello Team, I am a moderate Clojure user and now I planned to explore more Clojure, I used to write different functions every time where I could write asynchronous functions. As came from object-oriented background and trying to understand asynchronous functions I took some example on

Re: what is currently considered a good blog engine, written in Clojure?

2020-12-13 Thread Christopher Small
Oz (in addition to being a dataviz tookit) has evolved into the realm of static site generation , complete with live code reloading. Simply (require '[oz.core :as oz]) (oz/build! [{:from "site-src/pages" :to "build"}]) This will set