Ducky

Results 21 comments of Ducky

I am also experiencing this issue. ``` ➜ ~ elixir -v Erlang/OTP 18 [erts-7.2] [source] [64-bit] [smp:8:8] [async-threads:10] [kernel-poll:false] Elixir 1.2.0 ➜ ~ uname -a Linux developer-XPS-8700 3.19.0-32-generic #37~14.04.1-Ubuntu SMP...

Seems like I can't seem to reproduce this. So now my flex client doesn't seem to need the policy file. Weird. Cheers.

I'm got [some code](https://github.com/ducky427/cljs-deps) to recursively get dependencies for a given `(group, artifact, version)` tuple. I'm gonna expand on it in my free time. I've taken some inspiration from the...

All the async operations make the code slightly convoluted. But core.async atleast makes it possible without the callback hell. I should have something which lets you download all the dependencies...

good point. hmmm... btw, I maintain a leiningen template which creates all the scaffolding required for an electron project. It is [here](https://github.com/ducky427/electron-template). I've used it for a 10k+ loc project...

I've updated my code to be able to fetch all the dependencies for a give project and download them into a given folder.

sweet. obviously this downloading code can be improved but it is just a start. Currently I am only downloading the jar and not checking for signatures etc. I'd like to...

I can work around this issue by keeping a map of `{ ...}`. But it'll be nice to have that support as part of the graph.

Thanks a lot for your response. In the local context, for example inside a collection function, I think approach 2) would definitely work to get a mapping from `vertex-id` to...