Re: lein repl timeout

2014-11-24 Thread Neil Laurance
Success! I checked the modification times on my hosts files. Apparently some process must have truncated my hosts file a couple days ago. There was a hosts~orig file, which I copied over, and all is well again :-) Cheers, Neil On Sunday, November 23, 2014 9:49:43 PM UTC, Neil Laurance wrote: >

Re: [ClojureScript] Re: [ANN] freactive - high performance, pure Clojurescript, declarative DOM library

2014-11-24 Thread Andrew Rosa
Aaron, Still need to study the more detailed docs, but from what I read from UI-SPEC the only thing I get confused about was the event/lifecycle. Just a suggestion about the name, if there is time for that: despite of the chosen one, IMO will be a good thing unify all (potential) libraries und

Re: Google Clojure REPL

2014-11-24 Thread Adam Clements
There are a number of issues with clojure on lollipop, the ART compiler doesn't like the bytecode generated by closure for various reasons. I have just today opened a dialogue with the ART developers at Google and at least some of the issues have been fixed for the next release of Android. Others m

Re: Thnx for clojureconj videos !!

2014-11-24 Thread Marcus Blankenship
+100 Mike, great feedback that I agree with. Maybe we should ask our significant others for training video’s for Christmas! ;-) On Nov 24, 2014, at 9:53 AM, Mike Haney wrote: > Seconding the recommendation for the Clojure Gazette. If you aren't > subscribed already, just do it. It's a fan

Why doe floor and ceil accept clojure.lang.Ratio but round not

2014-11-24 Thread Niels van Klaveren
If you want math operations that are guaranteed to work with all clojure numeric types, be sure to use clojure.math.numeric-tower -- 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

Re: How do you refer to a previous value of a var, within a loop/recur?

2014-11-24 Thread Dan Campbell
Yep, I think that's what happened. Sorry for the confusion, nuff said, back to Clojure. On Mon, Nov 24, 2014 at 10:57 AM, Gary Verhaegen wrote: > Yeah, I think the "I'll transliterate everything before anyone else sees > it" part of your message was maybe not clear enough. Of course we don't >

Re: Thnx for clojureconj videos !!

2014-11-24 Thread Mike Haney
Seconding the recommendation for the Clojure Gazette. If you aren't subscribed already, just do it. It's a fantastic resource, and I am very grateful for Eric Normand and the tireless effort he puts into it. On a side note, I had the pleasure of meeting Eric at the Conj, and he is one of the

Re: [ClojureScript] Re: [ANN] freactive - high performance, pure Clojurescript, declarative DOM library

2014-11-24 Thread Aaron
So, yes I agree - it is best to take something like this and see how it works in concrete implementations before determining whether it is good enough to subscribe to. In this case, there are actually two concrete implementations - freactive and fx-clj (which I'll formally announce once I get t

New Functional Programming Job Opportunities

2014-11-24 Thread Functional Jobs
Here are some functional programming job opportunities that were posted recently: Functional Software Developer at OpinionLab http://functionaljobs.com/jobs/8763-functional-software-developer-at-opinionlab Cheers, Sean Murphy FunctionalJobs.com -- You received this message because you

Re: Google Clojure REPL

2014-11-24 Thread Zach Oakes
I believe there are still issues with ART that need to be resolved before Clojure apps run on Lillipop. You may want to ask this on the clojure-android list instead: https://groups.google.com/forum/#!forum/clojure-android On Sunday, November 23, 2014 5:39:08 PM UTC-5, Lorentzz00 wrote: > > Hell

Re: How do you refer to a previous value of a var, within a loop/recur?

2014-11-24 Thread Gary Verhaegen
Yeah, I think the "I'll transliterate everything before anyone else sees it" part of your message was maybe not clear enough. Of course we don't care what you do when you're working alone and just for yourself. On Monday, 24 November 2014, Dan Campbell wrote: > Thanks for the input, Plinio. > >

Re: How do you refer to a previous value of a var, within a loop/recur?

2014-11-24 Thread Dan Campbell
Thanks for the input, Plinio. If the community jumps to the conclusion that I'm arrogant, because I like to work in style that's clear & works for me, then I won't be surprised if they don't offer assistance in the future. >From my point of view, as long as they receive my contributions or reques

Re: How do you refer to a previous value of a var, within a loop/recur?

2014-11-24 Thread Plínio Balduino
Hi Dan Please accept my two cents. "I prefer the indentation; it makes more sense to me." No, he didn't misunderstand, sorry. Anyway, Batsov's Style Guide is an awesome resource, even though you won't follow the items ipsis literis, is good to understand how to work and think in the 'Clojure Wa

Re: Why doe floor and ceil accept clojure.lang.Ratio but round not

2014-11-24 Thread Plínio Balduino
Hi, Cecil Because java.lang.Math#round supports only two types: float and double. Java won't find the equivalent signature with Ratio or Number. https://docs.oracle.com/javase/7/docs/api/java/lang/Math.html#round(double) https://docs.oracle.com/javase/7/docs/api/java/lang/Math.html#round(float)

Re: Why doe floor and ceil accept clojure.lang.Ratio but round not

2014-11-24 Thread Fluid Dynamics
On Monday, November 24, 2014 7:37:20 AM UTC-5, Cecil Westerhof wrote: > > Floor works: > (Math/floor (/ (* 12 100) 71)) > 16.0 > > Ceil works: > (Math/ceil (/ (* 12 100) 71)) > 17.0 > > But round gives an error: > (Math/round (/ (* 12 100) 71)) > IllegalArgumentException No

Why doe floor and ceil accept clojure.lang.Ratio but round not

2014-11-24 Thread Cecil Westerhof
Floor works: (Math/floor (/ (* 12 100) 71)) 16.0 Ceil works: (Math/ceil (/ (* 12 100) 71)) 17.0 But round gives an error: (Math/round (/ (* 12 100) 71)) IllegalArgumentException No matching method found: round clojure.lang.Reflector.invokeMatchingMethod (Reflector.java:80)

Re: Google Clojure REPL

2014-11-24 Thread Andy Fingerhut
Lorentzz: It might help to provide more information with your question. For example, what file did you download, and from where, if any? What steps did you try? What did you see? Also, who you are referring to by "you" is not clear. Please realize that a relatively small fraction of people wh

Google Clojure REPL

2014-11-24 Thread Lorentzz00
Hello to all; So, the Clojure REPL for Lollipop doesn't Work. Why? Why won't it install? When will you migrate to 1.6 or 1.7? Hope to hear something soon. Lorentzz -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to

Re: [ClojureScript] Re: [ANN] freactive - high performance, pure Clojurescript, declarative DOM library

2014-11-24 Thread Ruslan Prokopchuk
If you want something artistic though exotic enough to be not used on github before, you can try 'nerikomi' (see google or http://nerikomi.blogspot.com/ for samples) — beautiful Japanese art of pottery where every layer of clay customized with different chemical reactions to produce beautiful p

Re: Thnx for clojureconj videos !!

2014-11-24 Thread Colin Yates
+1. I couldn't make it either (coming from the UK just wasn't feasible) and it is just fantastic to be able to catch up. "Clojure Gazette" (http://us4.campaign-archive2.com/?u=a33b5228d1b5bf2e0c68a83f4&id=a358c38217&e=0ebb9aee00) is also really useful as a guide. On Saturday, 22 November 2014