Most frequently enabled Emacs packages - adereth

2013-12-08 Thread Ivan Pierre
As part of the Emacs-24.4 release, emacs-devel is conducting a surveyto find out which vanilla GnuEmacs packages/modes people enable by default. The responses are in one big plain-text alphabetical list which isn’t really

Re: core.async/thread failing silently

2013-12-08 Thread Colin Jones
I've run this a bunch of times (in BOTH `lein repl` and `java -cp [...] clojure.main`), and have observed both this code printing the OOM exception, and it being silent as you observed. The difference in trials *seems* to be that if I skip the intermediate steps, going straight for the big one

Re: clojure java.jdbc db-do-prepared and dynamic parameters

2013-12-08 Thread Sean Corfield
Do you want that specific piece of (procedural) Java converted to Clojure or do you have a real use case in the context of a real problem that you're trying to solve? I suspect just showing you what that piece of Java would look like in Clojure isn't going to teach you how to do this in general...

Re: Clojure User Groups in Brazil

2013-12-08 Thread Geraldo Lopes de Souza
Demorou :) (finally) Unfortunately I can't attend, but I want to express my joy. Good luck to us brazilian clojurians. Geraldo On Sunday, December 8, 2013 4:55:41 PM UTC-2, Plinio Balduino wrote: > > '(hi friends) > > I'm glad to announce two meetings about Clojure at December 11th, in > Sao

Clojure User Groups in Brazil

2013-12-08 Thread Plínio Balduino
'(hi friends) I'm glad to announce two meetings about Clojure at December 11th, in Sao Paulo and Rio de Janeiro. The former (clj-sp), the Clojure User Groups of Sao Paulo is now called Clojure User Groups of Sao Paulo and Rio de Janeiro, and maybe we will change its name to (clj-br) or Clojure Br

Re: java.jdbc not working with my jdbc driver

2013-12-08 Thread Avinash Dongre
Thanks Everything is working as per expectation. On Friday, December 6, 2013 6:38:23 PM UTC+5:30, Avinash Dongre wrote: > > Hi > I have our own jdbc driver when I am trying to use clojure java.jdbc it is > giving me error like below > > Exception in thread "main" java.lang.ClassCastException: >

clojure java.jdbc db-do-prepared and dynamic parameters

2013-12-08 Thread Avinash Dongre
I see following example in Clojure.java.jdbc (sql/db-do-prepared db "INSERT INTO fruit2 ( name, appearance, cost, grade ) VALUES ( ?, ?, ?, ? )" ["test" "test" 1 1.0]) But how do i convert following java code into clojure. I am new to clojure and not sure how to i pass multiple vector final

Re: core.async/thread failing silently

2013-12-08 Thread Paul Butcher
On 8 Dec 2013, at 14:21, Alex Miller wrote: > If you're starting with lein repl then I would expect errors to be printed at > the console - that's the actual process running the code. It's also possible > that the thread's untaught exception handler doesn't print. I know that the > expectation

[ANN] Static Prime - Alpha 2

2013-12-08 Thread Kelker Ryan
Static Prime is a static website editor and server written in Clojure and ClojureScript. Visual Documentation Video Demo (Vimeo) Video Demo (Dailymotion)Supportsin browser mouse only layout arrangementdynamic template loading for static filesstatic site indexmultiple adminshtml and markdown editing

Re: core.async/thread failing silently

2013-12-08 Thread Alex Miller
If you're starting with lein repl then I would expect errors to be printed at the console - that's the actual process running the code. It's also possible that the thread's untaught exception handler doesn't print. I know that the expectation for async go blocks is that you should catch and hand

Re: core.async/thread failing silently

2013-12-08 Thread Paul Butcher
On 8 Dec 2013, at 05:04, Alex Miller wrote: > Errors are most likely occurring on a thread different than main. Assuming > you're using nrepl, have you looked at the nrepl-error buffer? Thanks. I wasn't aware of nrepl-error. Some quick googling has turned up a few articles about how to see nre