Proposing a new Clojure documentation system (in Clojure)

2014-04-26 Thread Val Waeselynck
Hello to all, *Short version :* I think Clojure needs a documentation system in Clojure, I would like to know if some efforts exist in that direction, and I am willing to create it / contribute to it. *Long version :* I've been thinking for a while that the Clojure community could benefit a

Re: Proposing a new Clojure documentation system (in Clojure)

2014-04-26 Thread Val Waeselynck
and interact with it. This would make a great cider middleware :-). On Saturday, April 26, 2014, Val Waeselynck val.v...@gmail.comjavascript: wrote: Hello to all, *Short version :* I think Clojure needs a documentation system in Clojure, I would like to know if some efforts exist

Re: Proposing a new Clojure documentation system (in Clojure)

2014-04-30 Thread Val Waeselynck
, so this should not take too long, right ? ;) samedi 26 avril 2014 18:39:04 UTC+2, Val Waeselynck a écrit : Hello to all, *Short version :* I think Clojure needs a documentation system in Clojure, I would like to know if some efforts exist in that direction, and I am willing to create

Re: Proposing a new Clojure documentation system (in Clojure)

2014-05-02 Thread Val Waeselynck
That is NOT what I said. Please go back and read my response more carefully. Apologies, guess I disagree only with Gregg on that point then. Anyway, I think speculating about the necessity of such a documentation system is not the best thing to do - I suggest we give it a try,

Re: Proposing a new Clojure documentation system (in Clojure)

2014-05-03 Thread Val Waeselynck
, 2014 at 4:00 AM, Val Waeselynck val.v...@gmail.comjavascript: wrote: That is NOT what I said. Please go back and read my response more carefully. Apologies, guess I disagree only with Gregg on that point then. I guess this illustrates a point that is usually overlooked: no matter

Re: Proposing a new Clojure documentation system (in Clojure)

2014-05-10 Thread Val Waeselynck
We can see from this discussion that several strongly opinionated visions of what documentation should be coexist. Some want literate programming whereas others want to avoid it, some want something that looks like javadoc, some just want markdown, etc. I think we can just make room for all of

Re: Proposing a new Clojure documentation system (in Clojure)

2014-05-10 Thread Val Waeselynck
+2, Val Waeselynck a écrit : Hello to all, *Short version :* I think Clojure needs a documentation system in Clojure, I would like to know if some efforts exist in that direction, and I am willing to create it / contribute to it. *Long version :* I've been thinking for a while

Re: Proposing a new Clojure documentation system (in Clojure)

2014-05-10 Thread Val Waeselynck
that is completely external to the metadata map, so as to make it nonintrusive. A bit like a test library. Timothy On Sat, May 10, 2014 at 7:44 AM, Val Waeselynck val.v...@gmail.comjavascript: wrote: Here :https://docs.google.com/spreadsheets/d/1HyS9qstgEqmdv0MtDm3xEsImnDjCYQhar1PQP3fzwMc/edit

Re: Why is add-watch still in alpha?

2014-11-19 Thread Val Waeselynck
I also sometimes wish I could attach async handler to promises. I agree that you can emulate this with (thread ...) calls, but sometimes you really want a fully non-blocking behavior. If your promises are delivered by an asynchronous, non-blocking system, it feels too bad to end up with a

Re: Clojure as first language

2016-02-26 Thread Val Waeselynck
pendiums or course > curriculums used as part of Clojure Bridge? > > Terje > > > On Sunday, February 21, 2016 at 12:45:52 PM UTC+1, Val Waeselynck wrote: > > >> And of course, let's not forget about Clojure Bridge >> <http://www.clojurebridge.org/>! &g

Re: Clojure as first language

2016-02-21 Thread Val Waeselynck
I believe there was a Clojure programming environment released exactly for this... but can't see to find it on Google. I too believe it is great for beginners, except for maybe 2 aspects: - if Clojure is your first language, the 2nd language is likely to be painful :) - I heard feedback

Re: Clojure as first language

2016-02-21 Thread Val Waeselynck
And of course, let's not forget about Clojure Bridge <http://www.clojurebridge.org/>! On Sunday, 21 February 2016 12:42:24 UTC+1, Val Waeselynck wrote: > > I believe there was a Clojure programming environment released exactly for > this... but can't see to find it on Google. &g

Re: Clojure as first language

2016-03-18 Thread Val Waeselynck
> started programming by learning about how CPUs work, but computers are so > complex now that very few people start out that way any more. > > On 18 March 2016 at 10:03, Val Waeselynck <val.vval...@gmail.com> wrote: > >> Really depends on how the brain of the programmer is w

Re: [ANN] Elements of Clojure

