Re: ClojureScript Repl -- Swank-like workflow with Emacs?

2011-11-25 Thread Wilkes Joiner
That was it! I add meta content=text/html;charset=UTF-8 http-equiv=content-type, and it seems to work fine now. Back to being hyper-productive. :) -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to

(refer '[clojure.core :exclude [==]])

2011-11-25 Thread cej38
I used lein to create a new project. Here is my project.clj file: (defproject SUDOKU_CLOJURE 0.01 :description My superduper SUDOKU solver. :dependencies [[org.clojure/clojure 1.3.0] [org.clojure/core.logic 0.6.5]]) After running lein deps I then run lein repl and then try

Problem with Korma and clj-soap

2011-11-25 Thread Dennis Crenshaw
So I'm trying to create a drop-in implementation of a SOAP webservice with Clojure. Naturally I look into libraries that accomplish the different bits. I need something to do SQL work with a relational db (Kormahttps://github.com/ibdknox/korma, check!) and I need to present a SOAP interface

Re: (refer '[clojure.core :exclude [==]])

2011-11-25 Thread Baishampayan Ghose
I used lein to create a new project.  Here is my project.clj file: (defproject SUDOKU_CLOJURE 0.01  :description My superduper SUDOKU solver.  :dependencies [[org.clojure/clojure 1.3.0]                 [org.clojure/core.logic 0.6.5]]) After running lein deps I then run lein repl and then

Re: (refer '[clojure.core :exclude [==]])

2011-11-25 Thread Tassilo Horn
cej38 junkerme...@gmail.com writes: Hi, REPL started; server listening on localhost port 19922 user= (refer '[clojure.core :exclude [==]]) ClassCastException clojure.lang.PersistentVector cannot be cast to clojure.lang.Symbol clojure.core/find-ns (core.clj:3657) The syntax is wrong. You

Re: (refer '[clojure.core :exclude [==]])

2011-11-25 Thread cej38
I was getting the same error when I tried to use (:refer [clojure.core :exclude [==]]) in a name space definition. The following worked. On Nov 25, 10:55 am, Tassilo Horn tass...@member.fsf.org wrote: user (ns core-logic-playground          (:refer-clojure :exclude [==])          (:use

Re: contrib.duck-streams or contrib.io?

2011-11-25 Thread Sean Corfield
On Thu, Nov 24, 2011 at 9:20 PM, Daniel Glauser danglau...@gmail.com wrote: I starting to do some simple file IO stuff with Clojure and was wondering which namespace was considered the best one to use, contrib.duck-streams on contrib.io? duck-streams was deprecated a while back I believe and

clojure.contrib.repl-utils/show breaks with NoSubMethodError

2011-11-25 Thread Curious Fox
Hi, I keep running into NoSuchMethodError on any call to clojure.contrib.repl-utils/show in REPL with clojure 1.3.0: $ lein repl = (use 'clojure.contrib.repl-utils) ;; bunch of warnings skipped = (clojure.contrib.repl-utils/show 1) NoSuchMethodError

Re: clojure.contrib.repl-utils/show breaks with NoSubMethodError

2011-11-25 Thread Sean Corfield
On Fri, Nov 25, 2011 at 3:00 PM, Curious Fox fra...@gmail.com wrote: I keep running into NoSuchMethodError on any call to clojure.contrib.repl-utils/show in REPL with clojure 1.3.0: The old contrib libraries are, for the most part, deprecated and not guaranteed to work with Clojure 1.3.0. See

Re: clojure.contrib.repl-utils/show breaks with NoSubMethodError

2011-11-25 Thread Curious Fox
Oh, I see. Do you know by any chance is there any equivalent to clojure.contrib.repl-utils/show in the new set of libraries? I.e. is there a standard and recommended way to inspect all object's properties and methods in REPL? Thanks again, - F On Nov 25, 4:44 pm, Sean Corfield

Re: clojure.contrib.repl-utils/show breaks with NoSubMethodError

2011-11-25 Thread Sean Corfield
On Fri, Nov 25, 2011 at 5:09 PM, Curious Fox fra...@gmail.com wrote: Do you know by any chance is there any equivalent to clojure.contrib.repl-utils/show in the new set of libraries? I.e. is there a standard and recommended way to inspect all object's properties and methods in REPL? Take a