Re: Clojure rookie vs parsing

2017-08-15 Thread adrians
If you need the features of Erlang but would like that in a Lisp (not Common Lisp, though) environment, have you taken a look at LFE (Lisp Flavored Erlang)? I'm not trying to discourage you from looking at Clojure, but if you need/depend on some of the features of Erlang, LFE might be a closer

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: Joxa (Re: Clojure on an Erlang-vm-os on Xen?)

2015-09-17 Thread adrians
Frank, I've also just found out about Lisp Flavored Erlang , which, based on what I've read, does take some inspiration from Clojure, as well as Common Lisp. It seems to be more active compared to Joxa. On Friday, August 24, 2012 at 5:12:40 PM UTC-4, FrankS wrote: > > Just got thi

Re: Counterclockwise's Plugin Shortcuts for OS X

2015-07-07 Thread adrians
Done. On Wednesday, July 8, 2015 at 12:17:15 AM UTC-4, Laurent PETIT wrote: > > If someone can file issues for: > - bundling the Error View in the standalone version of ccw > - find a way to check ccw min version to use for user plugins > > that would be great! > > -- You received this messag

Re: Counterclockwise's Plugin Shortcuts for OS X

2015-07-07 Thread adrians
>From the stack trace you have, it looks like some part of CCW is not installed properly in your Luna install, since a needed resource, p/skipped-plugin-message (which is ccw.core.user-plugins/skipped-plugin-message based on the plugin manager source), is not found. When you say you "installed

Re: Counterclockwise's Plugin Shortcuts for OS X

2015-07-07 Thread adrians
n in Window means execute. Unbinding doesn't help. > > On Tue, Jul 7, 2015 at 4:13 PM, adrians > > wrote: > >> >> I just checked this plugin on my Eclipse setup (Windows) and it works >> fine, with Ctrl+U E - the first time took a little while to get the

Re: Counterclockwise's Plugin Shortcuts for OS X

2015-07-07 Thread adrians
I just checked this plugin on my Eclipse setup (Windows) and it works fine, with Ctrl+U E - the first time took a little while to get the dependencies pulled down. Subsequent invocations don't take too long, but the linting is not instantaneous, so don't panic if you don't see anything. I guess

Re: Counterclockwise's Plugin Shortcuts for OS X

2015-07-07 Thread adrians
Good one - I was almost going to be the straight guy for that. On Tuesday, July 7, 2015 at 2:56:08 PM UTC-4, Luc wrote: > > Create an external tool command (lein eastwood) perhaps ? > > Sorry, could not resist :) > > Luc P. > > -- You received this message because you are subscribed to the G

Re: Counterclockwise's Plugin Shortcuts for OS X

2015-07-07 Thread adrians
If you check the error view, do you see the Eastwood user plugin being loaded? There should be some logged output in there from all the user plugins that Eclipse/CCW sees. If it is there, then, according to the Eastwood plugin's readme it should be Cmd+U E to invoke the plugin. On Tuesday, Ju

Re: Clarity Keyboard by SwiftKey - Written in Clojure

2015-05-08 Thread adrians
Just tried the keyboard on my old Galaxy Nexus and I have to say that it felt really responsive (prediction works great, too). This really validates Clojure (well Skummet) for Android development, IMO. Congrats on pushing the boundaries and for the writeup around what you've done. I'm curious if

Re: Embedded systems and transpiling Clojure to Nim

2015-05-04 Thread adrians
Alan, have you looked at Clasp? I'm not sure if CL is something you like, but maybe it has potential for your application. https://github.com/drmeister/clasp -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to cloju

Re: [ANN] clj-refactor.el 0.10.0

2014-02-02 Thread adrians
t; useful too. > > I'm a little surprised Light Table doesn't offer these things already. > Isn't it a Clojure-centric editor? > > On Saturday, February 1, 2014 8:22:53 PM UTC+1, adrians wrote: >> >> Really cool stuff, guys. Are you considering a Light Table v

Re: [ANN] clj-refactor.el 0.10.0

2014-02-01 Thread adrians
Really cool stuff, guys. Are you considering a Light Table version as well? -- 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 patien

