Artur Malabarba writes:
> Over at CIDER we're adding a feature where the author of a macro (or
> function) can specify how that macro should be indented by adding an :indent
> metadata to its definition. This way the editor (and other tools, like
> cljfmt) will know what's the proper way of
Hi Nathan,
I think it's an awesome project, thanks for sharing this.
I see that currently only full continuations are supported. Would it be
possible/feasible/easy to support delimited continuations? (ie. with ranges
different from the outermost CPS context)
Also, it would be interesting to ha
Is it recommended to use core.asyncs timeout channel to wait on hour or
even longer for light scheduling tasks?
High precision is a nongoal.
Kind regards,
Leon.
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to c
On Tuesday, September 22, 2015 at 6:31:34 AM UTC-4, Phillip Lord wrote:
>
> ... The interesting question then is what
> percentage of the time do Clojure developers work *without* a repl
> active.
>
Uhhh, zero? :)
--
You received this message because you are subscribed to the Google
Groups "C
Sometimes more than 0% when I'm doing something small in clojurescript,
can't be bothered with the setup, and browser refresh is good enough :-).
On Tue, Sep 22, 2015 at 4:02 PM Fluid Dynamics wrote:
> On Tuesday, September 22, 2015 at 6:31:34 AM UTC-4, Phillip Lord wrote:
>>
>> ... The interesti
Do you know about lein figwheel?
On 22 Sep 2015 21:05, "Gary Trakhman" wrote:
> Sometimes more than 0% when I'm doing something small in clojurescript,
> can't be bothered with the setup, and browser refresh is good enough :-).
> On Tue, Sep 22, 2015 at 4:02 PM Fluid Dynamics wrote:
>
>> On Tues
On Tuesday, September 22, 2015 at 6:37:13 AM UTC-5, Francesco Bellomi wrote:
>
> Hi Nathan,
>
> I think it's an awesome project, thanks for sharing this.
>
>
Thanks. I appreciate the feedback.
> I see that currently only full continuations are supported. Would it be
> possible/feasible/easy to
Thanks for taking the time to write such a detailed answer, I really
appreciated it.
Delimited continuations are useful since they return a value, and thus may
be reused and composed, and used to build complex control mechanisms.
In my opinion the coolest use of delimited continuations are Effect
Fluid Dynamics writes:
> On Tuesday, September 22, 2015 at 6:31:34 AM UTC-4, Phillip Lord wrote:
>>
>> ... The interesting question then is what
>> percentage of the time do Clojure developers work *without* a repl
>> active.
>>
>
> Uhhh, zero? :)
Some I am sure. I do, though. I often write a
Thanks, Francesco. I'll definitely take a look at those resources.
Nathan Davis
On Tuesday, September 22, 2015 at 4:31:07 PM UTC-5, Francesco Bellomi wrote:
>
> Thanks for taking the time to write such a detailed answer, I really
> appreciated it.
>
> Delimited continuations are useful since th
Hi all,
Thanks for giving the world Clojure. It's already made my life better just
by applying the idioms to my Java code (e.g.
http://www.ninthavenue.com.au/java-with-no-design-patterns).
I'm starting on a new project soon and would like to use Clojure, however
in my experiments so far perfor
Also, I noticed that http-kit is being used in the zombie game tutorial.
How does that stack up against node in terms of capability?
On Monday, 21 September 2015 21:22:51 UTC-7, JvJ wrote:
> Wow! An unexpected number of resources on exactly what I'm looking for!
> Thanks!
>
> ... but I am so
You're right about indentation depending on the code being evaluated, but
that's still better than nothing. ☺
People who do a significant amount of coding without a live session can
still manually configure indentation like they currently do, and they're no
worse off.
The editor can even parse th
On my team, we tried using RoboVM to compile Clojure to iOS. It worked fine
once it booted, but startup time was a concern. We didn't spend a lot of
time optimizing it though. We also found the compile/boot cycle to be quite
long (over 50s to see a change). My understanding (perhaps mistaken) is
I was going through 4clojure (highly recommended!) and doing the Fibonacci
exercise. It occurred to me that the iterate function could be generalized
in a reasonable way, so that the next value is generated by applying the
function to the last N items so far, where N is the number of initial
a
Hello Everybody,
it took me about a year and multiple failed rewrites, to admit, that
keeping a compatibility mode for the current prefix-emitting hack in
clojure.data.xml, is just to much of a hassle and complexity nightmare for
it to be worth it.
So now, non-namespaced names are represented as p
Great work!
Le jeudi 17 septembre 2015 04:47:42 UTC-7, Alejandro Gómez a écrit :
>
> Hello everyone,
>
> I'm glad to announce the 1.0.0 release of cats[1], a library with
> category theory
> and algebraic abstractions for Clojure(Script). This release packs a lot
> of new
> features and it al
I wonder if something like this is a little easier to read?
(defn generate
([f coll]
(generate f coll (reverse coll)))
([f coll args]
(let [next-val (apply f args)]
(lazy-cat coll (generate f [next-val] (conj (butlast args) next-val))
Where your Fibonacci example becomes:
(ta
Hi all,
Just noticed some use of boxed math in a couple of the Clojure 1.7
transducers (e.g. `take`). Would there be interest in a PR to add some
numerical type hints?
Cheers :-)
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this grou
19 matches
Mail list logo