This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-02-10
Channels
- # aatree (4)
- # admin-announcements (1)
- # beginners (62)
- # boot (279)
- # business (14)
- # cider (1)
- # cljsrn (3)
- # clojure (88)
- # clojure-czech (3)
- # clojure-madison (2)
- # clojure-poland (117)
- # clojure-russia (74)
- # clojurescript (168)
- # core-async (8)
- # css (6)
- # datavis (39)
- # datomic (67)
- # devcards (2)
- # dirac (1)
- # editors (9)
- # emacs (13)
- # events (2)
- # hoplon (2)
- # jobs (9)
- # ldnclj (38)
- # lein-figwheel (9)
- # leiningen (7)
- # luminus (4)
- # off-topic (77)
- # om (114)
- # omnext (1)
- # onyx (221)
- # parinfer (10)
- # portland-or (5)
- # proton (3)
- # re-frame (24)
- # reagent (14)
- # ring-swagger (13)
@stathissideris: can dali render in realtime, in a window, somewhat reminiscent of web svg element?
@nooga: haven't tried it, I suspect it way be a bit slow. I'm planning to make an Cljs version soon(ish) which will be fast enough for real time stuff
what's your use case?
I like using web svg w/ reagent in cljs but if I wanted a desktop app, this would mean bringing webkit in
if you're going in that direction, maybe bringing webkit in is not so bad (since it's part of the JDK anyway). If you used dali to do it, you would have to rasterize every frame, and then you'd have to keep track of regions to detect clicks etc yourself
if you have a DOM, that's taken care of for you
so what's your experience with svg+reagent? it's very relevant to me for the cljs version
I mostly write simple components that render svg tags, mount everything onto a single <svg> and it just seems to work, there are some caveats with visibility and mouse events handling. Mostly text and simple shapes though - never actually tried drawing complex paths etc. as it would require generating strings and I’m too lazy for that
well, with dali-cljs you wont have to anymore!
I just need to find some time to do it
writing all that documentation has exhausted me
thanks
@nooga: the best example I have is this (and it should probably be in the front page): https://github.com/stathissideris/dali/blob/master/examples/output/architecture.svg
that's the most complex thing I've done with dali
yeha, looks impressive and shows things like :dali/align
which I’d love to have in web svg... vide knobs in http://83.136.254.164:3000/index.html
@nooga: https://github.com/stathissideris/dali/blob/master/examples/output/surround.svg
looks similar
cool project btw
and cool monty python reference
oh nice! I didn't follow that very closely
who was 1st?
@pesterhazy and friends with interactive Quil tutorial, very impressive
TMTGP uses web audio for realtime synthesis and we want to write more music software that’s for desktop and uses faster DSP than the web one. Eyecandy is the main problem though :K
@nooga: use seesaw (which is swing), this book will tell you how to make it look good: http://filthyrichclients.org/
swing can look amazing (if you override renderers etc)