Re: [ANN] ring-transit-middleware 0.1.1

2015-11-01 Thread Atamert Ölçgen
Hi Sven, What is the difference to ring-transit ring-transit-middleware doesn't silence exceptions. Also the three points I listed in my original message. But _essentially_ they both do the same thing. On Sat, Oct 31, 2015 at 11:41 PM, Sven Richter wrote: > Hi

aatree release 0.5.0--virtual data structures

2015-11-01 Thread William la Forge
The aatree project provides fully compatible alternatives to Clojure sorted-map, sorted-set and vector, with several extensions: - AAVector supports add/drop at any point using addn and dropn. - AAMap and AASet implement Reversible, Counted, Indexed and Sorted - CountedSequence implements

Getting started

2015-11-01 Thread Saurabh Shah
Hello, My name is Saurabh Shah and I am a second year undergraduate student at DA-IICT, Gandhinagar, India. I have quite lately been contributing towards the open source organizations and I find your organization the most appropriate one to work on. I request you to please guide me

Re: Getting started

2015-11-01 Thread Baishampayan Ghose
Saurabh, Thanks for your interest in Clojure. However, your question is quite open ended. Can you tell us what you have tried so far and if there is anything specific that you want us to help you with? Almost all the info that you'd need to get started can be found here:

[ANN] Structural-typing 1.0

2015-11-01 Thread Brian Marick
https://github.com/marick/structural-typing/ This is a validation or type-checking library for Clojure, playing in roughly the same space as Prismatic Schema, Bouncer, or Validateur. It was inspired by Elm's structural typing and my previous need to validate complex data structures flowing

Re: how to speedup lein uberjar?

2015-11-01 Thread Asim Jalis
Hi Sunil, I am wondering why you want to speed up lein uberjar. How frequently do you need to run this? What is your use case and workflow around this? Thanks. Asim On Mon, Oct 26, 2015 at 2:04 AM, Sunil S Nandihalli < sunil.nandiha...@gmail.com> wrote: > Hi Everybody, > My lein uberjar

Re: [ANN] core.async-0.2.371

2015-11-01 Thread Paul Mooser
I think the problem isn't the name - it just isn't clear if a channel which behaves unlike any other channel when closed can qualify as having channel semantics. On Thursday, October 29, 2015 at 2:10:43 PM UTC-7, Alex Miller wrote: > > We are not going to change the name - it is a channel with

Re: If a Java function seems to never return, how do I test?

2015-11-01 Thread Lawrence Krubner
So, we eventually fixed this. There were 2 bugs that worked together to make this a mystery. I had to guess at what the problems were, and fix them blind, since I could not see the Exceptions. I am curious about why I was not able to see the Exceptions. About this: > Exceptions are ALWAYS

Virtual Structures, easy to use but almost too simple to explain

2015-11-01 Thread William la Forge
Virtual persistent data structures are very easy to use, as all the database stuff is pretty much transparent to the application developer. You can query and update them the same way you query and update any Clojure persistent data structure. First, you do need to open and close the

Re: how to speedup lein uberjar?

2015-11-01 Thread Sunil S Nandihalli
Hi Asim, I needed to run lein uberjar to submit the jar to run a distributed job on a apache-spark cluster. and my uberjar is currently taking anywhere from 2 to 4 minutes to finish. I have have had to run uberjar fairly frequently during my iterations ( 4 to 5 times in an hour) . I am new to

Re: how to speedup lein uberjar?

2015-11-01 Thread Michael Blume
I think Matching Socks has definitely got the right answer -- anything that prevents your code from being AOT-compiled is going to give you a huge speedup. On Sun, Nov 1, 2015 at 10:11 PM Sunil S Nandihalli < sunil.nandiha...@gmail.com> wrote: > Hi Asim, > I needed to run lein uberjar to submit