Re: [ANN] Overtone 0.9.0 Released

2013-11-28 Thread adrians
On Wednesday, November 27, 2013 1:00:29 PM UTC-5, puzzler wrote: > > One point of confusion for me when installing overtone was that the docs > say that the internal server "doesn't work everywhere", without providing > any info about what systems it is known to work on or known not to work on >

Nightcode Clojure syntax highlighting

2013-09-25 Thread adrians
Zach, I noticed that highlighting is broken on some Clojure files (the paredit widget ones, for example) and saw that the latest version (2.5.0) of RSyntaxTextArea might have addressed this according to the release notes. The project's github page already had an issue

Nightcode questions

2013-09-25 Thread adrians
Hi Zach, After trying various multi-key combinations in order to invoke some paredit commands, I ended up so that typing Ctrl+anything would insert odd, non alphanumeric characters into the edior (I'm using a US keyboard, btw). Even basics like ctrl-z, ctrl-s wouldn't do the right thing. Are yo

Re: [ANN] Nightcode 0.1.0, a Clojure IDE

2013-09-25 Thread adrians
Zach, have you considered using JavaFX instead of Swing and having an embedded JRE as a turnkey one file setup (see http://docs.oracle.com/javafx/2/deployment/packaging.htm)? You'd probably be able to build a UI with much more potential for the long run. On Wednesday, September 25, 2013 9:53:

Re: ANN: print-foo - a library of print debugging macros

2013-03-28 Thread adrians
Alex, print-foo *is* the correct artifact name, no? It seemed to be pulled down fine by pomegranate. On Thursday, March 28, 2013 2:35:31 PM UTC-4, Alex Baranosky wrote: > > Let me fix the README, the library should be required like this (:require > [print.foo :refer :all]) > -- -- You receive

Re: ANN: print-foo - a library of print debugging macros

2013-03-28 Thread adrians
Looks useful, but I'm getting this: user=> (use 'print-foo) FileNotFoundException Could not locate print_foo__init.class or print_foo.clj on classpath: clojure.lang.RT.load (RT.java:443) using lein 2.1.1 Cheers On Thursday, March 28, 2013 1:42:42 AM UTC-4, Alex Baranosky wrote: > > print-foo

Re: Immutant - NPE when deploying

2013-03-21 Thread adrians
Done - issue 41 On Thursday, March 21, 2013 11:15:46 AM UTC-4, Toby Crawley wrote: > > Can you file an issue at > https://github.com/immutant/lein-immutant/issues? No one on the Immutant > team uses windows on a daily basis, so the plugin doe

Immutant - NPE when deploying

2013-03-21 Thread adrians
I was trying to deploy a project using plugin 0.17.1 and incremental build 808 from the directory above the project. This resulted in the following NPE: C:\Users\adi>lein immutant deploy foobar java.lang.NullPointerException at leiningen.immutant.common$verify_root_arg.invoke(common.cl

Re: Anyone using Sublime Text 2 + SumblimeREPL with Windows?

2012-11-24 Thread adrians
Here's where things are - https://github.com/wuub/SublimeREPL/issues/48 On Thursday, November 22, 2012 5:56:30 PM UTC-5, JvJ wrote: > > Hi, I've started using Sublime as well, and I'm having the same problem. > Any progress? > > On Wednesday, 19 September 2012 03:27:01 UTC-4, cp16net wrote: >> >

Re: ANN Ritz 0.5.0

2012-09-21 Thread adrians
Hi Hugo, I'm trying to get ritz-nrepl going with the latest lein2 and nrepl.el from Melpa. I think I've followed the instructions on the project page, yet I get this, when I nrepl-ritz-jack-in: error in process sentinel: Could not start nREPL server: Exception in thread "main" java.lang.ClassN

Re: [ANN] Leiningen 2.0.0-preview3

2012-05-02 Thread adrians
I'm also getting this error, with same spec Windows but with Java 7. Unfortunately, I also get this with lein 1.7.1. Tried to build from source, but "lein install" generates a snapshot jar that only includes a few source files. Can anyone offer a solution to building your own lein? Thanks, Adri