Sam Ritchie
Sam Ritchie
@hamelsmu also please let me know if you run into any trouble, or have any more questions. Awesome that you're giving Caliban a try.
@eschnett ah, nice find. Another workaround would be to move your files out of the top level directory; by default, Caliban only includes the folder containing the script you've passed...
Also, we're close to removing the `--nogpu` requirement, by - making `--nogpu` the default - allowing you to set a sticky default for your own machine, - and allowing you...
@eschnett almost - instead of: ``` root_folder/Cactus/.... root_folder/run-einsteintoolkit.sh #command: caliban cluster job submit ./run-einsteintoolkit.sh ``` do this: ``` root_folder/Cactus/.... root_folder/bin/run-einsteintoolkit.sh #command: caliban cluster job submit -d Cactus bin/run-einsteintoolkit.sh ``` I...
Yup, it's implicit (and implicitly required) since Docker can only see folders from root on up. Nothing below the folder where you run the command is visible, for security and...
@eschnett yes, this is a real problem for a few reasons... we have a place where sometimes we need credentials before ANY dependencies, so we can get private deps. But...
I've looked more into this, and it won't work to do what I've done in the PR! That's because you need to run `jupter lab build` after you change the...
Hey @sloshy , I haven't touched the ScalaRL project in a while, but once I do I'll give this a try!
Awesome. We have a json injection for thrift here that we could use as a model: https://github.com/twitter/bijection/blob/develop/bijection-thrift/src/main/scala/com/twitter/bijection/thrift/ThriftCodecs.scala#L85 Should be fairly short. Want to take this one on?
We've got a pretty nice approximate sliding window implementation here: http://twitter.github.io/algebird/datatypes/approx/exponential_histogram.html This might help!