[ClojureScript] Re: How to require a library only if it is on the classpath?

2019-02-08 Thread Christopher Small
I realize this doesn't directly answer you're problem, as you're asking about how you might do this in ClojureScript, but you may still be interested to take a look at https://github.com/clojure-goes-fast/lazy-require If you figure out a solution, it could be helpful for that library to have

[ClojureScript] [ANN] Oz 1.4.0 - Interactive data visualizations and scientific documents with Vega/Vega-Lite

2018-12-17 Thread Christopher Small
Greetings! I'm happy to announce today the release of Oz 1.4.0. https://github.com/metasoarous/oz If you're on the Slack #datascience channel, you may have already caught wind of some earlier versions. But in the interest of introducing it more broadly, I'm posting an overview here for those

[ClojureScript] Re: TDD + figwheel + desktop notifications

2017-12-04 Thread Christopher Small
FWIW, I think the criticism around TDD in the Clojure(script) community is not so much that testing first is bad, but that writing tests without first thinking through and understanding your problem is bad. I think some have extended this to a blanket "TDD bad!" battlecry, but this I think misse

Re: [ClojureScript] Re: How do you use GraphQL with Clojurescript?

2017-07-05 Thread Christopher Small
; Om(next), which sounds very interesting. I think that I'll have to dig in > and play with it before things really start to click. I'm sure I'll have > many more questions once I get a better handle on Clojurescript approach. > > Thanks Again!! > -- Nick > >

Re: [ClojureScript] Re: How do you use GraphQL with Clojurescript?

2017-07-01 Thread Christopher Small
Hi Nick I'll try not to get carried away here... First off, folks in the Clojure and ClojureScript communities are absolutely familiar with, inspired by, and building on top of or in the direction of GraphQL. David Nolen, the author of Om and the lead ClojureScript developer, has build om-next

[ClojureScript] Re: Having trouble with Japanese text input that reads values from a reagent atom

2016-08-06 Thread Christopher Small
You may want to take a look at the re-com input helpers. They are set to fire not on each keystroke, but once you either leave focus or hit enter. That might work out for you. You could either use the re-com helpers, or look at the source to see what event handlers they use. -- Note that posts

[ClojureScript] Re: Preparing proposal for presentation on replikativ

2016-08-02 Thread Christopher Small
Hi Christian Would love to see this talk (embarrassed I still haven't watched the video you posted in Gitter though...). As you'd suspect, I'm definitely like to see a good bit on DataScript/Datomic. Aside from that, I think a good focus on the strengths and weakness (/challenges/work-to-be-do

[ClojureScript] [ANN] Datsync: Datomic <-> DataScript syncing utilities

2016-05-04 Thread Christopher Small
Greetings I'm happy to announce an early SNAPSHOT release of Datsync, a Clojure(script) library for syncing Datomic and DataScript databases. Github: https://github.com/metasoarous/datsync Coordinates: [datsync "0.1.0-SNAPSHOT"] The library is built around a small handful of functions for transl

Re: [ClojureScript] Re: re-frame why only 1 handler per [:some-event-id]?

2016-03-29 Thread Christopher Small
Great conversation; I'll just add that I think it's a pretty fundamental part of re-frame (as I see it, thinking about the "materialized views all the way down | derived data all the way down | streams everywhere | however you want to sell it" approach that is behind re-frame and samza) that there

[ClojureScript] Re: re-frame why only 1 handler per [:some-event-id]?

2016-03-29 Thread Christopher Small
There's a whole section in the wiki dealing with more custom handling, routing, etc: https://github.com/Day8/re-frame/wiki/Alternative-dispatch,-routing-&-handling That should help. On Monday, March 28, 2016 at 1:13:39 PM UTC-7, Luke Horton wrote: > Why does the re-frame framework restrict a

[ClojureScript] Re: ANN replikativ 0.1.0 - strong eventual consistent P2P replication for clj and cljs

2016-01-22 Thread Christopher Small
Can you listen for changes on a server store? Also, have you developed a mechanism for just sharing parts of a distributed data structure? Chris On Tuesday, January 19, 2016 at 12:28:28 PM UTC-8, Christian Weilbach wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hello, > >

Re: [ClojureScript] Pdf Generation with Clojurescript

2015-12-23 Thread Christopher Small
On Wednesday, December 23, 2015 at 8:59:08 AM UTC-7, Chris Murphy wrote: > There is a library from an earlier version of iText: > https://github.com/yogthos/clj-pdf > > This is an example using a more recent (commercial) version of iText: > https://github.com/chrismurrph/example-itext-pdf-report >