Re: Q: How to find out how much Clojure you use

2017-10-25 Thread Gary Trakhman
Grimoire has a usage heatmap, I think it just might be over a few projects: https://www.conj.io/heatmap On Oct 26, 2017 7:40 AM, "Erik Assum" wrote: > Eric Normand did some research on this some time ago: > > http://www.lispcast.com/100-most-used-clojure-expressions > > Erik. > -- > i farta > >

Re: Q: How to find out how much Clojure you use

2017-10-25 Thread Erik Assum
Eric Normand did some research on this some time ago: http://www.lispcast.com/100-most-used-clojure-expressions Erik. -- i farta > 25. okt. 2017 kl. 23:05 skrev Colin Fleming : > > IntelliJ has a nice Productivity Guide feature which works sort of like this > - every time you use a certain f

Officially Supported JDKs?

2017-10-25 Thread Alex Miller
We support JDK 1.6+. Eventually we will drop support for older JDKs but no change in Clojure 1.9. -- 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 moder

Officially Supported JDKs?

2017-10-25 Thread Nathan Fisher
Hi All, Curious what JDKs are officially supported? Is it safe to assume the JDKs in Jenkins Clojure-test-matrix are the officially supported jdks? Is there any plans to deprecate support of EOL JDKs? Cheers! Nathan -- - sent from my mobile -- You received this message because you are subscr

RE: [ANN] Clojure 1.9.0-beta3

2017-10-25 Thread Sean Corfield
FWIW, we put 1.9.0-beta2 in production on Monday. No issues so far. We’ll probably put beta3 in production next Monday – we’re not seeing any regressions so far in testing today. Sean Corfield -- (970) FOR-SEAN -- (904) 302-SEAN An Architect's View -- http://corfield.org/ "If you're not annoyin

Re: Code behaves differently when evaluated

2017-10-25 Thread Daniel
Resolved this particular issue. It seems that evaluating the Hugsql core namespace 'overwrote' some multimethods I had defined which were somehow causing the real issue. On Wednesday, October 25, 2017 at 4:09:02 PM UTC-5, Daniel wrote: > > Apologies for the poor subject header. Link to the Git

Code behaves differently when evaluated

2017-10-25 Thread Daniel
Apologies for the poor subject header. Link to the Github Issue here. I'm running this code at the repl (pulse.core is my project ns) pulse.core=> ((-> db/queries :fns :orders-test :fn) db/*conn*) db/queries is a map defined

Re: Q: How to find out how much Clojure you use

2017-10-25 Thread Colin Fleming
IntelliJ has a nice Productivity Guide feature which works sort of like this - every time you use a certain feature it's recorded, and you can see a table of the various features, how often you used it and when you last used it. You can click on each feature to see documentation about how it works.

Re: Q: How to find out how much Clojure you use

2017-10-25 Thread Robert Levy
That would be very interesting, especially at an aggregate level, to visualize clusters of Clojure sub-idioms (?) based on code people have publicly shared with their name attached. One way to get going with that quickly would be write some Clojure code to collect, index, and analyze the data in E

[ANN] Clojure 1.9.0-beta3

2017-10-25 Thread Alex Miller
Clojure 1.9.0-beta3 is now available. Try it via - Download: https://repo1.maven.org/maven2/org/clojure/clojure/1.9.0-beta3 - Leiningen: [org.clojure/clojure "1.9.0-beta3"] 1.9.0-beta3 includes the following changes since 1.9.0-beta2: - CLJ-2254 -

Re: Got NullpointerException when using loop/recur/let together

2017-10-25 Thread Matching Socks
Also, have another look at '(ret (- time-now start-time)) It will yield a list containing the symbol 'ret and a nested list containing the symbol '- etc etc etc. I think what you expected was a vector of two numbers. -- You received this message because you are subscribed to the Google Group

Q: How to find out how much Clojure you use

2017-10-25 Thread Andy Marks
It seems like everytime I watch another Clojure/Conj video or finish another 4Clojure problem, I learn about another piece of the Clojure core set of functions that I was unfamiliar with... which prompted the question: *What subset of the Clojure core API do I use? Which functions are my favou