Re: [ClojureScript] [ANN] thi,ng/geom 0.0.856 (new dataviz module)

2015-06-14 Thread Karsten Schmidt
Hi Marc, thanks - but re: transitions - actually, not really. This module is intended to only do the actual mapping/visualization step in a longer pipeline. That is, you're responsible to provide a visualization spec with all elements & data pre-configured and this module will simply transform/vis

Re: [ClojureScript] [ANN] thi,ng/geom 0.0.856 (new dataviz module)

2015-06-14 Thread Bruce Durling
Karsten, Great stuff. I'll have a look. cheers, Bruce On Sun, Jun 14, 2015 at 1:01 AM, Karsten Schmidt wrote: > Hi all, > > a new release of thi.ng/geom has just been pushed - now with the > beginnings of a new clj & cljs data visualization module, currently > supporting: > > - 7 layout/chart m

Re: [ClojureScript] [ANN] thi,ng/geom 0.0.856 (new dataviz module)

2015-06-14 Thread Marc Fawzi
I totally trust your judgement. It could be flawed thinking on my part but in D3 the generators for scale, svg line, stacked area, etc generate data (configured by D3's related methods) which we can then translate to canvas or webgl and before that we can put into the app state structure. So the

Re: [ClojureScript] [ANN] thi,ng/geom 0.0.856 (new dataviz module)

2015-06-14 Thread Marc Fawzi
<< Have not yet played with transitions to see if I can get tweened style strings out of them and convert but i cringe at the performance hit. >> Just remembered attrTween and styleTween do allow that very easily and output the tweened style/attribute string, so that is possible too But in ay cas

[ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-14 Thread Dragan Djuric
I am pleased to announce a first public release of new* OpenCL 2.0 *Clojure library - ClojureCL Very detailed *documentation* at http://clojurecl.uncomplicate.org and API at http://clojurecl.uncomplicate.org/codox/ Lots of learning examples

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-14 Thread Karsten Schmidt
Hi Dragan, this looks great & will check it out ASAP! Just one question about your OSX note - for http://thi.ng/simplecl (also based on JOCL) I didn't have to jump through extra hoops for OSX, since JOCL also includes all mac binaries... All I needed to do was set :native-preset to empty (https://g

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-14 Thread Karsten Schmidt
Ahhh... scrap my previous question - yet another unfortunate naming clash: You're using JOCL from jocl.org - I've been using JOCL from http://jogamp.org/jocl/www/ - only the latter includes a whole range of natives for *nix/Win/OSX/ARM/Android... So then my alternative question would be what made y

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-14 Thread Dragan Djuric
OSX note: there are two JOCLs: * Jogamp (which does not support OpenCl 2..0, but only 1.1) uses (slow) JNA that does not need separate compilation. * ClojureCL uses a new version of jocl.org, which is a hand written JNI and needs to be compiled for each platform. The version supporting OpenCL 2.0

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-14 Thread Dragan Djuric
Jogamp is stale, and does not provide low-level support. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first

Re: [ANN] ClojureCL - OpenCL 2.0 Clojure library (GPGPU and high performance parallel computing)

2015-06-14 Thread Dragan Djuric
Just to clarify: JOCL.org also does not demand jumping extra hoops for OSX: their previous version (0.1.9) comes with OSX binaries and works out of the box. It is only a question of time when the author is going to receive the binaries and put the in the distribution jar in maven central reposit

Re: Boot: How to run with the clojure version declared in the :dependencies?

2015-06-14 Thread Juho Teperi
I have tried to describe how to set Clojure version with Boot here: https://github.com/boot-clj/boot/wiki/Setting-Clojure-version It should also explain why the duplication is required. On Saturday, June 13, 2015 at 3:08:17 AM UTC+3, Tassilo Horn wrote: > > Hi all, > > I'm toying around with bo

[new] GNU emacs settings for clojure ?

2015-06-14 Thread Xavier
Hello, I am new to clojure (which I really appreciate). I am stuck with GNU emacs for all the stuff I do and I cannot find something. I am playing with Composure, starting it using lein (ring server). Is there any possibility to do this directly via cider ? If not, how can I "connect" to it ?

Re: [new] GNU emacs settings for clojure ?

2015-06-14 Thread Matching Socks
The ring-server page (https://github.com/weavejester/ring-server) appears to give an example of starting the server in a REPL: (use 'ring.server.standalone) (serve your-handler) The page also mentions an option, :join? false, that you might need if you want to continue using the REPL while the

[ANN] honeysql now available from Clojurescript

2015-06-14 Thread Michael Blume
Using reader conditionals, I've put up an experimental branch of honeysql which seems to work just fine from both Clojure and Clojurescript. If you need to generate SQL from your Node service, please try it out. https://github.com/michaelblume/honeysql/tree/rcond Will update soon with my experien

Re: [new] GNU emacs settings for clojure ?

2015-06-14 Thread Jason Lewis
M-x package-install cider should give you a better time. One is never "stuck" with emacs; one is privileged to enjoy it. On Sun, Jun 14, 2015, 18:01 Xavier wrote: > Hello, > > I am new to clojure (which I really appreciate). I am stuck with GNU > emacs for all the stuff I do and I cannot find s