Re: Calling proxy without reflection

2018-08-01 Thread Mark Engelberg
For those following along at home, it turned out not to be a problem with the lein-virgil plugin. It's apparently a bug in Clojure. Renzo and I distilled it down to the following steps: user=> (definterface Interface (test [])) user.Interface user=> (def p (proxy [Object Interface] [] (test [] 1

RE: What Happened to "java -jar clojure.jar hosehead.clj" ?

2018-08-01 Thread Sean Corfield
But you’d need the Internet to download the “whatever” from clojure.org, so what’s the difference between that and an install of `clj` and then running it once (which downloads all the necessary bits)… and then you can run it offline as often as you want for a basic REPL with no additional depen

RE: What Happened to "java -jar clojure.jar hosehead.clj" ?

2018-08-01 Thread Didier
I think overall, it makes sense to modularize clojure. But I'm compassionate to the no internet style mindset. So I wonder if there could be a download on the clojure.org website which is an uberjar of Clojure and it's latest required dependencies? Specifically for such use case. -- You receiv

[CfP] Clojure Developer Conference, Berlin

2018-08-01 Thread doctronic
[image: 🇦🇺][image: 🇦🇹][image: 🇧🇪][image: 🇧🇷][image: 🇨🇦][image: 🇨🇿][image: 🇩🇰][image: 🇬🇶][image: 🇫🇮][image: 🇫🇷][image: 🇬🇪][image: 🇩🇪][image: 🇮🇪][image: 🇮🇹][image: 🇳🇱][image: 🇵🇱][image: 🇷🇺][image: 🇸🇰][image: 🇿🇦][image: 🇪🇸][image: 🇨🇭][image: 🇸🇪][image: 🇺🇦][image: 🇬🇧][image: 🇺🇸] *:clojureD

Re: Calling proxy without reflection

2018-08-01 Thread Renzo Borgatti
Commented in pull request https://github.com/Engelberg/mister-rogers/pull/1 > On 1 Aug 2018, at 02:38, Mark Engelberg wrote: > > I am seeing the same behavior when I remove the lein-virgil plugin. > > On Tue, Jul 31, 2018 at 11:38 AM, Mark Engelberg > wrote: > That's surprising, but good to k