This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-10-18
Channels
- # aws (1)
- # aws-lambda (1)
- # beginners (48)
- # boot (15)
- # cider (3)
- # cljs-dev (4)
- # cljsrn (4)
- # clojure (241)
- # clojure-chicago (1)
- # clojure-dusseldorf (12)
- # clojure-greece (41)
- # clojure-italy (3)
- # clojure-russia (16)
- # clojure-spec (7)
- # clojure-uk (34)
- # clojurescript (88)
- # community-development (9)
- # cursive (8)
- # data-science (55)
- # datomic (40)
- # devops (1)
- # emacs (20)
- # fulcro (19)
- # graphql (3)
- # hoplon (46)
- # luminus (11)
- # lumo (4)
- # off-topic (27)
- # onyx (26)
- # other-languages (25)
- # pedestal (2)
- # powderkeg (6)
- # re-frame (11)
- # reagent (4)
- # ring-swagger (17)
- # rum (4)
- # shadow-cljs (103)
- # spacemacs (14)
- # specter (6)
- # unrepl (21)
- # yada (1)
@phinneas Sure, though I bet there are even more familiar folks hanging out in #aws and #aws-lambda
What causes an error of the form
java.net.URISyntaxException: Illegal character in path at index 65:
index: 65
input: ""
reason: "Illegal character in path"
index 65 matches the $ in ${project.version}
is this due to some failure in macro expansion in pom.xml ?@qqq to me that looks like something that should have been a template got used directly
it’s not an error in pom.xml, it’s an error in something that generates a link to the latest pom, to my eye
yes, it’s #cider
Thanks @noisesmith - How do I make it appear on the left side channel menu? Sorry, still new to slack..
@kingcode You can click on a channel name in the chat when someone has mentioned it (#cider will be a link you can click on in this message and in @noisesmith's message above). If you're new to Slack, feel free to join #slack-help and ask any questions you may have there.
Thank you @seancorfield!
And, Welcome, by the way!
hi all, has anybody used Apach Batik before? I'm having some trouble with generation a pdf from a svg and google/stackoverflow is not helping 😛
@noisesmith: I went around and replaced every occurance of ${project.version} with its literal value -- everything appears to work [though I have no idea why]
I'm reading http://www.scala-lang.org/api/2.10.3/#scala.collection.concurrent.Map From this, I can set/get on a Scala Map. However, for the life of me, I can't figure out how to create a Scala Map. Anyone know how? [I think the problem is that Scala Map are typed, so to even create one, I need to somehow specify the Key / Value types]
@qqq it shows it's abstract, and the only thing it shows implmenting the class is TrieMap which has a constructor
unless I'm reading it totally wrong, I'm not a scala expert
@noisesmith: after some digging, I got
(.empty Map$/MODULE$)
to compile (notice the Map$, which is some 'concrete class') -- whether this will do what I think it does, we'll see later 🙂weird!
ISTR Foo$MODULE$ (or something like that) is the classname of the “companion object” for classes/traits