Fork me on GitHub
#off-topic
<
2017-10-18
>
Buzz02:10:29

Is anyone here very familiar with AWS?

Chris Bidler03:10:38

@phinneas Sure, though I bet there are even more familiar folks hanging out in #aws and #aws-lambda

qqq03:10:37

there's also #portkey

qqq13:10:50

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 ?

noisesmith17:10:22

@qqq to me that looks like something that should have been a template got used directly

noisesmith17:10:04

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

kingcode17:10:38

Is there a CIDER channel?

noisesmith17:10:10

yes, it’s #cider

kingcode17:10:37

Thanks @noisesmith - How do I make it appear on the left side channel menu? Sorry, still new to slack..

kingcode17:10:08

ooops never mind…got it 🙂

seancorfield18:10:17

@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.

kingcode18:10:15

Sorry, should have used slack-help first 🙂

seancorfield18:10:56

And, Welcome, by the way!

boogie66618:10:59

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 😛

qqq22:10:43

@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]

qqq22:10:10

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]

noisesmith22:10:31

@qqq it shows it's abstract, and the only thing it shows implmenting the class is TrieMap which has a constructor

noisesmith22:10:43

unless I'm reading it totally wrong, I'm not a scala expert

qqq23:10:43

@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 🙂

csm23:10:12

ISTR Foo$MODULE$ (or something like that) is the classname of the “companion object” for classes/traits

qqq23:10:07

what are "companion object" and "traits" ? (and are "classes" java Classes, or do they mean something else)

csm23:10:24

traits are kinda like interfaces, but not really

csm23:10:39

companion objects are basically “all the static methods you would put in the class”

csm23:10:40

so (.empty Map$/MODULE$) is kinda like (Map/empty), but also not

csm23:10:58

man, scala is weird, after looking at it again after using clojure