Re: ClojureScript repl over proxy

2021-04-22 Thread Lars Rune Nøstdal
Hi, I would stick with SSH tunnels for this tbh.. Because once you fix this particular issue right here, there's 2-3 similar issues showing up in 2-4 months; who knows. I use a tiny bash script in each project that deals with the particular ports needed. mvh, L On Wednesday, April 21, 2021 at

Re: Clojure, JVM and/or ASM bug?

2019-02-06 Thread Lars Rune Nøstdal
it tricky to setup -- but yeah; no leaks here for now. It's interesting that I have a sort of more explicit buffer in the *middle* chan I can fiddle around with too now! Mvh, Lars > > > On Wednesday, February 6, 2019 at 7:57:57 AM UTC-6, Lars Rune Nøstdal > wrote: >> >&

Clojure, JVM and/or ASM bug?

2019-02-06 Thread Lars Rune Nøstdal
(conveyor?); all held together by circular references (AFAICT). -- Mvh, Lars Rune Nøstdal https://www.quanto.ga/ -- 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 po

Re: [ANN] nREPL 0.4.5 released!

2018-09-03 Thread Lars Rune Nøstdal
Hi, I still get this when I do `cider-jack-in`: ;; CIDER 0.18.0 (package: 20180902.1638) (Saigon), nREPL 0.2.13 ..I've removed all mentions of "nrepl" in package.clj, but it seems lein (I think?) still loads the old 0.2.13 version. Thanks for your work on this stuff by the way; it's

Re: [ANN] Clojure 1.8.0-beta1

2015-10-13 Thread Lars Rune Nøstdal
Just a heads up that http://dev.clojure.org/jira/browse/CLJ-1809 is still a problem. A lot of Clojure code fails to compile now. I hope this will be fixed before 1.8 final is out. On Tuesday, October 13, 2015 at 4:01:06 PM UTC+2, Alex Miller wrote: > > Clojure 1.8.0-beta1 is now available. > >

clojure 1.8 java.lang.VerifyError method: invokeStatic signature: Can only throw Throwable objects

2015-10-01 Thread Lars Rune Nøstdal
Hi, Anyone playing around with 1.8 from Git? It has problems compiling this for some reason: (defn blah [] (let [a (atom nil) b nil] (try (println "hi") (catch Throwable e (println e)) (finally (when (and (deref a) b) (println "huh"))

Re: clojure 1.8 java.lang.VerifyError method: invokeStatic signature: Can only throw Throwable objects

2015-10-01 Thread Lars Rune Nøstdal
On Thursday, October 1, 2015 at 12:59:39 PM UTC+2, Nicola Mometto wrote: > > > http://dev.clojure.org/jira/browse/CLJ-1809 > Awesome; thank you. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to

Re: [ANN]: clj.jdbc 0.1-beta1 - Alternative implementation of jdbc wrapper for clojure.

2013-11-29 Thread Lars Rune Nøstdal
Looks interesting. It even has the issue tracker on github still enabled. -- -- 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 be

defonce is not thread safe (racy)

2012-01-12 Thread Lars Rune Nøstdal
Hi, defonce is not thread safe (racy). -- 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 be patient with your first post. To

Re: Quartz and Clojure

2011-12-07 Thread Lars Rune Nøstdal
You've probably found this by now, but there's: https://github.com/mdpendergrass/quartz-clj -- 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 -

Re: Downloading the documentation?

2011-11-13 Thread Lars Rune Nøstdal
The Clojure gh-pages branch contains the API docs, but as far as I can tell it doesn't contain the stuff found on clojure.org. -- 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

Re: where can I find the official statement about changes from 1.2 to 1.3?

2011-10-10 Thread Lars Rune Nøstdal
https://github.com/clojure/clojure/blob/1.3.x/changes.txt I think. -- 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 be patient with

Getting Slime to catch exceptions from spawned threads

2011-08-31 Thread Lars Rune Nøstdal
How does one go about getting Slime to catch exceptions from spawned threads: user (.start (Thread. (fn [] (/ 42 0 The above exception ends up outside of Slime now; back in the terminal where `lein swank' was started. I tried using a future also, but it has some properties I don't

Re: Lein uberjar hangs when swank is required in the namespace.

2011-08-25 Thread Lars Rune Nøstdal
It's hanging here too, but I have no idea why; I'm not including swank. Is there any verbose mode for lein? -- 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

Re: Alright, fess up, who's unhappy with clojurescript?

2011-07-28 Thread Lars Rune Nøstdal
.. but isn't jQuery and ExtJS totally different things? -- 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 be patient with your first

Re: Alright, fess up, who's unhappy with clojurescript?

2011-07-25 Thread Lars Rune Nøstdal
I'd say Google Closure/Libray is more idiomatic JavaScript than jQuery; jQuery is more sugary and has a different feel to it. I like jQuery, but I completely see why that is not a the most optimal base to build on when something like Google Closure exists. Rich mentioned, however, that people

Clojure + PostgreSQL

2011-06-26 Thread Lars Rune Nøstdal
Hi guys, Anyone using Clojure and PostgreSQL? I'm trying to access PostgreSQL using https://github.com/clojure/java.jdbc at the moment, but it seems to have trouble with simple inserts: (insert-record :temp {:parent 42}) #PSQLException org.postgresql.util.PSQLException: A result was

Re: Clojure + PostgreSQL

2011-06-26 Thread Lars Rune Nøstdal
Quick change to do-prepared* in internal.clj: (defn do-prepared* Executes an (optionally parameterized) SQL prepared statement on the open database connection. Each param-group is a seq of values for all of the parameters. [return-keys sql param-groups] (with-open [stmt (if

Re: Applying Java functions

2011-06-18 Thread Lars Rune Nøstdal
Hi, user (definline sqrt [x] `(Math/sqrt ~x)) #'user/sqrt user (map sqrt (range 1 10)) (1.0 1.4142135623730951 1.7320508075688772 2.0 2.23606797749979 2.449489742783178 2.6457513110645907 2.8284271247461903 3.0) -- http://www.nostdal.org/ -- You received this message because you are