Re: [ANN] expresso 0.1.0 released

2013-08-30 Thread David Nolen
On Fri, Aug 30, 2013 at 11:00 AM, Maik Schünemann wrote: > I also think having expresso in clojurescript would be a cool think > and I am willing to make a port after the gsoc period. > Cool. > Do you know any good js or clojurescript (matrix) mathematical library > which clojurescript express

Re: [ANN] expresso 0.1.0 released

2013-08-30 Thread Maik Schünemann
I also think having expresso in clojurescript would be a cool think and I am willing to make a port after the gsoc period. Do you know any good js or clojurescript (matrix) mathematical library which clojurescript expresso could use ? (loud thinking) maybe clojurescript would also benefit of havin

Re: [ANN] expresso 0.1.0 released

2013-08-30 Thread David Nolen
While the runtime optimizations are cool, I think ClojureScript could benefit from just having compile time optimized expressions. Mostly thinking about the applicability for certain interactive applications and games. On Fri, Aug 30, 2013 at 3:45 AM, Maik Schünemann wrote: > Hi David, > The cor

Re: [ANN] expresso 0.1.0 released

2013-08-30 Thread Shantanu Kumar
Hi Maik, On Friday, 30 August 2013 15:04:03 UTC+5:30, Maik Schünemann wrote: > > Hi, > > > Not sure if it suits your needs, but I've been working on a simple > > S-expression evaluation library that works in Clojure and ClojureScript: > > https://github.com/kumarshantanu/quiddity > > > quiddi

Re: [ANN] expresso 0.1.0 released

2013-08-30 Thread Maik Schünemann
Hi, > Not sure if it suits your needs, but I've been working on a simple > S-expression evaluation library that works in Clojure and ClojureScript: > https://github.com/kumarshantanu/quiddity > quiddity looks interesting. From what I read at the github page, creating functions (which is the requir

Re: [ANN] expresso 0.1.0 released

2013-08-30 Thread Shantanu Kumar
> 2.) compiling optimized expressions to functions at runtime: > In clojure I managed to compile optimized expressions to optimized > code at runtime through a code-emitting protocol and a call to eval to > create the function. Without eval in clojurescript this couldn't be > done easily. Wit

Re: [ANN] expresso 0.1.0 released

2013-08-30 Thread Maik Schünemann
Hi David, The core of expresso wouldn't be much work to port to clojurescript. The rule based translator is built on top of core.logic, so porting that should be straightforward. Also the manipulation routines are very much purely algorithmic so should work without much trouble in clojurescript. T

Re: [ANN] expresso 0.1.0 released

2013-08-29 Thread David Nolen
Very cool stuff :) How much work would it take for this to work with ClojureScript? David On Mon, Aug 26, 2013 at 4:47 AM, Maik Schünemann wrote: > Hi, > I released a first version of my gsoc project expresso [1]. > This is an important Milestone in my gsoc project. > What is there: > an expres

[ANN] expresso 0.1.0 released

2013-08-26 Thread Maik Schünemann
Hi, I released a first version of my gsoc project expresso [1]. This is an important Milestone in my gsoc project. What is there: an expressive and powerful rule based translator, on top of which many transformations can be based. functions to simplify (currently without ratio test), differentiat