Andy, I would go for quantity over quality here. There's really a lot of
libraries but only some applications (where I think LightTable is one of
the most polished applications).
Don't miss the quite good catalogue http://www.clojure-toolbox.com/
some things are a bit outdated, but it doesn't mat
ClojureScript, the Clojure compiler that emits JavaScript source code.
README and source code: https://github.com/clojure/clojurescript
New release version: 0.0-2356
Leiningen dependency information:
[org.clojure/clojurescript "0.0-2356"]
### Fixes
* fix var analysis so that some.ns/foo.ba
FWIW, I followed the "lein deploy clojars" instructions (around March this
year) and it did work for me. I recall being a bit confused by the GPG
stuff, but following the notes on the wiki did do the trick.
Jony
On Friday, 26 September 2014 04:21:41 UTC+1, Phil Hagelberg wrote:
>
> Carlos Font
I will add supporting for clojurescript this weekend.Thanks for your
suggestion.
2014-09-26 1:09 GMT+08:00 Ivan L :
> Is this clojurescript ready? This looks amazing, I would also love to
> have it in core.
>
> On Sunday, September 14, 2014 2:47:28 AM UTC-4, dennis wrote:
>>
>>
>> Hi , i am plea
PossibleDBPossibleDB is a Datomic Database Server clone built with DataScript, RethinkDB, Clojure, ClojureScript, and NodeJS.warning: highly alphaYou can see PossibleDB in action @ http://vimeo.com/107237345PossibleDB Server1) git clone https://github.com/runexec/PossibleDB2) cd PossibleDB/possible
I highly recommend the clojure.core namespace.
On Friday, September 26, 2014 3:41:31 AM UTC+2, Andy Gibraltar wrote:
>
>
> Hi everyone,
>
> I am learning Clojure. I finished reading the book Clojure Programming. I
> think reading the source code of a Clojure project would help me accelerate
> ac
Don't think Rich Hickey is a fan of pattern matching, which is probably why
it is not in core to begin with.
If you watch his "Simple made easy" talk, pattern matching is one of the
items listed under *Complexity Toolkit*, with this description: "Complects
multiple who/what pairs".
I'm not sur
hi,
I've got a "traditional" java class invoked from the command line:
public class Aclass
public static void main(String[] a)
throws Exception {
}
java -Doneoption=onevalue Aclass
and I want to invoke THAT main class from the command line and to simulate
the options from the comma
This is how i did it.
I tried to solve https://www.4clojure.com/ problems and look at
corresponding clojure.core functions for solutions.
E.g look at this https://www.4clojure.com/problem/21 Note the special
restriction (i.e do not use 'nth' function)
The solution to that is actually the imp
You can set system properties with System/setProperty.
See more here:
http://docs.oracle.com/javase/tutorial/essential/environment/sysprop.html
/Linus
Den 26 sep 2014 15:58 skrev :
> hi,
>
> I've got a "traditional" java class invoked from the command line:
>
> public class Aclass
>
> public s
Clojars has become a critical part of the clojure ecosystem. As a small
sample, it hosts artifacts for:
* Web development - ring, compojure, hoplon, hiccup, enlive, friend,
immutant
* Tooling - lein templates/plugins, cider-nrepl, clojure-complete,
gorilla-repl
* Clojurescript - lein-cljsbuild, au
I'm not very familiar with Clojars so please forgive the naive question:
Why not host jar files themsevles on Maven central and Clojars becomes a
catalog of Clojure related artifacts?
On Friday, September 26, 2014 8:09:55 AM UTC-7, Nelson Morris wrote:
>
> Clojars has become a critical part of
Thanks!
Just installed it and disabled CIDER. Hmm first things I miss are no syntax
highlighting and no paredit.
I think I can just add a hook for paredit, but not sure about syntax
highlighting. Any ideas?
On Thursday, September 25, 2014 8:32:05 PM UTC+8, Sanel Zukan wrote:
>
> Thanks for repl
Many of the projects already deployed are not compatible with central's
requirements, including group-ids and signatures. There are other reasons,
but that one already makes it impossible.
On Sep 26, 2014 10:18 AM, "Mark" wrote:
> I'm not very familiar with Clojars so please forgive the naive que
There's a number of options out there for collecting small recurring
payments. I already make regular payments to Wikipedia and a couple of
others (including GitHub), and would be willing to kick in some money
towards Clojars.
The question is: what is a reasonable amount? This is tricky; I'm
I have no expectations for anyone. Clojars has been free to use
(push/pull,individual/corp) since it started. I have no intentions of
changing that. My belief is there is value to maintenance/dev, and hope
that it can financed in a sustainable way. If it can be done by being
spread out among peopl
Btw, you’re using CIDER’s old bencode parser, which was flawed (big requests
break it due to deep recursive calls). We recently reworked it and the new
version is much more robust.
—
Cheers,
Bozhidar
On September 25, 2014 at 4:32:12 PM, Sanel Zukan (san...@gmail.com) wrote:
Thanks for reply w
Please count me in for $500 this month. Contact me off-list user d, domain
athena dot com with info where I should send money.
I ran the scala-tools.org Scala JAR repo for many years with the help of a few
other folks. I understand the challenges of running a repo... the expectation
that everyt
True; Monroe for now is focused only on providing stable nrepl connection
with usable REPL, but you should be able to use any *clojure-mode.el* that
floats around the net. AFAIK, Cider comes with *clojure-mode.el* and you
could try it. If you find issues please let me know.
Also, there is cloju
Thanks for the tip!
Actually, I was using the one from *nrepl.el*, but I will check your fixed
version and see how to adapt it :) Do you a sample that will break the
current parser (so I can use it for validation and testing)?
Best,
Sanel
On Friday, September 26, 2014 9:34:11 PM UTC+2, Bozhida
Hi, I'm not sure if resurrecting this thread is the right approach, but
what about Java 8 Streams (java.util.stream)?
Are there any libraries out there for making java 8 streams handling nicer?
:)
On Tuesday, June 28, 2011 2:18:13 PM UTC-4, Sean Corfield wrote:
>
> On Tue, Jun 28, 2011 at 10:40
=>(AClass/main ( into-array String ["23"] ))
and if the AClass is in the same dir of the invocation then include it in
the class path :
java -cp clojure-1.6.0.jar:. clojure.main
El viernes, 26 de septiembre de 2014 11:12:41 UTC+2,
paracomunicaci...@gmail.com escribió:
>
> hi,
>
> I've got
My first core.async program ... all works outside of the web app but barfs
once I put the functions inside a web container. I hope somebody in the
group can point to my obvious mistake...
The idea is that the function 'respond-within-sla' will give back a result
or a come back later message aft
Hi Ray,
I don't entirely understand why you expected this to work. Channels aren't
a valid Ring response body. The error message is essentially telling you
that Compojure has no way of turning the channel object you've returned
into a valid response.
The other problem you have is that the Ring Je
Hi Laurent,
Thanks for the great work!
Regarding Counterclockwise 0.28.0 - I can see that now it is pulling git
plugin dependencies. Can you please making this dependency optional?
Thanks,
- Alex.
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To
I grumbled about the GPG stuff when it came up but after a chat with
Phil I decided this was something I just needed to learn as a
developer. Sure, it means you have to "read complex security stuff"
but we have to read lots of complex stuff as developers - that's just
part of our job.
I switched t
Hi Guys,
Just wanted to let you all know that CodeBunk(http://codebunk.com) now
supports REPL shell for Clojure. Do check it out.
--
Yousuf Fauzan
CodeBunk
CodeBunk provides a Realtime Collaborative Editor with Compile/Run and REPL
shells. CodeBunk is an Online Compiler/Interpreter for *Rust*,
On Fri, Sep 26, 2014 at 11:51 AM, José Ricardo wrote:
> Hi, I'm not sure if resurrecting this thread is the right approach, but what
> about Java 8 Streams (java.util.stream)?
>
> Are there any libraries out there for making java 8 streams handling nicer?
> :)
Well, this thread is certainly a bla
I am an looking for a good, active, open source Clojure library/project to
contribute to, but am not sure where to start. Could somebody give an
intermediate level programmer a few pointers as to where to begin?
--
You received this message because you are subscribed to the Google
Groups "Clo
On 27 September 2014 at 10:34:28, kurofune (jesseluisd...@gmail.com) wrote:
> I am an looking for a good, active, open source Clojure library/project
> to contribute to, but am not sure where to start. Could somebody
> give an intermediate level programmer a few pointers as to where
> to begin?
30 matches
Mail list logo