Re: Designing for Simplicity

2012-11-22 Thread JuanManuel Gimeno Illa
This series of posts can be useful to you http://stevelosh.com/blog/2012/07/caves-of-clojure-01/ Juan Manuel -- 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 membe

Re: ease of use

2012-11-22 Thread Sean Corfield
On Thu, Nov 22, 2012 at 5:39 PM, atucker wrote: > Thanks all! Sounds like I need to install some more stuff. I'll +1 what some of the others have said: I too started with Aquamacs and was told "don't do that" and later learned they were right! Emacs 24.x from the emacsformacosx.com site will b

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

2012-11-22 Thread JvJ
It's not working. In fact, I can't evaluate any code in the REPL at all. The prompt is there, but nothing happens when I press enter. On Thursday, 22 November 2012 19:20:17 UTC-5, Marc wrote: > > I am using Sublime Text 2 on Windows 7 Professional with a remote telnet > REPL. When editing a C

Re: ease of use

2012-11-22 Thread atucker
Thanks all! Sounds like I need to install some more stuff. One more question if anyone knows: didn't it use to be possible to make parallel connections to the same server? Can't seem to do it with the new set-up... A On Friday, November 23, 2012 12:37:33 AM UTC, Las wrote: > > Alternatively,

Re: ease of use

2012-11-22 Thread László Török
Alternatively, do as Moritz suggested, except don't install packages manually via M-x package-list-packages, but rather go and get https://github.com/overtone/emacs-live then nrepl.el keybindings are documented at https://github.com/kingtim/nrepl.el Good luck! Las 2012/11/23 Moritz Ulrich >

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

2012-11-22 Thread Marc
I am using Sublime Text 2 on Windows 7 Professional with a remote telnet REPL. When editing a Clojure source code file, to evaluate it, I hold CTRL key down, press comma key twice, release CTRL key, then press lower case f (for file). This works for me. On Thursday, November 22, 2012 5:56:30

Re: ease of use

2012-11-22 Thread Moritz Ulrich
Don't use Aquamacs. I don't know of the current state, but some time ago experienced the same stuff. It "somehow doesn't work" when using Aquamacs. I recommend Emacs.app from http://emacsformacosx.com or installation via homebrew (brew install emacs --cocoa && brew linkapps). M-x package-list-pack

Re: ease of use

2012-11-22 Thread atucker
Happy Thanksgiving! You're right of course. I guess my problem is with the emacs set-up, I should make a proper report on the dedicated mailing lists. In general terms, I just find it surprising that it's getting harder not easier. I've tried with emacs on linux but apparently version 22 is t

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

2012-11-22 Thread JvJ
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: > > I am trying this out with clojure on windows sublime 2.0.1. > > i get the clojure repl up using 'ctrl+f12' then 'c' then 's' > then i type (pr

Re: ease of use

2012-11-22 Thread Aaron Cohen
Reports like this are only as valuable as the information they provide. While we're sympathetic with your frustration, you haven't even begun to give us anything to go on in terms of 1) helping you with your problem or even 2) improving Clojure. Happy Thanksgiving! On Thu, Nov 22, 2012 at 5:47 P

Re: ease of use

2012-11-22 Thread atucker
Sorry, I'm in a bad mood. For context, after hours of struggling with Aquamacs and the new nrepl, I find it's overwritten my last two days' work. I guess it's likely my fault, I probably clicked the wrong key in my frustrated eightieth attempt to restart the repl. On Thursday, November 22, 2012

ease of use

2012-11-22 Thread atucker
K guys, I honestly don't want to piss on Clojure, I know how hard a lot of people have worked for a long time in order to make this a viable language. I respect and am grateful for your dedication. But you should know this: every time I come back to use Clojure I find that it's become harde

Re: core.logic and laziness...

2012-11-22 Thread Jim foo.bar
On 22/11/12 16:25, David Nolen wrote: core.logic has lazy-run. ooo thanks a lot!!! Jim -- 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 - p

Re: core.logic and laziness...

2012-11-22 Thread David Nolen
core.logic has lazy-run. On Thursday, November 22, 2012, Jim foo.bar wrote: > Hi all, > > this question may sound stupid but I've got to ask it > given a fn like the one below, how would one make it lazy (assuming that > it can be done)? > also if it can, I'd like to make it fully-lazy (inste

core.logic and laziness...

2012-11-22 Thread Jim foo.bar
Hi all, this question may sound stupid but I've got to ask it given a fn like the one below, how would one make it lazy (assuming that it can be done)? also if it can, I'd like to make it fully-lazy (instead of chunked-lazy)...any ideas? I remember something about restoring '1 at a time' l

Removing URLClasspath from Pomegranate

2012-11-22 Thread Chas Emerick
Tobias Crawley rightly suggested that Pomegranate's URLClasspath protocol should be factored out into a separate project, so as to provide a common abstraction for interacting with dynamic classloaders. The new project (dynapath @ https://github.com/tobias/dynapath) is already being used by oth

Re: refer-clojure seems to have no effect.

2012-11-22 Thread Chas Emerick
The user namespace is implicitly created with a blanket refer for clojure.core; removing the mapping for e.g. '== in user would require using ns-unmap. Just use a different namespace. - Chas On Nov 22, 2012, at 8:40 AM, Frederik De Bleser wrote: > Hi, > > I'm trying to use core.logic using th

refer-clojure seems to have no effect.

2012-11-22 Thread Frederik De Bleser
Hi, I'm trying to use core.logic using the following namespace expression (modelled on core.logic's own test file): (ns user (:refer-clojure :exclude [==]) (:use clojure.core.logic)) However, this gives the following warning: WARNING: == already refers to: #'clojure.core/==