Fork me on GitHub
#clojure
<
2015-08-22
>
vfe01:08:57

Finally found where all the cool kids are hanging out.

pandeiro14:08:18

where is the new-remote-session function that is documented in the clj-webdriver wiki? there is no reference to a ns and grep finds nothing of that name in the codebase

nberger14:08:55

I guess it didn't make it to 0.7.x simple_smile

pandeiro14:08:18

@nberger: thanks! it's in 0.7.2 but not in master simple_smile

nberger14:08:49

oh, right simple_smile

pandeiro14:08:43

even with a number of combinations of selenium dependency versions, i can't get clj-webdriver.remote.server to load in my REPL

pandeiro14:08:03

... ah but requiring clj-webdriver.core first and then loading it works

martinklepsch15:08:00

What’s the opinion on libraries reaching into META-INF at runtime like here: https://github.com/drewr/postal/blob/master/src/postal/support.clj#L58-L62

drewr17:08:39

@martinklepsch: I don't even remember writing that; I handle it now with a dedicated file in the classpath with other projects

drewr17:08:46

I should update postal to do the same

joelkuiper21:08:14

Just released 0.1 of YeSPARQL, a YeSQL inspired SPARQL library https://github.com/joelkuiper/yesparql

joelkuiper21:08:28

it’s my very first deploy in Clojars, so hopefully it’ll be useful to somebody simple_smile

honza23:08:12

Any thoughts on how I can make an infinite sequence into a core.async channel?

rauh23:08:12

@honza: onto-chan should work. Just make sure you use a blocking buffer or you'll have a bad time

honza23:08:04

@rauh ah, nice, thanks!