This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-06-23
Channels
- # announcements (16)
- # asami (4)
- # babashka (49)
- # beginners (70)
- # calva (25)
- # clojars (3)
- # clojure (40)
- # clojure-europe (82)
- # clojure-france (15)
- # clojure-gamedev (16)
- # clojure-nl (2)
- # clojured (7)
- # clojurescript (13)
- # conjure (11)
- # cursive (4)
- # data-science (12)
- # datalevin (2)
- # figwheel-main (5)
- # gratitude (5)
- # honeysql (5)
- # hyperfiddle (4)
- # jobs (4)
- # joyride (3)
- # lsp (10)
- # malli (2)
- # missionary (14)
- # nbb (2)
- # off-topic (3)
- # pathom (16)
- # rdf (5)
- # releases (4)
- # sci (35)
- # shadow-cljs (16)
- # tools-deps (22)
- # xtdb (7)
hmm...so I'm trying to get pathom-viz to work on Ubuntu 22.04 with a nvidia gtx 1060 card and receive the following:
─➤ pathom-viz
APPIMAGE env is not defined, current application is not an AppImage
INFO [com.wsscode.node-ws-server:136] - Websocket Server Listening on port 8240
INFO [com.wsscode.node-ws-server:75] - Starting express
[999214:0623/160854.477193:FATAL:(415)] GPU process isn't usable. Goodbye.
[1] 999214 trace trap (core dumped) pathom-viz
─➤
I'm not familiar with the Ubuntu setup, but looking for generic Electron issues (which Pathom Viz uses) I found this: https://github.com/ebkr/r2modmanPlus/issues/735
after some digging it seems that the vaapi which pathom-viz is using (?) is not entirely supported on nvidia cards...has anybody run pathom-wiz on an nvidia card?
you the man! : ) Thank you, the --no-sandbox
switch seems to fix the issue and get the UI up and running
cool, glad to hear it works 🙂
and thank you for a new way of dealing with data requirements on the client, just watching your "Data Navigation with Pathom 3" video and it's a bit of an eye opener
hope so, let me know if you have any hiccups in the process
um...since you seem to be online...I know I saw this somewhere and apologies for a newbie question, but given that I have say two resolvers person-resolver
and film-resolver
, how do I tell pathom that the items in a collection :person/films [1 2]
are actually the entities returned by (film-resolver {:film/id 1})
?
no dummy questions 🙂
in this case, the trick is to make each entity a map instead of just the number, so instead of :person/films [1 2]
you use :person/films [{:film/id 1} {:film/id 2}]
because the data itself is the context for further processing