Notepad++ clojure support files 1.3

2015-09-03 Thread Alex Woods
Notepad++ clojure support files 1.3 https://drive.google.com/open?id=0By5ssgBX1IWaTHA4NXhtb3Z4VFk -- 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

Re: Notepad++ clojure support files 1.3

2015-09-03 Thread Alex Woods

[ANN] paren-soup, a browser-based ClojureScript editor

2015-09-03 Thread Zach Oakes
I’m releasing paren-soup, a ClojureScript viewer and editor that you can embed in any website. While projects like CodeMirror are nice if you need to support other languages, I hope to make paren-soup a better choice for those who only want to edit ClojureScript. Here are the features: -

midje only 1 test

2015-09-03 Thread r/ Wobben
hello, Suppose I have this test (facts "do-a-thing" {:exercise 1 :points 1} (do-a-thing 3) => 46656.0 ( do-a-thing 1) => 4.0 (do-a-thing 0) => 1.0) Is there a way I can only run this test I tried lein midje :filter exercise 1 but that one fails. Roelof -- You received this message

Re: [ANN] prismatic/schema 1.0 adds automatic test data generation

2015-09-03 Thread Jason Felice
On Wed, Sep 2, 2015 at 9:56 PM, Jason Wolfe wrote: > > Outside of that, I can still potentially see the desire to specify > postconditions rather than preconditions (you'd rather see an error (not > (integer? "1")) than (throws? (odd? "1")), which will be the behavior when > the

[ANN] Glow 0.1.3, now with server-side syntax highlighting of Clojure source in HTML/CSS

2015-09-03 Thread W. David Jarvis
Hi everyone! I'm happy to announce the release of Glow 0.1.3. This new release adds the ability to generate syntax-highlighted blocks of HTML from an input string of Clojure source code. Generated HTML will sit in a div element with class "syntax", and a

Re: How do I print each test name in clojure.test?

2015-09-03 Thread Mayank Jain
Thank you so much, that worked! :) On Wed, Sep 2, 2015 at 2:36 AM, James Reeves wrote: > On 1 September 2015 at 17:34, Mayank Jain wrote: >> >> It throws Stackoverflow error >> >> StackOverflowError >>> clojure.lang.Util.equiv (Util.java:33) >>>

Re: Live rendering of AsciiDoc files in Chrome browser

2015-09-03 Thread Atamert Ölçgen
I am using AsciiLight plugin for LightTable and very happy with it: https://github.com/rundis/AsciiLight On Wed, Sep 2, 2015 at 10:06 PM, Alan Thompson wrote: > Hey, > > As you all know, the README files on Github, etc can be formatted using > the either AsciiDoc (my

Re: Stuart Sierra's Component: retries & restarts in production

2015-09-03 Thread Raymond Huang
Another way I can think of decomposing this is to buffer/queue communication between your two components, i.e a core.async channel. This will decouple the two components allowing your MessageQueue to manage it's own reconnection. Interesting question about whether `start` calling `stop` is

Re: Stuart Sierra's Component: retries & restarts in production

2015-09-03 Thread Andy-
Only to answer the "retry on error" part of you question: You might like hara/event: http://docs.caudate.me/hara/hara-event.html HTH On Wednesday, September 2, 2015 at 8:44:07 PM UTC-4, jo...@signafire.com wrote: > > TLDR: how do you use Component when the application logic involves >