Andrea Richiardi

Results 486 comments of Andrea Richiardi

It looks like `AsyncHttpClient`'s version of netty is lower than aleph's ..welcome to dependency hell :smile:

Oh, I thought it was kind of following the normal REPL bindings. Is this planned or do you want me close it.

Yeah I ended up doing exactly that: ``` user=> (use 'clojure.repl) nil user=> (doc var) ------------------------- var (var symbol) Special Form The symbol must resolve to a var, and the...

Using this at the moment: https://gist.github.com/arichiardi/8ad47f5edf185876e82015739f038a22

Ideally `rebel-readline.cljs.main` should do `(use 'clojure.repl)` for me? Maybe?

Oh ok, you need alias + `deps.edn` of course, it is working fine here, I did not want to include the rebel dep in the alias itself because of the...

Hi there, I would like to add a +1 to this one. In my case the `git remote` shows up as: `origin [email protected]:...` However the actual http domain is `https://dev.azure.com/...`...

The above example with `mount` is very very clear thanks! I was checking https://github.com/flosell/lambdacd-auto-reload-example but I am more familiar with `mount` myself ;)

Is there any development on this one? I am interested as well and wanted to roll my own in case @xiongtx is busy at the moment..

This is the ugly workaround: ```clojure (let [unique-sql & _] (when unique-columns (-> (apply sql/call :unique unique-columns) (sql/format :parameterizer :postgresql))) (str/replace table-stmt #"\)$" (str ", " unique-sql ")")) ```