Oleksii Kachaiev

Results 107 comments of Oleksii Kachaiev

Well... I can reproduce this, but it's kinda weird. Thanks for catching! To deal with the issue until I find the solution, you can provide `:address-types` explicitly. I.e this works:...

Submitted a PR with a fix. Once again, thanks for catching!

I've been thinking about `cancelled?` not in terms of another `realized?` predicated but mostly as a way for the user to distinguish error from cancellation: let's say I want to...

@prepor This one? ```clojure (-> (deferred/chain (deferred/chain (deferred/future (Thread/sleep 2000)) (fn [_] (prn "----FINISH") :finished)) (fn [_] :finished)) (deferred/timeout! 1000) (deref)) ``` In this example printing of `"FINISH"` is expected...

@ztellman Initially this code used fixed pool executor resized to the num of cores. `num-cores` variable is still [there](https://github.com/ztellman/manifold/blob/c6217cbe35fda82f120ee6fcef3a48bfc9ca7202/src/manifold/time.clj#L203), even tho' it's not used right now. What was the reason...

@joeltio I've tried a few different versions of your code but it seems I cannot reproduce the issue with it. It works fine from the first glance. @gsnewmark Regarding your...

@joeltio > My bad, I just tried it and it didn't work too. No problem! ```@(t/in 2000 #(do (println "hello") @(s/try-take! (s/stream) 1000))) ``` That's exactly the same problem @gsnewmark...

Oh, that's a really good point! Should this be a part of the environment setting, like a random placement of opponents? It should be simple to add, just need to...

Hey! More thoughts on the topic as I'm working with evaluation code. It seems like we rely on an assumption that is not as obvious I thought before, and probably...

There's another problem with the way TrueSkill is used for evaluation right now: the result depends on the order of matches. Especially when we only have a handful of updates...