emacs-cider company-mode no match found

2014-09-20 Thread Xiangtao Zhou
hi every, I have upgrade the latest emacs-cider, the document suggest me to use company for auto completion, but it doesn't work, anyone know what should I do. here is the part of .emacs (require 'cider) (require 'smartparens) (require 'icomplete) (require 'company) (add-hook 'clojure-mode-ho

Re: [ANN] Onyx: Distributed data processing in Clojure

2014-09-20 Thread Christopher Small
Hi Daniel This looks like a great project! Is it possible with onyx to define a workflow with transformers that take values from multiple sources (inputs or other transformers)? Chris -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this

Re: Deploy best practices

2014-09-20 Thread Ruslan Prokopchuk
I use https://github.com/magnars/optimus to bundle assets, so it's not a problem to recompile clojurescript when old instance is running, because old compiled file seats in bundle cache. But do you mean that if I start aot-compiled uberjar it will start fast, so I can kill old instance and then

Re: [ANN] Onyx: Distributed data processing in Clojure

2014-09-20 Thread Mike Drogalis
Daniel: Haha, yes! Shame that I tried to be smooth in open sourcing it, and managed to botch it in the worst possible manner. Rangel: I can't speak to ZeroMQ, but I chose HornetQ because of its performance, support for transactions, and support for clustering. That being said, everything that touc

BeClojure beginners evening in Leuven - 5 November 2014

2014-09-20 Thread Thomas Goossens
Hello everyone, This message is targeted at *clojure people in Belgium.* BeClojure organises a free event for beginners in #Leuven . You will be submerged into the vibrant Clojure world in a staggering 4 hours. This event is *free* and *public to everyone

clojure.org uses a wikispaces TLS certificate

2014-09-20 Thread Alex Miller
Clojure.org is hosted on wikispaces. For what purpose would you access it by https? -- 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: [ANN] www.core-async.info: a new web resource for core.async

2014-09-20 Thread Daniel Solano Gómez
On Fri Sep 19 13:14 2014, Wilker wrote: > One suggestion, on the menus, like on this page: > http://www.core-async.info/reference > > Set the cursor for "pointer" on those root menu elements, so the users know > that it's supposed to be clickable, I took a few to realize because of the > missing p

[ANN] org.clojure/tools.namespace "0.2.7" fixes broken 0.2.6

2014-09-20 Thread Stuart Sierra
tools.namespace: parse namespace declarations and reload files in dependency order. https://github.com/clojure/tools.namespace Release 0.2.7 reverts a bad commit, mistakenly included in 0.2.6, which could cause the 'unload' order of namespaces to be incorrect. The impact of this bug is minimal,

Re: Rich Hickey's Transducers talk from Strange Loop

2014-09-20 Thread Fergal Byrne
Thanks Alex, right up there with the best Rich talks, and in record time! On Sat, Sep 20, 2014 at 6:35 AM, Wilker wrote: > Awesome! Thank you very much! > > --- > Wilker Lúcio > http://about.me/wilkerlucio/bio > Woboinc Consultant > +55 81 82556600 > > On Fri, Sep 19, 2014 at 5:33 PM, Bruce Du

ANN Standalone Leiningen 2.5.0

2014-09-20 Thread Michael Klishin
Standalone Leiningen [1] is a distribution of Leiningen which doesn't require downloading .jars to ~/.lein and thus can work in environments with restricted network connectivity, embedded into other tools, build pipelines, etc. It does not modify Leiningen in any other way. The project now provide

Re: Deploy best practices

2014-09-20 Thread Laurent PETIT
I also wanted to point this to you: doing the clojure / clojurescript compilation in a first step (so to say, create an über jar), and then just start the über jar. Note that this doesn't require you to change your current workflow if you're used to the "git push" triggers redeploy strategy. The