ANN Elastisch 2.2.0 is released

2016-01-03 Thread Michael Klishin
Elastisch [1] is a minimalistic feature complete Clojure client for ElasticSearch. Release notes: http://blog.clojurewerkz.org/blog/2016/01/04/elastisch-2-dot-2-0-is-released/ 1. http://clojureelasticsearch.info/ -- MK http://github.com/michaelklishin http://twitter.com/michaelklishin -- You

[Clojurescript] .getElementById returns NULL

2016-01-03 Thread Francis Avila
Your problem is unrelated to clojurescript. Your script runs before the body is loaded, so the test-content element doesn't exist yet. Either load your script at the end of the body, or wrap your code in a document.onload event handler. -- You received this message because you are subscribed

Re: [Clojurescript] .getElementById returns NULL

2016-01-03 Thread Ryan Fowler
On Sun, Jan 3, 2016 at 8:04 PM, Nathan Smutz wrote: > > (.log js/console (. js/document getElementById "test-content")) > > ​I suspect you need something more like this: ​ (.log js/console (.getElementById js/document "test-content"))​ -- You received this message because you are subscribe

[Clojurescript] .getElementById returns NULL

2016-01-03 Thread Nathan Smutz
Sorry if this is something trivial. I tried to do some due diligence googling with no luck. The function getElementById seems to be returning null where it shouldn't. I'm currently using lein-cljsbuild 1.1.2 clojure 1.7.0 clojurescript 1.7.170 and compiling with optimizations: :none Here's my

Re: What's the best option similar to Vert.x, Reactor, Nodejs for use with Clojure?

2016-01-03 Thread kovas boguta
I would also look at https://github.com/ztellman/aleph and https://github.com/ztellman/manifold, but like Timothy says its hard to judge without more details. On Sun, Jan 3, 2016 at 4:24 PM, Timothy Baldridge wrote: > I've done some evaluations of Vert.x in the past and was rather > underwhel

Re: org-mode Clojure babel

2016-01-03 Thread Stuart Sierra
I recently adapted my Emacs config to work with Org 8.3.2 and CIDER 0.10.0. Here it is.

Re: What's the best option similar to Vert.x, Reactor, Nodejs for use with Clojure?

2016-01-03 Thread Timothy Baldridge
I've done some evaluations of Vert.x in the past and was rather underwhelmed. What is it that you are trying to accomplish? Stuff like Pedestal offers async web services, but without the complexity of an traditional evented server. So perhaps if we had a better idea of your requirements we could be

Re: Reducing the pain of a clojars outage

2016-01-03 Thread Nando Breiter
I've spent some time looking into both Cloudflare and Fastly over the weekend. Fastly seems to have a sophisticated purging mechanism which the ticket mentions would be a requirement. See https://docs.fastly.com/guides/purging/ Initial setup is dead easy (for both), basically requiring a signup an

What's the best option similar to Vert.x, Reactor, Nodejs for use with Clojure?

2016-01-03 Thread adrians
It used to be that Vert.x 2.x had integration for Clojure, but version 3.x hasn't added it yet. Has anyone used this version through the Java API and if so, how painful was it? Is Reactor any better in that respect? What are people using when they want this kind of ba

Re: Reducing the pain of a clojars outage

2016-01-03 Thread Toby Crawley
Cloudflare (or a similar CDN) would be useful - we have an open issue to implement that, but haven't had a chance to get to it: https://github.com/clojars/clojars-web/issues/434 - Toby On Sat, Jan 2, 2016 at 4:30 AM, Nando Breiter wrote: > Would CloudFlare help on the short term? I haven't used