2016-03-19 Thread Val Waeselynck
The chapter on naming is brilliant, I rarely learned so much in so few pages :) So far I have found the content to be more about 'philosophical' programming notions than Clojure specifically, but the parts about Clojure are useful and pratical. You may want to state more explicitly how this

Re: Clojure as first language

2016-03-19 Thread Val Waeselynck
Really depends on how the brain of the programmer is wired IMHO. To some people, the intuitive part of programming is fiddling with bits, to others it's all about abstraction. On Mar 17, 2016 9:32 PM, "Mark Engelberg" wrote: > On Thu, Mar 17, 2016 at 11:12 AM, gvim

Releasing scope-capture, a library for easing REPL-based debugging

2017-10-08 Thread Val Waeselynck
Hi, I'm happy to release a tiny Clojure/Script library called scope-capture . https://github.com/alvalval/scope-capture Loosely speaking, scope-capture makes it trivial to reproduce from the REPL the context of a piece of code after it

Re: Releasing scope-capture, a library for easing REPL-based debugging

2017-10-09 Thread Val Waeselynck
2017 at 7:05 AM, Mike <145...@gmail.com> wrote: >> >>> Cool! Thanks, Val! >>> >>> воскресенье, 8 октября 2017 г., 10:09:19 UTC+3 пользователь Val >>> Waeselynck написал: >>> >>>> Hi, I'm happy to release a tiny Clojure/Scr

Re: Releasing scope-capture, a library for easing REPL-based debugging

2017-10-10 Thread Val Waeselynck
Le 9 oct. 2017 18:17, "Didier" a écrit : What happens with loops? Say if you spy inside a for? It records and logs new information on each iteration :) see `disable!` and/or `brk` if that's inconvenient. -- You received this message because you are subscribed to the Google

Re: Releasing scope-capture, a library for easing REPL-based debugging

2017-10-19 Thread Val Waeselynck
tely useful. > > On Sunday, October 8, 2017 at 3:09:19 AM UTC-4, Val Waeselynck wrote: >> >> Hi, I'm happy to release a tiny Clojure/Script library called >> scope-capture <https://github.com/alvalval/scope-capture>. >> >> https://github.com/vvv

New blog post: about Clojure's syntax

2018-01-06 Thread Val Waeselynck
Reflecting on Clojure's syntax and its implications: http://alvalval.github.io/posts/2018-01-06-so-yeah-about-clojures-syntax.html Feedback welcome! -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to

Re: [ANN] scope-capture 0.3.0

2018-07-18 Thread Val Waeselynck
I pushed a bug in 0.3.0 - jump straight to 0.3.1. My bad! On Tuesday, 17 July 2018 15:18:46 UTC+2, Val Waeselynck wrote: > > Just released *scope-capture > <https://github.com/alvalval/scope-capture>* 0.3.0, with some new > goodies: > > - spyqt / brkqt > <h

[ANN] scope-capture 0.3.0

2018-07-17 Thread Val Waeselynck
Just released *scope-capture * 0.3.0, with some new goodies: - spyqt / brkqt (SPY QuieTly), useful for preventing large

new 'Programming at the REPL' guide on clojure.org

2018-03-23 Thread Val Waeselynck
A new guide on clojure.org, which aims at distilling years of experience using Clojure REPLs, for Clojure programmers of any experience level. https://clojure.org/guides/repl/introduction Feedback welcome! Thanks very much to everyone who participated in the genesis

Re: Releasing d2q, a simple, efficient, generally applicable engine for implementing graph-pulling API servers in Clojure. Feedback wanted!

2018-10-26 Thread Val Waeselynck
ere you take this library. > > On Thursday, October 25, 2018 at 4:45:57 AM UTC-4, Val Waeselynck wrote: >> >> I'm happy to release d2q <https://github.com/alvalval/d2q>, a >> library for implementing graph-pulling server backends, playing in the same >> space

Releasing d2q, a simple, efficient, generally applicable engine for implementing graph-pulling API servers in Clojure. Feedback wanted!

2018-10-25 Thread Val Waeselynck
I'm happy to release d2q , a library for implementing graph-pulling server backends, playing in the same space as Lacinia or Pathom , with an emphasis on simplicity, generality

[ANN] releasing scope-capture-nrepl 0.3.0

2019-01-06 Thread Val Waeselynck
*scope-capture-nrepl 0.3.0* is out, updates the nREPL dependency to use nrepl/nrepl . Still compatible with the older tools.nrepl . https://clojars.org/alvalval/scope-capture-nrepl -- You received this message

Building a community for sustainability-oriented Clojure work

2021-02-11 Thread Val Waeselynck
Cross-posting this so that people can discuss it here as well: https://clojureverse.org/t/building-a-community-for-sustainability-oriented-clojure-work/7159/2 -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to