reveal

Docs: https://vlaaad.github.io/reveal/ Source: https://github.com/vlaaad/reveal
vlaaad 2020-12-05T07:14:39.294200Z

Ah, you don't want string IN the table, you want it INSTEAD OF the table

vlaaad 2020-12-05T07:16:23.294400Z

Then you should use {:fx/type rx/value-view :value (rx/stream-as-is ...)}

seancorfield 2020-12-05T07:51:23.294700Z

Argh! Somehow that was about the only combination I hadn't tried! Perfect! Checkout https://github.com/seancorfield/dot-clojure/blob/develop/dev.clj#L25-L27

2020-12-05T13:13:38.295500Z

I was trying reveal on Arch but I also get this error https://github.com/vlaaad/reveal/issues/5

2020-12-05T13:13:52.296100Z

I installed the javafx package as well

2020-12-05T13:14:07.296800Z

anyone else using arch with reveal?

dharrigan 2020-12-05T14:00:42.297300Z

I do

dharrigan 2020-12-05T14:00:48.297500Z

Iā€™m a dedicated archer šŸ™‚

dharrigan 2020-12-05T14:01:01.297700Z

What version of Java are you using?

vlaaad 2020-12-05T16:22:00.297900Z

That doesn't sound right, if you are on jdk 8, it should be a part of a jdk, not a separate installable component. If you are on jdk 11, it should be pulled in from maven as a regular dependency

2020-12-05T17:58:23.298100Z

Mm weird I'm on 11

vlaaad 2020-12-05T20:27:41.298300Z

Awesome, I love it! For every evaluation you automatically see value's meta and, if appropriate, documentation!

seancorfield 2020-12-05T20:45:55.298500Z

I just added code to automatically render <http://java.net|java.net>.URL's inline as web views -- like REBL does -- so that I can use ctrl-; j and ctrl-; ? (from my Atom/Chlorine or VS Code/Clover setup) and have Javadocs or Clojuredocs displayed automatically for types or symbols, respectively.

seancorfield 2020-12-05T20:46:53.299400Z

For anyone using my dot-clojure repo, I've documented the :dev alias and all the things it adds for Reveal: https://github.com/seancorfield/dot-clojure#the-dev-alias

1šŸ¦œ
vlaaad 2020-12-05T20:54:17.299600Z

seeing it here https://github.com/seancorfield/dot-clojure/blob/develop/dev.clj#L66-L68 šŸ™‚

2020-12-05T21:04:47.300200Z

mm yeah weird it works with opendjdk8 but not with openjdk11

practicalli-john 2020-12-06T10:34:37.306500Z

cljfx recommends Java 11 as Java FX is outdated / can cause crashes on Java 8

1šŸ’Æ
vlaaad 2020-12-05T22:22:05.301100Z

Do you use clj ? You need to clear the .cpcache after you change the JDK, otherwise JavaFX dependency won't be pulled in

2020-12-05T22:51:28.301300Z

ahhh nice clearing the cache fixed it

2020-12-05T22:51:34.301500Z

first time I ever have to do that šŸ˜„ thanks