Re: ANN: ClojureScript 0.0-3058, Enhanced REPLs, faster compile times

2015-03-10 Thread Max Gonzih
Amazing update! Yay. But I just spotted one weird thing, after I pumped compiler version compilation fails for me with following error: clojure.lang.ExceptionInfo: failed compiling file:public/javascripts/out-server-side/cljs/core.cljs {:file #File

Re: [ClojureScript] Re: ANN: ClojureScript 0.0-3058, Enhanced REPLs, faster compile times

2015-03-10 Thread David Nolen
Looks like you're trying to use :cache-analysis with a higher :optimizations setting than :none. I would avoid this for now. http://dev.clojure.org/jira/browse/CLJS-1103 David On Tue, Mar 10, 2015 at 6:07 AM, Max Gonzih gon...@gmail.com wrote: Amazing update! Yay. But I just spotted one

Re: [ANN] Reagent + Sente (+ Heroku) = Rente

2015-03-10 Thread Henrik Mohr
Rente has been upgraded to sente 1.4.0 (breaking change). Best, Henrik On Sunday, January 18, 2015 at 1:28:50 PM UTC+1, Henrik Mohr wrote: Hi guys, If you want a sample on how to make the newest versions of Reagent, Sente (for web sockets) work together, want figwheel for ease of

Re: [ClojureScript] Re: ANN: ClojureScript 0.0-3058, Enhanced REPLs, faster compile times

2015-03-10 Thread Chris McDevitt
On Tuesday, 10 March 2015 10:55:49 UTC, David Nolen wrote: Looks like you're trying to use :cache-analysis with a higher :optimizations setting than :none. I would avoid this for now. That fixed the same problem for me. Thanks. Also my cold compile time went down from 40s to 25s! Thanks,

ANN: ClojureScript 0.0-3058, Enhanced REPLs, faster compile times

2015-03-10 Thread David Nolen
Hopefully we can get that down 1s for anything except production builds. Next on the list of todos is a shared AOT cache for all projects builds. Once you've compiled a dependency from a JAR we should never compile it ever again. On Tue, Mar 10, 2015 at 9:11 AM, Chris McDevitt

Re: GSoC 2015 - Better Clojure/Android integration project discussion

2015-03-10 Thread Daniel Solano Gómez
Hello, On Tue Mar 10 01:30 2015, Devang Shah wrote: Hello Daniel Thank you for the quick response. Just to clarify and see if my understanding is correct. Please correct if I am wrong. On Sunday, March 8, 2015 at 10:35:57 PM UTC-7, Daniel Solano Gómez wrote: Hello, Thanks for

Re: [ClojureScript] Re: ANN: ClojureScript 0.0-3058, Enhanced REPLs, faster compile times

2015-03-10 Thread Max Gonzih
Thanks David, it solved my problem! -- 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 post. To unsubscribe

Re: [OT?] Best DB/architecture for n-gram corpus?

2015-03-10 Thread John Wiseman
By hard coding n-grams, do you mean using the simple string representation, e.g. aunt rhodie as the key in your database? If so, then maybe it helps to think of it from the perspective that it's not really just text, it's a string that encodes an n-gram just like [\aunt\, \rhodie\] is another way

Re: Could use a better error message here (using a list in update-in)

2015-03-10 Thread Stuart Sierra
Please file a ticket in JIRA and tag it with errormsg http://dev.clojure.org/display/community/Creating+Tickets –S On Tuesday, March 10, 2015 at 3:13:36 PM UTC, John Gabriele wrote: In Clojure v1.6.0. This one confused me when I'd accidentally passed a list in to `update-in` instead of a

Re: [OT?] Best DB/architecture for n-gram corpus?

2015-03-10 Thread Sam Raker
I more meant deciding on a maximum size and storing them qua ngrams--it seems limiting. On the other hand, after a certain size, they stop being ngrams and start being something else--texts, possibly. On Tuesday, March 10, 2015 at 1:29:44 PM UTC-4, John Wiseman wrote: By hard coding n-grams,

Re: Newify java class dynamically

2015-03-10 Thread Juvenn Woo
Good to know thee, thank you T T! — Sent from Mailbox On Mon, Mar 9, 2015 at 11:21 PM, Tassilo Horn t...@gnu.org wrote: Juvenn Woo mach...@gmail.com writes: I am writing a function that'll take a java class name as an arg, wherein I'll make instance of the class. Several approaches did I

Re: [ANN] Chestnut 0.7.0

2015-03-10 Thread Tim Gilbert
Oh, that's odd. I don't have any entries in my own user plugins for lein new templates. (I'm assuming you meant ~/.lein/profiles.clj, right?) Is there some reason you have them in there? lein new chestnut should work just fine without them, but maybe I'm not understanding what you're trying to

Re: ANN: ClojureScript 0.0-3058, Enhanced REPLs, faster compile times

2015-03-10 Thread Austin Haas
This is great, David! Is it difficult to include dependencies (e.g., core.async) for a project built this way? -- 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

Re: [GSoC] Mentors contact information

2015-03-10 Thread Daniel Solano Gómez
Hello, On Tue Mar 10 11:25 2015, Christopher Medrela wrote: Alex, Ambrose, thank you for quick answer. I'll contact you soon. I'm sorry for overlooking your mail, Ambrose. By the way, I can read at student application guidelines in project information section [1]: GSoC officially

Could use a better error message here (using a list in update-in)

2015-03-10 Thread John Gabriele
In Clojure v1.6.0. This one confused me when I'd accidentally passed a list in to `update-in` instead of a vector: ~~~ some-app.core= (update-in [:a :b :c] [1] name) [:a b :c] some-app.core= (update-in '(:a :b :c) [1] name) NullPointerException clojure.core/name (core.clj:1518) ~~~ -- You

Re: [OT?] Best DB/architecture for n-gram corpus?

2015-03-10 Thread Ray Miller
On 10 March 2015 at 20:03, Sam Raker sam.ra...@gmail.com wrote: That's honestly closer to what I was originally envisioning--I've never really looked into graph dbs before, but I'll check out Neo4j tonight. Do you know whether you can model multiple edges between the same nodes? Yes, certainly

ANN: Grafter 0.4.0 released

2015-03-10 Thread Rick Moynihan
Grafter 0.4.0 has been released to clojars! Grafter is a data processing API for transforming, cleaning and manipulating tabular data from tabular sources such as CSV and Excel; whilst also providing simple methods of converting tabular data into linked data through a simple graph mapping DSL.

Re: [OT?] Best DB/architecture for n-gram corpus?

2015-03-10 Thread Ray Miller
On 10 March 2015 at 17:58, Sam Raker sam.ra...@gmail.com wrote: I more meant deciding on a maximum size and storing them qua ngrams--it seems limiting. On the other hand, after a certain size, they stop being ngrams and start being something else--texts, possibly. Exactly. When I first read

Project fails to compile on different machines

2015-03-10 Thread Aaron France
Hi, I have a project (unfortunately private) that uses a lot of java interop to provide Java with a seemless java-like API. On one of my development machines I can compile the project fine, but the other not. Both are set up (what I think) in the same relevant ways. Here is output

Re: Project fails to compile on different machines

2015-03-10 Thread Aaron France
prred correctly? I've cleaned the maven cache on both machines completely. On Wed, 11 Mar 2015 at 00:26 Ivan L ivan.laza...@gmail.com wrote: seems like a clear classnotfound error to me. make sure both environments are building from a clean state (no build caches) and that your classes are

Project fails to compile on different machines

2015-03-10 Thread Ivan L
seems like a clear classnotfound error to me. make sure both environments are building from a clean state (no build caches) and that your classes are being prred correctly. -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send

Re: GSoC 2015 - Better Clojure/Android integration project discussion

2015-03-10 Thread Devang Shah
Hello Daniel Thank you for the quick response. Just to clarify and see if my understanding is correct. Please correct if I am wrong. On Sunday, March 8, 2015 at 10:35:57 PM UTC-7, Daniel Solano Gómez wrote: Hello, Thanks for your interest. On Sun Mar 8 17:17 2015, Devang Shah wrote:

Re: ANN: ClojureScript 0.0-3058, Enhanced REPLs, faster compile times

2015-03-10 Thread Robin Heggelund Hansen
It says analysis caching is enabled when optimizations is :none. Do we have to enable to explicitly on other optimization levels? tirsdag 10. mars 2015 00.42.28 UTC+1 skrev David Nolen følgende: ClojureScript, the Clojure compiler that emits JavaScript source code. README and source code:

Re: [ANN] Dunaj project, an alternative core API for Clojure

2015-03-10 Thread Jozef Wagner
Third Dunaj experiment: Protocols First One of Dunaj’s objectives is to facilitate host independent style of programming. The third Dunaj experiment aims to transform core API into one that uses protocols for all of its abstractions. Additionally, Dunaj introduces a concept of a factory