How do I upgrade nREPL?

2015-03-29 Thread Shannon Severance
I would like to upgrade nREPL, but it appears I am still using version 0.2.6. My ~/.lein/profiles.clj: {:user {:plugins [[cider/cider-nrepl 0.9.0-SNAPSHOT] [lein-pprint 1.1.2]] :dependencies [[org.clojure/tools.nrepl 0.2.10]]}} When I start lein repl britannia:~

spam on clojure.org

2015-03-29 Thread Otto Linnemann
I have just noticed a lot of spam (online gambling and stuff like that) where clojure.org redirects too which I find incredible annoying since I use clojure.org frequently e.g. as API reference. Has clojure.org hacked or is it intentional so? Best Regards, Otto -- You received this message

Re: Some guidance on how to write good property tests with test.check?

2015-03-29 Thread mynomoto
Hi John, Here's what I would do: ``` (def gen-data-invalid (gen/hash-map :vec (gen/vector gen/string 0 1))) (def gen-data-valid (gen/hash-map :vec (gen/vector gen/string 2 100))) (deftest valid-vector-test (checking data with at least 2 elements in :vec 100 [d gen-data-valid] (is

Re: spam on clojure.org

2015-03-29 Thread Reid McKenzie
clojure.org does no such thing, sounds like it's time to do a virus sweep. Reid On 03/29/2015 05:14 AM, Otto Linnemann wrote: I have just noticed a lot of spam (online gambling and stuff like that) where clojure.org redirects too which I find incredible annoying since I use clojure.org

Re: clojure, not the go to for data science

2015-03-29 Thread Luc Préfontaine
It's fun to see that vintage tools are so much appreciated these days :) Luc P. Batsov, CIDER is the best Clojure IDE. ;) -- @solussd On Mar 29, 2015, at 9:14 AM, Bozhidar Batsov bozhi...@batsov.com wrote: And CIDER isn't, right? I find this pretty insulting... On 29

Re: how do you re-load a clojure library?

2015-03-29 Thread Juvenn Woo
Hi Dan, All jars files are kept at `~/.m2/repositories` on *nix, as far as I know. So you can just find and delete them over there. The next time you run a lein task, it will re-download it. Best, -- Juvenn Woo Sent with Sparrow (http://www.sparrowmailapp.com/?sig) On Sunday, 29 March,

Re: how do you re-load a clojure library?

2015-03-29 Thread Dan Campbell
There it is, in Windows, at c:\Users\DC\.m2\repository, will try that, thanks Juvenn. On Sunday, March 29, 2015 at 8:08:22 AM UTC-4, juvenn wrote: Hi Dan, All jars files are kept at `~/.m2/repositories` on *nix, as far as I know. So you can just find and delete them over there. The

Re: clojure, not the go to for data science

2015-03-29 Thread Bruce Durling
On smaller data and prototypes we do data science with R, Python, clojure, java and scala. All of our larger scale and production work is done in clojure including data science. cheers, Bruce On Sun, Mar 29, 2015 at 9:54 AM, Sayth Renshaw flebber.c...@gmail.com wrote: Hi I last learned

Re: clojure, not the go to for data science

2015-03-29 Thread Colin Yates
I assumed his reference to emacs covered CIDER - don't be so sensitive :). On 29 March 2015 at 15:14, Bozhidar Batsov bozhi...@batsov.com wrote: And CIDER isn't, right? I find this pretty insulting... On 29 March 2015 at 13:47, Colin Yates colin.ya...@gmail.com wrote: Cursive Clojure,

Re: how do you re-load a clojure library?

2015-03-29 Thread Andy-
Off topic for this list but I'm sure helpful to some: On Windows: You can see open file handles with MS's Process Explorer. On Linux: There is `lsof`, or if you like interactive: The popular `htop` utility allows you to press `l` to see all open ports, files and cwd of a process. This quickly

Re: clojure, not the go to for data science

2015-03-29 Thread Steven Deobald
The data scientists we work often build their final models in either Clojure or Java, but most of them prefer Python or R for exploration. Since they're comfortable with the environment (both the JVM and emacs), the preference largely stems from a lack of library support and a short history. Even

Re: clojure, not the go to for data science

2015-03-29 Thread Bozhidar Batsov
And CIDER isn't, right? I find this pretty insulting... On 29 March 2015 at 13:47, Colin Yates colin.ya...@gmail.com wrote: Cursive Clojure, LightTable and CounterClockwise are all good Clojure IDEs. On 29 March 2015 at 09:54, Sayth Renshaw flebber.c...@gmail.com wrote: Hi I last

Re: clojure, not the go to for data science

2015-03-29 Thread Joseph Smith
Batsov, CIDER is the best Clojure IDE. ;) -- @solussd On Mar 29, 2015, at 9:14 AM, Bozhidar Batsov bozhi...@batsov.com wrote: And CIDER isn't, right? I find this pretty insulting... On 29 March 2015 at 13:47, Colin Yates colin.ya...@gmail.com wrote: Cursive Clojure, LightTable and

