Re: [ClojureScript] [ANN] beta.clojars.org: new Clojars infrastructure that needs testing

2016-09-25 Thread Alan Moore
Congrats on this important migration! Thanks also for the time and effort the Clojars team put into this. I encourage everyone to head over to the Clojars issues list where there are many easy/low hanging fruit that await your awesomeness. Alan On Sep 25, 2016, at 8:24 PM, Daniel Compton

Re: [ClojureScript] [ANN] beta.clojars.org: new Clojars infrastructure that needs testing

2016-09-25 Thread Daniel Compton
Oh, one more thing, a big thanks to lvh , and Rackspace for sponsoring Clojars. We really appreciate it! On Mon, Sep 26, 2016 at 4:24 PM Daniel Compton < daniel.compton.li...@gmail.com> wrote: > Hi folks > > We have completed migration of the production server (clojars.org)

Re: [ClojureScript] [ANN] beta.clojars.org: new Clojars infrastructure that needs testing

2016-09-25 Thread Daniel Compton
Hi folks We have completed migration of the production server (clojars.org) from Linode to Rackspace. Everything seems to have transferred across smoothly. Please let us know if you have any issues. Thanks On Fri, Sep 23, 2016 at 9:26 AM Daniel Compton < daniel.compton.li...@gmail.com> wrote:

Re: parallel sequence side-effect processor

2016-09-25 Thread Mars0i
Thanks everyone. There's a lot here--I'm still digesting it all. It's clear that a lot may depend on the underlying collections, and that, among other things, foldmap is worth considering for benchmarking in performance-critical code, as is mapping a vector across multiple sequences to

Re: Correcting a docstring mistake in clojure.core/filter

2016-09-25 Thread Daniel Compton
Opening a ticket on dev.clojure.org, and providing a docstring patch is the standard (and fastest) way to do this. On Sun, Sep 25, 2016 at 1:15 PM Alan Thompson wrote: > Hi Alex - What is the best way to correct a mistake in the docstring for > clojure.core/filter? > > The

Re: definterface odd error

2016-09-25 Thread Jeff Murphy
Thanks for all the help on this! The "..." comment helped me sort it out and I have it working now! On Friday, September 23, 2016 at 4:12:51 PM UTC-4, adrian...@mail.yu.edu wrote: > > Hey Jeff, > > The problem is that the code in that blog post is not amenable to > copy/paste. The ellipses

Re: Clojure support for Visual Studio Code

2016-09-25 Thread Andrey Lisin
Hi Michael, I agree with you. What makes me optimistic is that VSCode has a built-in terminal, but I don't know if it is possible to interact with it through the API. However, as you said, it all depends on a user's background. I know that Vim Fireplace plugin users are used to running a

Re: Clojure support for Visual Studio Code

2016-09-25 Thread Andrey Lisin
Hi Boris, please, see my answers below. On Saturday, September 24, 2016 at 3:37:38 PM UTC+6, Boris V. Schmid wrote: > > Just started using your plugin. Thanks. So far so good. > > Two questions. > > 1. Every time I eval something, or have an error, a bar appears on top, > like this: "[Info]

Re: [ANN] clojure-future-spec, a backport of clojure.spec for 1.8

2016-09-25 Thread Matan Safriel
Cool!! Sent from my mobile Original Message From:Nikita Prokopov Sent:Sun, 25 Sep 2016 11:52:19 +0300 To:Clojure Subject:Re: [ANN] clojure-future-spec, a backport of clojure.spec for 1.8 >Matan, > > >spec is pretty isolated part

Re: [ANN] clojure-future-spec, a backport of clojure.spec for 1.8

2016-09-25 Thread Nikita Prokopov
Matan, spec is pretty isolated part of Clojure, so it’s basically a copy-paste job with couple of gaps filled in that were introduced in 1.9. Updating it is basically getting diff from clojure and applying it to my repo. Sometimes with some manual corrections. Nikita. On Sat, Sep 24, 2016 at

Re: [ANN] data-scope - tools for interactively inspecting and visualizing data

2016-09-25 Thread James Sofra
Hey Alistair, I have been working on an engineering project and found myself charting a lot of load distributions and such. Being able to chart intermediate values really easily has been great. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To

Re: [ANN] data-scope - tools for interactively inspecting and visualizing data

2016-09-25 Thread James Sofra
Yeah sorry about that, the one on github is most up to date. It includes the new namespaces but you can always pick and choose to get the one you want. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to

Re: [ANN] data-scope - tools for interactively inspecting and visualizing data

2016-09-25 Thread Mark Engelberg
This announcement and the github site list different leiningen injections. Which is correct? Thanks, this looks very useful. On Sat, Sep 24, 2016 at 9:52 PM, James Sofra wrote: > Hi all, > > I have written a little library inspired by Spyscope (which I use a lot) > to

Re: [ANN] data-scope - tools for interactively inspecting and visualizing data

2016-09-25 Thread Alistair Roche
Wow, this is great, James, especially the extensive docs. What were you were you working on that prompted this solution? On Sunday, 25 September 2016 14:52:44 UTC+10, James Sofra wrote: > > Hi all, > > I have written a little library inspired by Spyscope (which I use a lot) > to provide tools

Re: In clojure.spec, how to declare all valid keys in a map

2016-09-25 Thread Alistair Roche
Whoops, that should be: (defmacro only-keys [& {:keys [req req-un opt opt-un] :as args}] `(s/merge (s/keys ~@(apply concat (vec args))) (s/map-of ~(set (concat req (map (comp keyword name) req-un) opt

Re: In clojure.spec, how to declare all valid keys in a map

2016-09-25 Thread Alistair Roche
Yeah, my team and I were initially surprised at the lack of a built-in option for this to s/keys, but TBH it's been an unusual use case so far, and Alex / Beau's solutions don't seem particularly onerous despite the repetition. I suppose if you're using it all over the place you could write a