Clojure is a modern Lisp dialect for the Java Virtual Machine (with versions for the CLR and JavaScript).

learn more… | top users | synonyms (1)

4
votes
1answer
212 views

Avoiding symbol capture when using macros to generate functions (or other macros)

I'm a bit confused as to exactly when symbol capture will occur with clojure macros. Suppose that I have a macro which defines a function from keywords. In this trivial example, (defmacro foo ...
1
vote
1answer
188 views

macro how deal with sql like fn use map

i want use one macro to handle with seq paramter, but i do not know how! eg: (defmacro create-table-def [s] `(let [ks# (keys (struct-map ~s)) sql# (map (fn [p#] (str (name p#) " ...
6
votes
1answer
2k views

Tips for Html parsing and web driving with clojure?

I want to automate filling in data on a website using clojure. For this I want to query elements of webpages and create http requests. I have been looking at using HttpUnit and ...
16
votes
3answers
2k views

Good concurrency example of Java vs. Clojure

Clojure is said to be a language that makes multi-thread programming easier. From the Clojure.org website: Clojure simplifies multi-threaded programming in several ways. Now I'm looking for a ...
13
votes
1answer
905 views

Clojure deployment?

What is the easiest way to make a clojure app into an executable like http://rawr.rubyforge.org/ does for ruby? (exe and app files too)
8
votes
2answers
2k views

Clojure load files

I'm trying to set up a simple clojure project, and I'm not sure how to load files between the project. I'm sure that the answer is in the documentation, but I can't find a simple answer any where and ...
7
votes
5answers
657 views

How to do animation using swing and clojure?

I'm trying to animate a chess piece in a board. First I created a java.util.Timer object that "scheduleAtFixedRate" a TimerTask implemented as a proxy function. So I kept a record of the piece to move ...
6
votes
2answers
3k views

Could not locate compojure in classpath

I am trying the various Getting started examples and I can get a basic hello world example working with basic HTML in the route as such (ns hello-world (:use compojure.core ring.adapter.jetty) ...
9
votes
2answers
1k views

How Can I Output an HTML Comment in Compojure/Hiccup?

I'd like my program to output the following HTML: <!--[if lt IE 8]><link rel="stylesheet" href="../blueprint/ie.css" type="text/css" media="screen, projection"><![endif]--> Is ...
9
votes
3answers
2k views

Escape/sanitize user input in Clojure/Compojure

I am using Clojure/Ring/Compojure-0.4/Enlive stack to build a web application. Are there functions in this stack that would either strip HTML or HTML-encode (i.e. <a> to &lt;a&gt;) ...
4
votes
5answers
194 views

type inference still need enhance,any better suggestion for this example?

for instance in Clojure: user=> (map #(* % 2) (concat [1.1 3] [5 7])) (2.2 6 10 14) but in Scala: scala> List(1.1,3) ::: List(5, 7) map (_ * 2) <console>:6: error: value * is not a ...
13
votes
2answers
837 views

“reduce” or “apply” using logical functions in Clojure

I cannot use logical functions on a range of booleans in Clojure (1.2). Neither of the following works due to logical functions being macros: (reduce and [... sequence of bools ...]) (apply or [... ...
3
votes
1answer
743 views

Problem with Clojure function

everyone, I've started working yesterday on the Euler Project in Clojure and I have a problem with one of my solutions I cannot figure out. I have this function: (defn find-max-palindrom-in-range ...
0
votes
1answer
298 views

Mutation Problem - Clojure

having trouble changing an element of my function represented as a list. code for random function: (defn makerandomtree-10 [pc maxdepth maxwidth fpx ppx] (if-let [output (if (and (< (rand) ...
21
votes
7answers
4k views

Learning functional/Clojure programming - practical exercises?

I'm learning functional programming with Clojure. What practical exercises can you recommend? Online repositories with solutions would be perfect. One idea I can think of is going through all the ...
3
votes
1answer
405 views

Finding vars from dynamically created namespaces in clojure

The following test fails: (ns clojure_refactoring.rename-fn-test (:use clojure.test)) (deftest test-fn-location (in-ns 'refactoring-test-fn-rename) (clojure.core/refer-clojure) (defn a [b] ...
5
votes
7answers
406 views

How roughen (as opposed to flatten) a list in a functional style?

For instance, I have a list (1 2 3 4 5 6 7 8 9 10 11), and want to roughen it by 3 elements (or another length) to get ((1 2 3) (4 5 6) (7 8 9) (10 11)). What pretty code could I use for this? Thanks. ...
8
votes
2answers
1k views

Insertions into Zipper trees on XML files in Clojure

I'm confused as how to idiomatically change a xml tree accessed through clojure.contrib's zip-filter.xml. Should be trying to do this at all, or is there a better way? Say that I have some dummy xml ...
6
votes
2answers
330 views

Security implications of Clojure keyword creation from user data?

Suppose that I take a user-supplied string, userstring, and call (keyword userstring) on it. Are there any security concerns about doing this? And if so, what would be the best way to mitigate them? ...
4
votes
1answer
131 views

Strange behaviour of keywords within macros in Clojure

I'm a little confused by how keyword accesses seem to behave in Clojure when they are evaluated at macro expansion time. The following works as I expect: (def m {:a 1}) (:a m) => 1 However the ...
12
votes
1answer
3k views

Using clojure.contrib functions in slime REPL

I want to use the functions in the clojure.contrib.trace namespace in slime at the REPL. How can I get slime to load them automatically? A related question, how can I add a specific namespace into a ...
7
votes
1answer
797 views

How can I define a clojure type that implements the servlet interface?

I'm attempting to use deftype (from the bleeding-edge clojure 1.2 branch) to create a java class that implements the java Servlet interface. I would expect the code below to compile (even though it's ...
11
votes
2answers
609 views

Clojure: Equivalent to Common Lisp READ function?

When I want to read in an S-expression stored in a file into a running Common Lisp program, I do the following: (defun load-file (filename) "Loads data corresponding to a s-expression in file with ...
5
votes
3answers
2k views

Clojure vars and Java static methods

I'm a few days into learning Clojure and are having some teething problems, so I'm asking for advice. I'm trying to store a Java class in a Clojure var and call its static methods, but it doesn't ...
3
votes
1answer
851 views

Wrong number of args passed to: repl$repl

I have a trouble with a compojure "Getting started" example that I do notunderstand. When I run the example from http://weavejester.github.com/compojure/docs/getting-started.html ...I get the ...
4
votes
3answers
106 views

How to map a test onto a list of numbers

I have a function with a bug: user> (-> 42 int-to-bytes bytes-to-int) 42 user> (-> 128 int-to-bytes bytes-to-int) -128 user> looks like I need to handle overflow when converting ...
3
votes
2answers
192 views

why can't I call .update on a MessageDigest instance

when i run this from the repl: (def md (MessageDigest/getInstance "SHA-1")) (. md update (into-array [(byte 1) (byte 2) (byte 3)])) I get: No matching method found: update for class ...
6
votes
1answer
1k views

How to break out from nested doseqs

I have a question regarding nested doseq loops. In the start function, once I find an answer I set the atom to true, so that the outer loop validation with :while fails. However it seems that it ...
8
votes
1answer
429 views

How do nested dosync calls behave?

What happens when you create nested dosync calls? Will sub-transactions be completed in the parent scope? Are these sub-transations reversible if the parent transaction fails?
16
votes
1answer
1k views

Controlling symbol generation in Clojure macros

I'm trying (as a self-learning exercise) to create a Clojure macro that will generate code to apply a function to a sequence of integers and sum the result, e.g. f(0) + f(1) + f(2) + f(3) This is ...
4
votes
1answer
556 views

Atoms and references

According to the book Programming Clojure refs manage coordinated, synchronous changes to shared state and atoms manage uncoordinated, synchronous changes to shared state. If I understood correctly ...
9
votes
8answers
3k views

Alternatives to java on android

I just got myself an android phone and I'm dying to start coding on it ! However I'm not a big java fan, although I can live with that, I would like to know if there're reasonable alternatives for the ...
1
vote
2answers
449 views

How to rename an operation in Clojure?

In my list, addition, the operation + appears as #. How can I make this appear exactly as +? When I eval it, it should also work exactly the same as +. I guess this would also apply in all kinds of ...
2
votes
1answer
1k views

Clojure: using *command-line-args* in the script rather than REPL

I've clojure running within Eclipse. I want to pass arguments to clojure when running it. In the below the arguments are available in the REPL but not in the script itself. What do I need to do such ...
1
vote
2answers
149 views

How to run Clojure tests on Windows?

I put Clojure in C:\clojure-1.1.0, and start the REPL by: java -cp clojure.jar clojure.main In \test\clojure\test_clojure, there are a bunch of test files. How to run these? For example, I ...
4
votes
5answers
1k views

Returning from a function while inside one or more nested loops?

Is there a way to immediately return from a function when in one or more nested loops? Here's some sample code illustrating the problem: ; Grid data structure ; ------------------- (defstruct grid ...
6
votes
2answers
499 views

Dynamically generating high performance functions in clojure

I'm trying to use Clojure to dynamically generate functions that can be applied to large volumes of data - i.e. a requirement is that the functions be compiled to bytecode in order to execute fast, ...
4
votes
3answers
808 views

Vectors or Java arrays for Tetris?

I'm trying to create a Tetris-like game with Clojure and I'm having some trouble deciding the data structure for the playing field. I want to define the playing field as a mutable grid. The individual ...
17
votes
3answers
2k views

Function composition in Clojure?

Can Clojure implement (g ∘ f) constructions like Haskell's g . f? I'm currently using workarounds like (fn [n] (not (zero? n))), which isn't nearly as nice :)
47
votes
10answers
9k views

Yet another Haskell vs. Scala question [closed]

I've been using Haskell for several months, and I love it—it's gradually become my tool of choice for everything from one-off file renaming scripts to larger XML processing programs. I'm definitely ...
9
votes
6answers
971 views

How would you write this Clojure snippet in Ruby and/or Haskell?

I was working on a Rails template and was trying to write a bit of code that allows me to populate a table or multiple columns of ul tags "top-to-bottom" and "left-to-right" across however many ...
6
votes
3answers
149 views

Unexpected result from reduce function

I would like to get the smallest element from a vector. For this I use combine the reduce and min functions. However, when providing my own implementation of min I get unexpected results: user=> ...
6
votes
1answer
792 views

Using a javax.servlet.Filter with Compojure

I'm trying to build a simple web site using Clojure / Compojure and want to feed apply a servlet filter to the request / response (i.e. a standard javax.servlet.Filter instance). e.g. if the current ...
4
votes
4answers
591 views

Lazy sequence or recur for mathematical power function?

As an exercise I implemented the mathematical power function. Once using recur: (defn power [a n] (let [multiply (fn [x factor i] (if (zero? i) x ...
0
votes
1answer
186 views

Using slime's C-x C-e (Eval the form under the point) with swank-clojure in emacs

I'm using swank-clojure in emacs on OSX. I'm able to run a slime session. When I use C-x C-e on a simple form in a .clj file like (+ 7 7) I get an sldb buffer with Unable to resolve symbol: + in ...
8
votes
3answers
847 views

Improving my first Clojure program

After a few weekends exploring Clojure I came up with this program. It allows you to move a little rectangle in a window. Here's the code: (import java.awt.Color) (import java.awt.Dimension) (import ...
8
votes
1answer
345 views

Idiomatic way to build a custom structure from XML zipper in Clojure

Say, I'm parsing an RSS feed and want to extract a subset of information from it. (def feed (-> "http://..." clojure.zip/xml-zip clojure.xml/parse)) I can get links and titles separately: ...
3
votes
3answers
384 views

How to return the output of a recursive function in Clojure

I'm new to functional languages and clojure, so please bear with me... I'm trying to construct a list of functions, with either random parameters or constants. The function that constructs the list ...
1
vote
2answers
126 views

Does ClojureBox support auto-align out of the box?

I am switching to Clojurebox to edit my clojure files. However I can't get the automatic alignment to work. I want the cursor to move two spaces after the line that I am editing when I hit return.
5
votes
1answer
176 views

How to dispatch a multimethod on the type of an array

I'm working on a multimethod that needs to update a hash for a bunch of different things in a sequence. Looked fairly straitforward until I tried to enter the 'type of an array of X'. (defmulti ...

1 92 93 94 95 96 105