Re: [ANN] www.core-async.info: a new web resource for core.async

2014-09-26 Thread Jörg Winter
Same problem with iOS 7 and 8 on iPad Safari and Chrome Does not finish loading -- 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 - please

Re: reading to learn and acquire the skill of writing optinal Clojure code

2014-09-26 Thread Linus Ericsson
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

ANN: ClojureScript 0.0-2356

2014-09-26 Thread David Nolen
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.bar

Re: [PSA] Clojars scp disabled until further notice

2014-09-26 Thread Jony Hudson
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 Fontes

Re: {ANN} defun: A beautiful macro to define clojure functions with pattern match.

2014-09-26 Thread dennis zhuang
I will add supporting for clojurescript this weekend.Thanks for your suggestion. 2014-09-26 1:09 GMT+08:00 Ivan L ivan.laza...@gmail.com: 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:

[ANN] PossibleDB 0.1 - Serverside DataScript

2014-09-26 Thread Kelker Ryan
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

Re: reading to learn and acquire the skill of writing optinal Clojure code

2014-09-26 Thread Leon Grapenthin
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

Re: {ANN} defun: A beautiful macro to define clojure functions with pattern match.

2014-09-26 Thread Andre Richards
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 sure

Calling the main static method of a class

2014-09-26 Thread paracomunicacionesinformales
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

Re: reading to learn and acquire the skill of writing optinal Clojure code

2014-09-26 Thread Josh Kamau
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

Re: Calling the main static method of a class

2014-09-26 Thread Linus Ericsson
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 paracomunicacionesinforma...@gmail.com: hi, I've got a traditional java class invoked from the command line:

Re: [PSA] Clojars scp disabled until further notice

2014-09-26 Thread Nelson Morris
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,

Re: [PSA] Clojars scp disabled until further notice

2014-09-26 Thread Mark
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

Re: [ANN] Monroe 0.1.0 - nrepl client for Emacs

2014-09-26 Thread John Louis Del Rosario
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 reply

Re: [PSA] Clojars scp disabled until further notice

2014-09-26 Thread Nelson Morris
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 markaddle...@gmail.com wrote: I'm not very familiar with Clojars so please

Re: [PSA] Clojars scp disabled until further notice

2014-09-26 Thread Howard M. Lewis Ship
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

Re: [PSA] Clojars scp disabled until further notice

2014-09-26 Thread Nelson Morris
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

Re: [ANN] Monroe 0.1.0 - nrepl client for Emacs

2014-09-26 Thread Bozhidar Batsov
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

Re: [PSA] Clojars scp disabled until further notice

2014-09-26 Thread David Pollak
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

Re: [ANN] Monroe 0.1.0 - nrepl client for Emacs

2014-09-26 Thread Sanel Zukan
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

Re: [ANN] Monroe 0.1.0 - nrepl client for Emacs

2014-09-26 Thread Sanel Zukan
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,

Re: Re: Handling java streams..

2014-09-26 Thread José Ricardo
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

Re: Calling the main static method of a class

2014-09-26 Thread M Guti
=(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 a

core.async | compojure ... odd error ... help!!

2014-09-26 Thread mond
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

Re: core.async | compojure ... odd error ... help!!

2014-09-26 Thread James Reeves
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

Re: [ANN] New release 0.28.0 of Counterclockwise

2014-09-26 Thread Alexander Igdalov
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

Re: [PSA] Clojars scp disabled until further notice

2014-09-26 Thread Sean Corfield
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 to

Clojure REPL shell on CodeBunk

2014-09-26 Thread Code Bunk
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*,

Re: Re: Handling java streams..

2014-09-26 Thread Sean Corfield
On Fri, Sep 26, 2014 at 11:51 AM, José Ricardo zehzi...@gmail.com 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