This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-06-14
Channels
- # aws (6)
- # babashka (31)
- # beginners (69)
- # biff (9)
- # boot (9)
- # bristol-clojurians (1)
- # calva (20)
- # chlorine-clover (2)
- # cider (8)
- # cljsrn (24)
- # clojure (25)
- # clojure-norway (4)
- # clojure-spec (29)
- # clojure-uk (7)
- # conjure (23)
- # datahike (5)
- # datomic (39)
- # emacs (4)
- # fulcro (4)
- # graalvm (11)
- # honeysql (1)
- # lambdaisland (1)
- # leiningen (8)
- # liberator (1)
- # libpython-clj (3)
- # malli (6)
- # mxnet (1)
- # off-topic (94)
- # pedestal (13)
- # re-frame (4)
- # releases (2)
- # shadow-cljs (8)
- # spacemacs (22)
- # sql (9)
- # vim (1)
hi all, I don't use C-b, C-f, C-p, C-n for cursor movements. I want to use them for expression evaluations. Did anyone try that. Does it break anything else?
@dominicm so I’ve been thinking a bit more about this and speaking to some others (https://clojurians.slack.com/archives/C03S1KBA2/p1592006256244700), it seems scaling this the way we’ve been discussing is not straightforward… The ants system as designed is limited by the system thread count. I’ve been wondering if something more threadpool like is the way to go? I’ve not used core.async directly myself, so perhaps this is another way to do this? The model I’m thinking is splitting my design into two parts, agents and systems, the agents are basically ant-like things, ie individual entities that need to be modelled and the systems are the larger scale things that operate on the world the equivalent of pheromones in the ant model, in my case it would be things like running the markets to adjust pricing etc… So that to me says either a single threadpool for each group or two pools one for each type?