Clojure is a modern Lisp dialect for the Java Virtual Machine (with versions for the CLR and JavaScript).
1
vote
2answers
26 views
Is it possible to destructure a map in a bind?
Is it possible to do this in one function:
(binding [*configs* (merge default-configs configs)]
(let [{:keys [login url max-pages]} *configs*]
..
When I tried this:
(binding [{:keys ...
0
votes
1answer
23 views
How can a function from one namespace be included in another namespace?
I have a function defined in one namespace
(ns package.sub)
(defn func1[]....)
I wish to include it in another namespace... (ns package.main)
so that I can use it from another library:
(ns ...
3
votes
2answers
36 views
Is it possible to do destructured head/tail separation of lazy sequences in clojure?
I see some examples that show we can get a nice head/tail destructuring of a sequence in clojure as follows:
(if-let [[x & xs] (seq coll)]
However I assume this won't work as desired for lazy ...
0
votes
1answer
27 views
Need an explanation of strange behavior from Clojure's ns function
I'm noticing some strange behavior from Clojure's ns function. I thought it didn't care too much about the order of its arguments, but apparently it can be extremely picky.
In one file, I have
(ns ...
1
vote
1answer
26 views
Wrap XML text containing special characters with a CDATA tag
In Clojure, how would I traverse an XML data structure and wrap all textual content containing special characters with a CDATA tag?
For example, the following XML:
<root>
<child>no ...
0
votes
2answers
36 views
Counting a sequence in Clojure
I'm learning Clojure using a website called 4clojure.com. I'm on a problem asking me to write a function that counts the elements in a sequence. Because I messed around with Haskell at one point, I ...
2
votes
2answers
26 views
Clojure Convention Tests
Is there a tool to run code convention tests in clojure? For example, make sure function names don't have any capital letters or keywords don't have any underscores in them.
6
votes
4answers
133 views
Is it possible to decompose a Clojure function?
While I may incorrectly interpret the concept of homoiconicity, I've understood it as 'code being data'.
So, I can write code like this:
(def subject "world")
(def helo '(str "Hello " subject))
At ...
0
votes
1answer
36 views
vim-fireplace Connect command won't run
I've installed vim-fireplace, but the Connect command doesn't work. The error message is "Not an editor command: Connect". This leads me to believe I've messed up the installation but I can't figure ...
0
votes
1answer
28 views
how to write this clojure.java.jdbc select where clause
How can I implement select * from fruit where cost > 22 and cost < 44 w/ DSL way, by example below from clojure/java.jdbc demo:
(require '[clojure.java.jdbc :as j]
'[clojure.java.jdbc.sql :as ...
0
votes
0answers
29 views
How to use aleph(Clojure) with lein-ring on beanstalk
Please tell me normal program.I show you my code and error.
Althogh I know how to operate my app correctly with "lein run",I would like to know it with "lein ring server".
It is because that I will ...
2
votes
2answers
62 views
how to do max-by in clojure?
If I've got a sequence of records defined by (defrecord Person [name age]) and I want to get the record of the person with the maximum age, is there an easier way to do this than
(reduce #(if (> ...
1
vote
2answers
35 views
how to you access :headers inside compojure function
org.clojure/clojure-contrib "1.2.0"
ring "1.1.8"
compojure "1.1.5"
clout "1.1.0"
(defroutes rest-routes
(GET "/" [] "<p> Hello </p>")
(POST "/api/v1/:stor/sync" [stor] (start-sync ...
0
votes
1answer
59 views
Javascript: Convert string path to a formatted array
So I am trying to use the github api and convert it to use for dynatree.
I am looking to use javascript. But if it's easier done in Ruby, ClojureScript etc that could work as well.
So Github api ...
1
vote
2answers
27 views
How can I remove listeners from an object in Seesaw if I haven't kept the return function?
To add a listener to a UI element in Seesaw you do this:
(listen ui-element :action (fn [_] (...)))
listen attaches a listener that calls the provided function when :action is triggered on ...
3
votes
3answers
50 views
Making a function which passes its arguments as :keys to another function
I have a function which takes the following form
(defn foo [& {:keys [x y z]}]
...)
And I want to create a function which takes only the keys y and z, but always gives x the same value. I ...
1
vote
1answer
28 views
lein ring uberwar NullPointerException
Working backwards from example ch17-webapp-lein in "Clojure Programming" by Emerick, Carper, and Grand, I've boiled my web service down to the bare minimum, hoping to deploy it to Elastic Beanstalk. I ...
3
votes
2answers
97 views
In Clojure, how can I better design this code that needs to be polymorphic?
I'm writing this program that is like a web crawler for online forums. For each forum I crawl, I need to do the same thing:
login
find the boards
find the posts
find the permalink to the post
find ...
1
vote
2answers
40 views
Clojure “apply” throws ClassCastException in simple sum function
This function
(defn sum [& args] (apply + args))
should sum up all args sequence elements throws an exception.
Why?
user> (defn sum [& args] (apply + args))
#'user/sum
user> (sum [1 ...
0
votes
1answer
41 views
How can I shuffle a dataset in incanter?
How can I shuffle a incanter dataset?
(shuffle (:rows data-set))
Only returns a clojure vector of maps.
1
vote
1answer
32 views
Dynamically calculated description of a midje fact
I want to write a function to factor out some common facts, like this
(defn check-odd-and-positive
[n]
(fact (str n " not odd") n => odd?)
(fact (str n " not positive") n => positive?))
...
5
votes
1answer
56 views
How to extract Clojure REPL history
I have written some code within the plain console REPL of Clojure (lein repl). Now I would like to extract the history in order to get the code that I have written in there. Can I do this somehow?
6
votes
1answer
97 views
Looking for the smallest app container which is capable of running a clojure-powered website
I'm looking for a program which takes up very little disk space, does not require much memory or cpu power, while it is capable of running a clojure web app.
I'm planning to run it on a Raspberry PI.
...
4
votes
1answer
109 views
Understanding Data-centric app and object composition in Clojure
I've recently been much impressed by the work of Chris Granger and his Light Table. This question is not about light table though, but more about the "BOT" architecture he described using in his blog ...
2
votes
1answer
92 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 ...
7
votes
3answers
123 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
65 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
54 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
62 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
74 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
47 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
94 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
41 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
60 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
63 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
70 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
27 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
42 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
36 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
67 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
56 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
43 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
71 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
95 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
41 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
77 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
56 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
53 views
+50
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
71 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
91 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 ...