This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-04-27
Channels
- # announcements (9)
- # aws (1)
- # aws-lambda (12)
- # babashka (18)
- # beginners (37)
- # calva (27)
- # clerk (15)
- # clojure (16)
- # clojure-conj (13)
- # clojure-europe (44)
- # clojure-germany (3)
- # clojure-norway (27)
- # clojure-uk (1)
- # cursive (6)
- # data-science (24)
- # datahike (7)
- # datomic (40)
- # fulcro (5)
- # hoplon (33)
- # hyperfiddle (9)
- # introduce-yourself (6)
- # jobs (1)
- # lsp (22)
- # nbb (2)
- # off-topic (15)
- # pathom (37)
- # pedestal (3)
- # polylith (7)
- # portal (1)
- # re-frame (7)
- # releases (1)
- # remote-jobs (1)
- # rewrite-clj (6)
- # sci (1)
- # scittle (1)
- # xtdb (7)
Anyone else having trouble with the streaming access? The http://vi.to link gives me 404 across two browsers (tried safari after firefox) after logging in with the code at the same email I signed up with
If anyone else hits this, I needed to accept the invite sent directly by Vito first before it would show anything at that URL.
Am I able to see recordings of talks with a streaming ticket - or is it live only?
we will put some of the raw video content in vito on delay
@chris441 I don't see you on the Discord server, so I'll leave this here: This was a fantastic talk: a lot of details, I'll probably watch it again. I'm especially interested in the PushbackReader optimization myself and I hope some of these insights will end up in clojure proper.
Hey - thanks a lot - I have heard from people here that high performance read/write for Edn data is useful — is that where you are coming from? What are you using pushbackreader for?
@chris441 pushbackreader is used for reading clojure code which for babashka means better startup time for bigger projects, if I can speed that up
For sure you can according to my tests - so a faster lisp reader for Clojure code is what you want. Are you using your own parser or are you using Clojure.lang.lispreader?
@chris441 I am using my own layer on top of clojure.tools.reader.edn
So if we could speed up clojure.tools.reader.*
everyone would profit I think
https://github.com/borkdude/edamame but I think there's also a protocol in clojure.tools.reader.reader-types that you could implement in which the optimization could perhaps be done
You cannot rewind the stream can you?