Hi
Well, you answered yourself, either replace recur with random-depth (and it
will consume stack), or add a counter in your recursion and (recur (inc i)).
Philippe
On Wed, Oct 14, 2015 at 2:41 AM, Jeremiah Via
wrote:
> Hi all,
>
> I was curious to know if it is at all possible to determine h
Hi
"provided" dependencies should work for you, this is from my project.clj :
:profiles {:provided {:dependencies [[org.apache.storm/storm-core
"0.9.4"]]}}
On Wed, Jul 1, 2015 at 5:14 PM, Robin Heggelund Hansen wrote:
> All suggestions made the dependencies unavailable when running `lein
>
e.
>
> This means that I would have to take on building this for all of the
> binary platforms, which is a chore; and (again) on the other hand, it's a
> chore that would allow other apps to never have to have this problem.
>
> (Avi is a console-based editor, the JNI portion i
Hi
I'm not sure what "Avi" is in this context, maybe what you're looking for
is a way to package and run native JNI code from an uberjar ? I recently
released https://github.com/pguillebert/indigenous that may help in this
purpose. You still need to find a maven artifact providing the native
libra
Hello
Working with native libraries on the JVM has always been difficult because
you need to deploy dynamic libraries alongside your JAR and tweak the
dreaded java.library.path.
When I was looking for a better solution I discovered a nice hack in
gaverhae/naughtmq, by Gary Verhaegen : keep the na
Hi
Looks like the latest announcement from Nathan Marz (specter) may be of
use 😀
Philippe
--
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 moderated -
Also, you should be using loop/recur instead of mutating atoms here, this
is the functional way.
You already laid out your 2 loop bindings, and a stop condition. This
should be straightforward.
Philippe.
Le 27 mai 2014 09:44, "Dylan Gleason" a écrit :
> I am trying to read a TCP request via an
Hello
This is not written as functional code. You have to understand that :
(cons f futures)
creates a new "version" of futures with f in front of it and cons *returns
it to you*. Put another way,* futures is not modified by cons*. In your
dotimes construct, the consed value is lost each loo
Hi,
You probably need to realize your query using (doall (jdbc/query ...))
Also, I was wondering, depending on your needs, you could convert
Jdbc4Arrayinto a native type (vector ?) as a post-processing function
of your query
and forget about registering JSON writers.
On Tue, Oct 1, 2013 at 9:0
t) [?a ?b] (generator :> ?a ?b))
The same applies to SQL DSLs like korma.
So, IMHO there are cases where (:use) simplifies things.
--
Philippe Guillebert
--
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group,
Hi
I'm surprised nobody mentioned storm yet. It's massively scalable real-time
computing, using clojure.
Le 3 juil. 2013 16:18, "Softaddicts" a écrit :
> clj-zookeeper + avout. We run our solution on clusters of small nodes, we
> needed
> a lightweight solution. We implemented cluster queues and
11 matches
Mail list logo