Ivar Refsdal

Results 35 comments of Ivar Refsdal

Thanks for the quick reply @stepchowfun and suggested fix! I suppose logging in using `su` overrides the PATH variable (but inhertis others like you say). Would it be possible to...

Update: I have the exact same issue with a java TCP server. It seems this is some kind of firewall issue of sorts. Apparently Windows is strict on loopback access...

Thanks for the thoughtful response @vemv ! > For instance, how do you guarantee that users will specify :replace-deps instead of :extra-deps? Same for :replace-paths. The deps.edn file can be...

I'll make a separate post as I've learned more about tools.deps today (thanks to a colleague). First it seems that `-T` also supports `:exec-fn` in an alias. I have not...

PS: If it's decided that it's OK to include tools.deps, it is also possible to print a dependency tree with highlighted problematic dependencies. I've done some work in that direction...

@Oro Thanks! Works here as well (same setup as you, boot2docker and MacOS). I also did a boot2docker destroy and boot2docker init to reclaim disk space.

> Do you think that's close to the total number of 2 star repositories? Yes, that's close to it, re-running it now gives 4477. There is one theoretical bug in...

I'm getting about ~30 repos/second: ```clojure (defn find-clojure-repos [] (iteration (with-retries (fn [{:keys [start-time cnt url pushed_at last-response] :as k}] (prn cnt (select-keys k [:url :pushed_at])) (let [start-time (or start-time...

I suspect I wasn't being clear enough? I don't have an enterprise account. For me it was evaluating: ```clojure (def all-repos (vec (find-clojure-repos))) ``` that took 50 minutes. Does that...

Yes, I believe it does. Are you sure that `com.phronemophobic.dewey.util/auth` is a proper value? I noticed that `nil` is a legal value (and no warning will be printed). Here is...