Clojure is a modern Lisp dialect for the Java Virtual Machine (with versions for the CLR and JavaScript).
2
votes
1answer
37 views
Tail recursion in clojure
This is a lisp code that uses tail recursion.
(defun factorial (f n)
(if (= n 1)
f
(factorial (* f n) (- n 1))))
I translate this into clojure code expecting the same tail ...
3
votes
2answers
53 views
Why is there no significant speedup using reducers in this example?
(require '[clojure.core.reducers :as r])
(def data (into [] (take 10000000 (repeatedly #(rand-int 1000)))))
(defn frequencies [coll]
(reduce (fn [counts x]
(merge-with + counts {x 1}))
{} ...
3
votes
3answers
44 views
particular use of :require macro in clojure-programming book
I'm looking at the example code in Ch 16 of the book "Clojure Programming" by Emerick, Carper, and Grand, and I see
(ns com.clojurebook.url-shortener
(:use [compojure.core :only (GET PUT POST ...
1
vote
1answer
33 views
Call function for all possible combinations of vectors
I have been using Clojure for the past week since I continued a project of a colleague of mine. We are using Clojure to generate some files. I am trying to refactor some code since he had to do it ...
1
vote
2answers
45 views
Clojure - convert list into Java array
Is there any idiomatic way of converting Clojure list into Java array, other than first converting it to vector and using into-array (means, something other than (into-array (vec my-list)), as I don't ...
1
vote
1answer
55 views
Clojure — how to define public mutable members using deftype?
I've been trying to get http://docs.oracle.com/javafx/2/get_started/fxml_tutorial.htm running in clojure.
I discovered that by omitting the @FXML annotation in the java version and making things ...
1
vote
1answer
38 views
Clojure and JavaFX 2.0 — How to access element's ID from clojure callback function
Following the JavaFX Tutorial here: http://docs.oracle.com/javafx/2/get_started/fxml_tutorial.htm, trying to make it run in Clojure. For now I'm just doing lein run after setting up :aot :all and ...
3
votes
2answers
81 views
What does Clojure’s bit-and-not do?
From the docs:
bit-and-not
function
Usage: (bit-and-not x y)
(bit-and-not x y & more)
Bitwise and with complement
Added in Clojure version 1.0
Clojure's other bit- ...
2
votes
1answer
38 views
Turning co-occurrence counts into co-occurrence probabilities with cascalog
I have a table of co-occurrence counts stored on s3 (where each row is [key-a, key-b, count]) and I want to produce the co-occurrence probability matrix from it.
To do that I need to calculate the ...
2
votes
1answer
49 views
Changing map to pmap in my Clojure program leads to weird exception (ClassCastException)
As far as I know, pmap in Clojure works just like map, but it calculates results in parallel, using futures under the hood. So it should "just work" with a function and a sequence, if map works with ...
4
votes
1answer
58 views
Is there a built-in way to get each slice of a given length from a vector in Clojure?
E.g.:
(each-slice 3 [1 2 3 4 5])
; => [[1 2 3] [2 3 4] [3 4 5]]
It would not be hard to write it, but is there a built-in way to do it?
4
votes
2answers
63 views
Get element from sequence in clojure
I understand that lists and vectors in Clojure can be used almost interchangeably in most situations. Here is a simple case that surprised me
(nth [2 4] 0) ;=> 2
(nth '(2 4) 0) ;=> 2
(get [2 ...
1
vote
2answers
18 views
Can't load FXML in Clojure using FXMLLoader
I'm trying to implement the basic JavaFX example shown here: http://docs.oracle.com/javafx/2/get_started/fxml_tutorial.htm . I was able to get the basic stuff working (programmatically creating the ...
1
vote
3answers
39 views
Extending the constructor of a deftype in clojurescript
When creating a type via deftype in clojurescript:
(deftype SomeObject [a b c]
Object
(update [_]
(set! (.-a _) 5)
(set! (.-b _) 6) ))
Is there a possibility to ...
1
vote
1answer
32 views
How to redirect users to a different page if they aren't logged in? (ring/compojure)
what's the best way to route to one page if the user is signed in (i.e. session has a non-nil value for the user-id key) and another if the user is not signed in? The ideal would be 2 different set of ...
4
votes
1answer
56 views
Install clojure with leiningen on Ubuntu 13.04
So I go to clojure.org/downloads and it says I can get clojure via leiningen. Great. I go to leiningen.org and think I'm following the instructions. It says to get their bash script and put it in your ...
2
votes
2answers
54 views
clojure immutable binary search tree insertion
I'm currently trying to implement an immutable BST in clojure.
This is my make-tree function:
(defn make-tree [v] {:v v :l nil :r nil})
and insertion:
(defn insert [tree v]
(if (nil? tree)
...
1
vote
1answer
37 views
Remove #inst and #uuid literals in clojure
I have a UUID and java util date which get literals as #uuid and #inst, how do I specify the uuid or date without referencing the literals themselves?
clj-json does not like dealing with them and ends ...
6
votes
2answers
65 views
Why is it possible to pass in key value pairs to a function that destructures a map?
I thought I understood destructuring, but I was reading a clojure blog and this confused me. If you have a function written like:
(defn f [& {:keys [foo bar]}]
(println foo " " bar))
Why ...
3
votes
2answers
89 views
how would a loop with a nested return be implemented in clojure?
I'm playing around with a crafty tutorial here:
http://buildnewgames.com/introduction-to-crafty/
and am wondering how this particular function be implemented in clojurescript/clojure
var ...
3
votes
0answers
35 views
What's the best way to invoke clojure worker threads on Heroku?
I'm currently just running the task through the scheduler. It runs for several minutes. I have no reason to think it is being shut down for running too long, but I'm wondering if it should be a ...
8
votes
4answers
75 views
What is the right way to convert a namespaced clojure keyword to string?
When the name function is used it correctly returns the name String of a keyword, as in:
(name :k) => "k"
A problem exists when using name on a namespaced keyword such as:
(name :n/k) ...
3
votes
1answer
51 views
Delayed queue / message processing in Storm
In my Storm topology, while processing a stream, I want to delay the processing of some messages until some future points in time. What are some reasonable options for doing this?
So far, I have ...
2
votes
0answers
38 views
Counterclockwise HTTP REPL
In Eclipse+Counterclockwise, when I want to connect to REPL, the dialog tells me I can use nREPL over HTTP:
How to set this up? Is this somehow connected to drawbridge? I haven't been able to make ...
1
vote
1answer
69 views
Testing to the interface, in Clojure
In the Java world, when it comes to developing unit tests, I've followed an approach of "testing to the interface." What that means is, if I have a Java interface, I would write a single unit test ...
6
votes
1answer
90 views
Clojure: Idiomatic Way to Insert a Char in a String
I have a string in Clojure and a character I want to put in between the nth and (n+1)st character. For example: Lets say the string is "aple" and I want to insert another "p" between the "p" and the ...
1
vote
0answers
20 views
clojure/ritz/nrepl: How do I get the :thread-id in order to send a “frame-source” op to ritz over nrepl?
I am starting the ritz server in a thread and am communicating with it programmatically using the nrepl client:
(require '[clojure.tools.nrepl :as repl])
(def connection (repl/connect :port 15351)) ...
0
votes
0answers
54 views
Problems with NS and :USE in Clojure
I have use the following to define the foo namespace and expect to be able to refer to closure-csv's functions without namespace qualification.
(ns foo (:use clojure-csv.core))
However,
...
5
votes
2answers
84 views
Apply a list of functions to a corresponding list of data in Clojure
So I have a list of functions and a list of data:
[fn1 fn2 fn3] [item1 item2 item3]
What can I do to apply each function to its corresponding data item:
[(fn1 item1) (fn2 item2) (fn3 item3)]
...
0
votes
0answers
70 views
What is a metaobject and are there any examples of how it is used? [closed]
From wikipedia: The Art of the Metaobject Protocol (AMOP) is a 1991 book by Gregor Kiczales, Jim des Rivieres, and Daniel G. Bobrow on metaobject protocol. It contains an explanation of what a ...
1
vote
0answers
86 views
How closely related are aspect-oriented programming to macros? [closed]
I've heard the term 'aspect oriented programming' tossed around for a long time... I'm still confused... However, it seems to me that the general definition of an aspect is that you can take an ...
3
votes
2answers
47 views
Manage connections in Aleph (clojure) based on metadata
I've written a very simple broadcast/echo server that uses web sockets with clojure and aleph.
I spent a lot of time looking through the aleph and lamina sources to get a decent, basic understand ...
2
votes
0answers
69 views
Is there anyway to reduce nrepl (ritz-repl) startup time?
I wasn't using ritz-nrepl before, and nrepl took around 10 sec which is long but still bearable since I don't restart it that often.
When I tried out ritz-repl, it took nearly 30s to boot, and ...
1
vote
1answer
75 views
Distributing and merging hash-map elements in Clojure
What would be quickest way to transform this collection :
[[{:a 1} {:a 2} {:a 3}] [{:b 4} {:b 5} {:b 6}] [{:c 7} {:c 8} {:c 9}]]
into this collection? :
[{:a 1, :b 4, :c 7} {:a 2, :b 5, :c 8} {:a ...
7
votes
2answers
133 views
Improve performance of a ClojureScript program
I have a ClojureScript program that mainly performs math calculations on collections. It was developed in idiomatic, host-independent Clojure, so it's easy to benchmark it. To my surprise (and ...
1
vote
0answers
35 views
Variable HTML template in Enlive
I'm trying to find an 'Enlivonic' way of defining a function that will perform a transformation on a parameterised html template.
In other words, how do I define something like a defsnippet that also ...
2
votes
1answer
55 views
Is there a comprehensive list of clojure.core macros that take bindings in a vector?
I'm looking to get a list of clojure.core symbols that take destructuring forms:
(<symbol> [bindings] ~@body)
Off the top of my head, I can list for let fn if-let doseq defn defmacro.... I'm ...
8
votes
2answers
126 views
Clojure performance, large looping over large vectors
I am performing element-wise operations on two vectors on the order of 50,000 elements in size, and having unsatisfactory performance issues (a few seconds). Are there any obvious performance issues ...
2
votes
1answer
45 views
Different results when a function is evaluated in the REPL than in a program
I have a feeling the answer to my question is something to do with Clojure's lazy evaluation (which I am still fuzzy on...)
So I have a function:
(defn fix-str-old [string]
(let [words (->> ...
1
vote
1answer
57 views
How to build data structure using nested calls to `map`
I want to build a sequence of maps (the data structure) using nested calls to map (the function). Here's what I'm doing
(defn point [x y]
{:x-coord x
:y-coord y})
(defn grid [rows columns]
...
3
votes
1answer
68 views
Can Apache Be Configured To Run Clojure Web-Based Programs?
Note
The following question is similar to this SO post, but I am asking a slightly different question two years later.
Is it possible to run Clojure programs, like those created from lein new noir ...
5
votes
1answer
71 views
Why does this simple main method never return when run by leiningen?
This piece of code returns immediately:
user=> (dorun (pmap + [1 2] [3 4]))
nil
However, when I run the same piece of code in main method using lein:
(ns practice.core)
(defn -main [& ...
3
votes
2answers
81 views
What is the difference between clojure's APersistentMap implementations
I'm trying to figure out what the difference is between a PersistentHashMap, PersistentArrayMap, PersistentTreeMap, and PersistentStructMap.
Also if I use {:a 1} it gives me a PersistentArrayMap but ...
0
votes
1answer
57 views
Jabber/XMPP protocol in pure Clojure
I'm looking for Jabber/XMPP protocol implementation in pure Clojure.
I'm find xmpp-clj but it a wrapper around the smack jabber/XMPP library.
2
votes
1answer
59 views
Several ways to call “use”?
What's the difference between (use 'korma.db) and (:use korma.db)?
Functionally they seem to do the same thing, but one looks like it's a function call and the other is dereferencing a map? Why two ...
4
votes
1answer
60 views
Clojure How to Expand Macro in Source File Versus Repl
I am leaning macros in Clojure and have a question about macro expansion. In the repl, when I do this:
user=> (defmacro unless [pred a b] `(if (not ~pred) ~a ~b))
#'user/unless
user=> ...
0
votes
1answer
29 views
Function to Dynamically Create-Table via Clojure JDBC Not working
I have a function I made to get the name of a table and the one or more columns and create the table in postgres sql. I created a static version as well to test. The static version works fine, ...
2
votes
0answers
57 views
Using Overtone in Jython / Clojure Dependencies in Jython
I'm currently working on a project that primarily uses Jython, but makes use of interop (using rik0's pyclj solution) with Clojure to utilize the Overtone library. Typically, leiningen is the primary ...
4
votes
1answer
72 views
Is assoc behavior inconsistent?
assoc may throw IndexOutOfBoundsException when the index is, well, out of bounds, as in:
user=> (assoc [] 1 nil)
IndexOutOfBoundsException ...
1
vote
0answers
78 views
Is the architectural model in the Clojure Pedestal framework an operational transform similar to Google Wave?
Reading through the Pedestal presentation (and reading the sample source code) - I see a model based on transforms and operations.
Is it true that Pedestal uses an operational transform similar to ...