This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-05-22
Channels
- # announcements (2)
- # aws (5)
- # babashka (17)
- # beginners (108)
- # calva (28)
- # chlorine-clover (7)
- # clj-kondo (14)
- # cljs-dev (9)
- # cljsrn (2)
- # clojure (118)
- # clojure-europe (50)
- # clojure-finland (5)
- # clojure-france (15)
- # clojure-italy (9)
- # clojure-nl (14)
- # clojure-spec (11)
- # clojure-uk (43)
- # clojuredesign-podcast (1)
- # clojurescript (35)
- # clojutre (2)
- # clr (3)
- # community-development (6)
- # conjure (9)
- # core-async (41)
- # cursive (7)
- # data-science (7)
- # datomic (11)
- # events (1)
- # figwheel-main (4)
- # fulcro (20)
- # ghostwheel (9)
- # graalvm (18)
- # helix (46)
- # leiningen (14)
- # observability (2)
- # off-topic (23)
- # pathom (4)
- # re-frame (5)
- # reitit (5)
- # rum (2)
- # shadow-cljs (32)
- # spacemacs (8)
- # specter (5)
- # sql (36)
- # timbre (3)
- # vim (15)
- # xtdb (2)
- # yada (2)
sortation
is a new word on me
(And Vivaldi cature area to clipboard will capture the entire page to clipboard)
@glfinn83 @dharrigan - Puppet are possibly the only ones in Belfast using it.
I think it will realise the input sequence before it starts returning results
yeah it creates arrays all over the place
well, what is it you have to do?
and what might be unmanageably large?
just pick a randome number, drop that many and take the next value?
create a smallish in-memory vector, and then shuffle that? maybe
its a rabbit hole you can spend your whole life in if you're not careful
I’ve got a simulation running, I’m really trying to work out how to balance working with/manipulate it while keeping it fast. One problem is pulling/sampling out a bunch of candidates that fit various properties =)…
if you use IReduceInit (or loop/recur), you are less likely to fall foul of unwanted head-retention
or plain old java.util.Iterate
how long does it take to reach the ISS from the launchpad?
30 mins?
dont they have 'Docking Computers'
even Elite had those
~ 6hours or so
dunno maybe they are faster now
in the simulator settings there is an option to set Earth as flat 😂
Hmm, maybe I can use random-sample
’s approach, except sample at 2 or 3x the prob I want to retrieve and then take, should only really require me to walk the collection once in the average case as well? IE, filter with rand prob, and if I work with indexes, I can defer retrieval as much as possible 😃