Fork me on GitHub
#off-topic
<
2017-10-17
>
qqq03:10:11

1. I'm calling scala-mxnet from Clojure. 2. I get an error of:

1. Caused by java.lang.UnsatisfiedLinkError
   /tmp/mxnet546677132577007453/mxnet-scala: libcudart.so.7.0: cannot
   open shared object file: No such file or directory


3. I have /usr/local/cuda-7.0/targets/x86_64-linux/lib in LD_LIBRARY_PATH, and that directory contains libcudart.so.7 4. How do I begin to debug this issue?

noisesmith15:10:46

what does ldd tell you about that shared library file? does it have any transitive linkage that’s missing on your local? maybe it’s built against the wrong libc?

bherrmann11:10:59

@borkdude I've heard this is a possible webdriver replacement which is begin maintained https://github.com/igrishaev/etaoin

borkdude11:10:13

@bherrmann I’m trying it out as we speak.

Rachel Westmacott12:10:11

@borkdude I’ve recently switched to running a docker image with selenium in it (`selenium/standalone-chrome-debug`), and connecting using a org.openqa.selenium.remote.RemoteWebDriver

Rachel Westmacott12:10:20

(though etaoin looks pretty good)

souenzzo12:10:04

if I want to interact with with filesystem. What are the options?

schmee14:10:12

I usually write my own tiny wrappers around the Java stuff I need

borkdude14:10:43

@souenzzo do you mean in clojure?

souenzzo15:10:43

Not sure if it's the usercase... In my application, I need to store user's files and sometimes run commands over these files (git) I'm looking for something like hadoop. But hadoop may be "too big" and I'm not sure if it allow's me to run commands...