Re: regex in edn?

2019-03-29 Thread Ikuru Kanuma
Thanks for the reply! Glad to have confirmations. -- 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 with your first post.

regex in edn?

2019-03-29 Thread Ikuru Kanuma
Hi, just writing this out of pure curiosity. Background: 1. I thought I could write regex literals like this in an edn file containing configurations: :some-parameter #"foo" But reading this with e.g. clojure.edn/read-string causes an error No dispatch macro for: " 2. I thought I can

Re: Leiningen template for pure Clojure/ClojureScript project ?

2017-07-25 Thread Ikuru Kanuma
Hi Khalid, I really find the mies template good for minimal cljs setup. https://github.com/swannodette/mies Main feature is that builds can be done from shell scripts that in turn point to .clj files that directly use the ClojureScript build API without any Leiningen/Boot stuff. I highly

Re: Clarification on # as valid symbol character

2016-11-07 Thread Ikuru Kanuma
Hi Steven! I think all of those cases are covered in the reader reference' reader dispatch section: http://clojure.org/reference/reader#_dispatch Basically when the reader encounters a '#' it does the appropriate dispatch action depending on what follows. As it is a special character handled

Re: Is there an easy way for s/keys spec to work against both qualified/unqualiffied keys at the same time?

2016-10-16 Thread Ikuru Kanuma
Mauricio, thanks for the response! I agree that that gets what I asked for done, but that solution is in essence writing the same qualified/unqualified version of the spec twice and sounded redundant, which lead to my question. I guess it is what it is in that case... Leon, thanks for the

Is there an easy way for s/keys spec to work against both qualified/unqualiffied keys at the same time?

2016-10-13 Thread Ikuru Kanuma
Hi, I was reading the official spec guide's explanation for the s/keys macro, played around with it a bit, and was a little surprised that the :req and :req-un are exclusive specs as illustrated below: (ns my.ns (:require [clojure.spec :as s])) (s/def ::some-number int?) (s/def

Re: Clojure support for Visual Studio Code

2016-09-19 Thread Ikuru Kanuma
Thanks for the tips, Andry & Michael! Will investigate the rabbit hole deeper when I have time (Tried you suggestion but no success...), but thanks Andrey for releasing it into the market place because now I can try it out in the mean while. Cheers, -- You received this message because you

Re: Clojure support for Visual Studio Code

2016-09-17 Thread Ikuru Kanuma
Thanks for the reply Andrey! I guess the installation part is then something specific to the ubuntu flavor(I am using ubuntu-mate) I am using/ what ever it could be. (I also did try to open the file from the menu, but same story as dragging and dropping). Also my vs-code installation is a bit

Re: Clojure support for Visual Studio Code

2016-09-15 Thread Ikuru Kanuma
Hi Andrey, thanks for sharing this great work! - I did want to try it out on an Ubuntu machine, but simply dragging and dropping seemed to not work. Could you perhaps point to an alternative way to install extensions (First time ever touching vs code, so it is hard for me to even google how to