This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-02-29
Channels
- # admin-announcements (6)
- # announcements (1)
- # beginners (1)
- # boot (104)
- # braid-chat (5)
- # cbus (1)
- # cider (2)
- # clojure (147)
- # clojure-japan (1)
- # clojure-poland (1)
- # clojure-russia (31)
- # clojurescript (16)
- # core-async (4)
- # css (2)
- # cursive (14)
- # datomic (40)
- # devcards (5)
- # dirac (100)
- # emacs (5)
- # funcool (1)
- # immutant (52)
- # juxt (4)
- # ldnclj (128)
- # lein-figwheel (12)
- # leiningen (26)
- # luminus (3)
- # mount (22)
- # off-topic (11)
- # om (144)
- # onyx (2)
- # parinfer (1)
- # proton (7)
- # re-frame (55)
- # reagent (16)
- # slack-help (5)
- # yada (1)
does anybody have experience with doing i18n in clojurescript? I'm building a re-frame/reagent application and would like to add localization to it
Is it possible to use a [.jsx file] (https://github.com/xiaolin/react-image-gallery/blob/master/src/ImageGallery.react.jsx) that makes import/export statements (i.e., ECMA 6) within clojurescript?
React Native and mobile apps are sooo 2015, now it's all about Virtual Reality! https://www.youtube.com/watch?v=ty2bFeOdGeI
https://medium.com/@clayallsopp/a-journey-to-virtual-reality-with-react-6e3b86140a63#.mc69a9swi
Celebrity JavaScript frameworks, is there anything they can’t do?!
For anyone interested or using #C07V8N22C please help out writing a basic API overview https://github.com/tonsky/datascript/wiki/API-overview
So, if anyone is interested in finally giving Boot + cljs a shot, I'd love to hear your feedback on this blog post! http://escherize.com/
hey all, what might cause that instead of a function, React sees a string with an hash, like this: “#"
I’m trying to pass a function to the onClick prop of a component created with adapt-react-class
Hey, I have an issue with a mixed java,clj,cljc project. Basically the cljsbuild system attempts to 'reload' the cljc files as clojure files but it doesn't get the classpath correct to include target/classes or it doesn't do the javac compilation step first; so everything actually compiles and completes but I get about 2000 lines of errors and stack traces dumped to the console.
root of the problem:
compiler.clj:114 cljsbuild.compiler/reload-clojure
compiler.clj:105 cljsbuild.compiler/reload-clojure
compiler.clj:162 cljsbuild.compiler/run-compiler
problem:
Reloading Clojure file "/cortex/wiring_test.cljc" failed.
clojure.lang.Compiler$CompilerException: java.lang.ClassNotFoundException: cortex.impl.ConvOps, compiling:(cortex/impl/layers.cljc:1:1)
Compiler.java:7391 clojure.lang.Compiler.load
RT.java:372 clojure.lang.RT.loadResourceScript
RT.java:363 clojure.lang.RT.loadResourceScript
RT.java:453 clojure.lang.RT.load
RT.java:419 clojure.lang.RT.load
ConvOps is a java class. Note this is a java.lang.ClassNotFoundException, not a clojurescript not found issue.
Nice post @escherize! I'd love to use Boot with cljs
chrisn: why would the cljs compiler see any reference to a java class while loading your cljc file?
I mean I am assuming the error isn't just that you forgot to put the reference to the class in a #?(:clj ...)
block