Re: clojure, not the go to for data science

2015-03-29 Thread Bozhidar Batsov
Just picking on the wording, that's all. Anti-Emacs stuff really gets to me. Forget I ever said anything. On 29 March 2015 at 17:17, Colin Yates colin.ya...@gmail.com wrote: I assumed his reference to emacs covered CIDER - don't be so sensitive :). On 29 March 2015 at 15:14, Bozhidar Batsov

Re: clojure, not the go to for data science

2015-03-29 Thread Sam Ritchie
The older the fiddle... Luc Préfontaine mailto:lprefonta...@softaddicts.ca March 29, 2015 at 9:21 AM It's fun to see that vintage tools are so much appreciated these days :) Luc P. -- Luc Préfontainelprefonta...@softaddicts.ca sent by ibisMail! Joseph Smith mailto:j...@uwcreations.com March

Re: clojure, not the go to for data science

2015-03-29 Thread Joseph Guhlin
Incanter gets your pretty far, especially when combined with Gorilla REPL, but all the tools and features aren't quite there yet, but progress is being made. There are a few features I really need for clojure that I think are out there, but aren't in core and I haven't found the external

how do you re-load a clojure library?

2015-03-29 Thread Dan Campbell
If you wanted to sort of 'clean out' a clojar or any contrib, korma or core.async or whatever, how would you do that? In other words, if you wanted a specific library to be re-downloaded and deployed (i.e., refreshed) on your desktop, what command would you run? Or what folders would you

Re: clojure, not the go to for data science

2015-03-29 Thread Jony Hudson
First, let me shamelessly plug Gorilla REPL http://gorilla-repl.org . It's a notebook type REPL, which I think works well as an environment for the sort exploratory programming of that's common when analysing data. We use it for science-involving-data every day in our research group, and I

Re: clojure, not the go to for data science

2015-03-29 Thread Colin Yates
Cursive Clojure, LightTable and CounterClockwise are all good Clojure IDEs. On 29 March 2015 at 09:54, Sayth Renshaw flebber.c...@gmail.com wrote: Hi I last learned clojure in 1.2. Just curious why Clojure hasn't developed as a go to for data science? It never seems to get a mention

clojure, not the go to for data science

2015-03-29 Thread Sayth Renshaw
Hi I last learned clojure in 1.2. Just curious why Clojure hasn't developed as a go to for data science? It never seems to get a mention R,Python and now Julia get the attention. By design it would appear that Clojure would be a good fit. Is it a lack of libraries, ease of install, no good

Re: [ANN] Phoenix 0.1.0 - help with structuring configuring Component-based systems

2015-03-29 Thread James Henderson
A link would have been really helpful, I'm guessing! Here it is: https://github.com/james-henderson/phoenix James On Sunday, 29 March 2015 20:42:06 UTC+1, James Henderson wrote: Hi all, I've just released v0.1.0 of Phoenix - a 'batteries included, but removable' library to wire up and

[ANN] Phoenix 0.1.0 - help with structuring configuring Component-based systems

2015-03-29 Thread James Henderson
Hi all, I've just released v0.1.0 of Phoenix - a 'batteries included, but removable' library to wire up and configure Component-based systems. If you've ever wondered whether you really have to copy and paste 'system.clj', 'dev.clj' and 'user.clj' from one Component project to the next, it's