This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2020-05-14
Channels
- # announcements (3)
- # aws (7)
- # babashka (108)
- # beginners (222)
- # bristol-clojurians (3)
- # calva (8)
- # chlorine-clover (1)
- # cider (14)
- # clj-kondo (4)
- # cljdoc (6)
- # cljs-dev (89)
- # cljsrn (13)
- # clojars (6)
- # clojure (89)
- # clojure-australia (1)
- # clojure-europe (11)
- # clojure-italy (9)
- # clojure-losangeles (11)
- # clojure-nl (6)
- # clojure-spec (2)
- # clojure-sweden (1)
- # clojure-uk (9)
- # clojurescript (47)
- # conjure (18)
- # datomic (7)
- # docker (1)
- # figwheel (43)
- # figwheel-main (2)
- # fulcro (31)
- # kaocha (3)
- # leiningen (7)
- # luminus (2)
- # nrepl (14)
- # off-topic (24)
- # pathom (5)
- # pedestal (5)
- # rdf (4)
- # re-frame (49)
- # reagent (12)
- # reitit (9)
- # rum (21)
- # shadow-cljs (109)
- # tools-deps (35)
- # vim (8)
- # wasm (1)
If you need to do Sign In With Apple on iOS, I put together a CLJS library for doing so that rewraps the native bindings: https://github.com/joshuamiller/rn-cljs-apple-authentication
@joshmiller nice, it's great to see reusable libs for RN!
fixed up some more ugly Krell Android bugs, also if you combine -c -r
the REPL will now know about everything that was part of the build so direct use of in-ns
works
I am trying to use an npm module with Krell which is exported in ES6 format export default Bluetoothserial;
How am i supposed to require that Object? with re-natal i did it like this: (def Bts (.-default (js/require "react-native-bluetooth-serial-next")))
but this does not seem to work with Krell. If i (:require [react-native-bluetooth-serial-next :as bts])
and then try to access it bts/default
i get nil back. And thx for the nice work with Krell
With the latest Krell master, a bare test project based on the tutorial on the wiki is pegging the JVM at 100% of one core while connected to the REPL.
(No emacs/nrepl/anything else, just clj -m krell.repl -co build.edn -c -r
)
Discovered on my actual project, then verified on the bare project.
Anybody else? I’m looking to see if I can profile it.
Yep, I see the java process sitting on 100% on my mac. Test done with reagent-tutorial and latest commit sha
Same with krell sha from tutorial.
Given that it's using 1 of 8 cores I hadn't noticed.