Search Discussions
-
freactive (pronounced "f reactive" for functional reactive) is a new high performance, pure Clojurescript, declarative DOM library: https://github.com/aaronc/freactive It has a syntax very similar to ...
Aaron Craelius
Nov 17, 2014 at 2:20 am
Dec 1, 2014 at 9:14 pm -
Hi! Boot (http://github.com/boot-clj/boot) is a build tool for Clojure. We've pulled together lessons learned from a year or so using boot v1 in production and are now getting ready to release v2. To ...
Micha Niskin
Nov 3, 2014 at 8:41 pm
Nov 7, 2014 at 5:46 pm -
Hi, here is an idea that has been in my mind for a while. I wonder what you think about it. In Clojure code is data, right? But when we program we manipulate flat text files, not the data directly ...
Thomas Huber
Nov 14, 2014 at 12:46 pm
Nov 18, 2014 at 1:51 pm -
Hi, All I was able to come up with was this (defn altsum[n] (reduce + (map * (range 1 (inc n)) (interpose -1 (repeat 1))))) ... works quite well, however I was wondering if there is more idiomatic ...
Andy L
Nov 14, 2014 at 1:31 am
Nov 19, 2014 at 7:01 pm -
Hi, I just want to address this issue (CLJ-1498 <http://dev.clojure.org/jira/browse/CLJ-1498 ). It was accepted in 1.7-alpha2 and I haven't seen a lot of discussion around it, even though it's quite ...
Daniel Marjenburgh
Nov 3, 2014 at 4:09 pm
Nov 5, 2014 at 9:58 am -
imagine in a namespace you have functions x, y, and z which are public. function x grows a bit big, so is broken out so that it calls 2 other functions, f and g. now, imagine with all the clean code ...
Henry w
Nov 19, 2014 at 7:00 pm
Nov 20, 2014 at 7:47 pm -
Hi, I have to loop through a string, consecutively replacing substrings with single characters, one substring at a time. Each time through the loop, I need to use a cond to check that the length of ...
Dan Campbell
Nov 23, 2014 at 4:25 pm
Nov 24, 2014 at 6:04 pm -
Hi all, I've got this: `[1 3 4 5 7 9 10 11 12]` and I'd like to turn it into this: `[[1] [3 4 5] [7] [9 10 11 12]]`. That is, I'd like to group consecutive numbers together (the final goal being to ...
John Gabriele
Nov 6, 2014 at 10:22 pm
Nov 7, 2014 at 6:21 pm -
Greetings, I have a sense that there is value in immutable variables and data but that value is unneeded in my application and more than a nuisance. How can I create a "let" that creates mutable ...
Blake McBride
Nov 9, 2014 at 3:15 am
Nov 12, 2014 at 5:03 pm -
Really excited to use clojurescript one but got shot down right out of the gate. Anyone here have the answer? https://github.com/brentonashworth/one/issues/145 -- You received this message because ...
Kevin Banjo
Nov 18, 2014 at 6:53 am
Nov 18, 2014 at 8:21 pm -
Hi all I have a strange interaction between clj-http and com.cemerick/friend. I don't know if this is a problem in either of the two packages or maybe even Leiningen. The problem is very easy to ...
Christian Egli
Nov 5, 2014 at 11:20 am
Nov 6, 2014 at 3:16 pm -
Thank you very much for clojureconj videos !! -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to <span ...
Geraldo Lopes de Souza
Nov 22, 2014 at 1:09 pm
Nov 24, 2014 at 7:37 pm -
Guys, what do you think about new thread macro (I would call it thread-any and represent it as "% "), that would require you to always specify the position of the argument you want to pass to the ...
Krzysiek Herod
Nov 15, 2014 at 1:59 pm
Nov 23, 2014 at 10:01 pm -
I'm in need of a library that is able to create a patch for some Clojure datastructure, and apply it at a later time. This has to work in both Clojure and Clojurescript. The use case is that I'm ...
Robin Heggelund Hansen
Nov 13, 2014 at 8:31 am
Nov 16, 2014 at 9:52 am -
Hi All, We are using Clojure on the JVM but one of our .Net developers has asked me whether I have considered using it on the CLR. I haven't tried doing it so I wondered if anyone can share any ...
Adrian Mowat
Nov 11, 2014 at 3:39 pm
Nov 12, 2014 at 8:48 am -
Hi all, Am I right in thinking that in order to use https://github.com/stuartsierra/component every consumer of a component must also be a component? For example, if I have a component DB and I want ...
Colin Yates
Nov 28, 2014 at 10:28 am
Nov 28, 2014 at 4:39 pm -
Hi group, Someone knows if we have screencasts on how the more skilled clojurian are working? I remember few months ago we had some "pairing" sessions that were really popular, any recording on any ...
Erlis Vidal
Nov 20, 2014 at 10:05 pm
Nov 27, 2014 at 4:57 pm -
I started playing with Clojure again. I made the following three functions: (defn get-percentage [place total-count] (int (Math/round (double (/ (* place 100) total-count))))) (defn ...
Cecil Westerhof
Nov 25, 2014 at 12:08 pm
Nov 25, 2014 at 7:58 pm -
Using test.check, I'm finding the shrinking to be very, very slow. Running a hundred cases takes a few seconds, unless it hits an error, in which case it takes 40-60 minutes to shrink, and the ...
Brian Craft
Nov 11, 2014 at 6:44 pm
Nov 25, 2014 at 6:55 pm -
Floor works: (Math/floor (/ (* 12 100) 71)) 16.0 Ceil works: (Math/ceil (/ (* 12 100) 71)) 17.0 But round gives an error: (Math/round (/ (* 12 100) 71)) IllegalArgumentException No matching method ...
Cecil Westerhof
Nov 24, 2014 at 12:37 pm
Nov 25, 2014 at 2:54 pm -
Recently in creating load testing I've been in need of throttling certain mixed IO/CPU bound processes and have been using claypoole.core/upmap for those situations (require '[com.climate.claypoole ...
Niels van Klaveren
Nov 27, 2014 at 9:32 pm
Nov 29, 2014 at 8:59 pm -
It is our pleasure to announce a new ring middleware for CORS support. https://github.com/unbounce/encors Features include: * Add multiple CORS Policy to an app (can classify them via ring request ...
Roman
Nov 26, 2014 at 12:04 am
Nov 27, 2014 at 12:31 am -
I really like that (pr some-hash-map) dumps structure which can be recognized by clojure reader like (def same-hash-map '..paste..here) Could it be achieved with defrecords? Currently (pr ...
Vladimir Bokov
Nov 26, 2014 at 8:30 am
Nov 26, 2014 at 3:37 pm -
Hello Everyone, I was at this pretty interesting meet-up yesterday where Sam Beran [1] showed how he achieved 30ms startup times on Android using Clojurescript. He was not hosting his app inside a ...
Uday Verma
Nov 21, 2014 at 5:51 pm
Nov 22, 2014 at 4:37 am -
Hi all, I understand that the following question is a long shot without any proper proof/tests from my side but it's a little bit difficult to make a test case from the specific part of my app so I ...
Alexander L.
Nov 17, 2014 at 10:28 am
Nov 18, 2014 at 8:39 am -
Hi, what is the most idiomatic way to return a single value from an async function in Clojure? A: return a channel which conveys the result later; also closes the channel (defn f [x] (let [c ...
Alexander Kiel
Nov 10, 2014 at 4:30 pm
Nov 11, 2014 at 4:21 pm -
I have a piece of code that looks like this (.getOWLEquivalentClassesAxiom (owl-data-factory) (set classlist) (union-annotations classlist)) The method signature is ...
Phillip Lord
Nov 4, 2014 at 4:53 pm
Nov 6, 2014 at 10:46 am -
Hello all, I was curious about the state of Clojure in production, and put up this thread on Hacker News asking for insight, since all the other threads are quite dated ...
Viksit
Nov 3, 2014 at 11:55 pm
Nov 4, 2014 at 10:57 pm -
I've been working on a library for a little bit which I'm calling stateful-check (at least for now). It's mainly my attempt to work towards the sort of stateful testing that I first saw in John ...
Carlo Zancanaro
Nov 28, 2014 at 12:44 am
Nov 29, 2014 at 7:34 pm -
(defn not-divisible-by?[num denum] (not (= (mod num denum) 0))) (defn div-nums [denum bound] (for [x (range 2 bound) :when (not-divisible-by? x denum)] x)) (defn divisible? [coll denum] (empty? ...
Chernyshev Alex
Nov 26, 2014 at 4:21 pm
Nov 26, 2014 at 11:51 pm -
I've recently been serialising some data using Edn, and to date this has caused no problems. During some tests today, I serialised a string representing a file path that originated on a windows ...
Andy Dwelly
Nov 25, 2014 at 12:23 pm
Nov 26, 2014 at 9:42 am -
Back in February, I posted about some prototype code I had put together that attempted an alternative approach to map-merging that promised to be faster and generate less churn than the standard ...
Jules
Nov 17, 2014 at 10:00 pm
Nov 18, 2014 at 1:08 am -
Hi everyone Yesterday I proudly announced my new Wiki engine; today I'm investigating an odd bug which prevents it compiling on some Ubuntu machines, but not my laptop (on which I did the ...
Simon Brooke
Nov 13, 2014 at 10:26 pm
Nov 14, 2014 at 3:33 pm -
Counterclockwise, the Eclipse Clojure development tool. Counterclockwise 0.29.1 has been released. Fixes bugs of the 0.29.0 version. ChangeLog ========= ...
Laurent PETIT
Nov 13, 2014 at 3:00 pm
Nov 14, 2014 at 3:30 pm -
Wouldn't it be nice if if-let allowed more bindings? Try this, which I hereby dedicate into the public domain so that anyone may use it freely in their code without restrictions: (defn if-and-let* ...
Fluid Dynamics
Nov 26, 2014 at 12:10 pm
Nov 27, 2014 at 1:30 pm -
I'm trying to build a string output system with functions that later have a state passed to it, so that I can write something like (output "The result of this example is: " (get :result)) and have it ...
Isaac Karth
Nov 25, 2014 at 6:55 pm
Nov 26, 2014 at 12:50 am -
Hi there. Hope someone can help me with an issue I am having with lein repl. I did post on StackOverflow <http://stackoverflow.com/questions/22736952/lein-repl-server-launch-timed-out as well, but no ...
Neil Laurance
Nov 23, 2014 at 6:10 am
Nov 25, 2014 at 12:13 am -
Hello to all; So, the Clojure REPL for Lollipop doesn't Work. Why? Why won't it install? When will you migrate to 1.6 or 1.7? Hope to hear something soon. Lorentzz -- You received this message ...
Lorentzz00
Nov 24, 2014 at 11:39 am
Nov 24, 2014 at 9:44 pm -
CLj-fl is a Frame Language library for the Clojure ecosystem. Since I had a lot of fun playing with the Frame language, I decided to put together some of my toys in a library and let others to play ...
Luciano Capitanio
Nov 19, 2014 at 3:41 pm
Nov 21, 2014 at 11:19 am -
https://github.com/Skinney/differ I needed a way to send diffs of data from a cljs web-app to a clj backend, and I found clojure.data/diff to be a pain to work with, so i created my own solution. It ...
Robin Heggelund Hansen
Nov 17, 2014 at 7:51 pm
Nov 18, 2014 at 7:31 am -
Clojure 1.7.0-alpha4 is now available. Try it via - Download: http://central.maven.org/maven2/org/clojure/clojure/1.7.0-alpha4/ - Download securely ...
Alex Miller
Nov 14, 2014 at 7:34 pm
Nov 17, 2014 at 1:30 pm -
Since there has been interest in writing User Plugins this last month, I've decided to be more serious about it. *Counterclockwise User Plugins allow you to customize Counterclockwise / Eclipse with ...
Laurent PETIT
Nov 13, 2014 at 4:34 pm
Nov 17, 2014 at 6:21 am -
<Cross posting from Clojurescript group. Sorry if you got this question twice Hi, Is it idiomatic to have defn inside defn? eastwood throws def-in-def warning when I have the following code: (defn ...
Udayakumar Rayala
Nov 15, 2014 at 4:33 pm
Nov 15, 2014 at 6:10 pm -
I just read that MS is open sourcing .NET. I assume this means one could now target .NET with ClojureCLR on Linux/Mac environment. Assuming that is true, the natural question seems to be which VM ...
Evan Zamir
Nov 12, 2014 at 6:50 pm
Nov 13, 2014 at 7:05 pm -
I think this is a dummy question, but wondering whether this is possible in core.logic? Lets say I have a set of relations (db-rel foo p) (db-rel bar p) (db-rel fooz p p2) and facts [foo 1] [bar 2] ...
Dan Stone16321
Nov 13, 2014 at 5:26 pm
Nov 13, 2014 at 6:18 pm -
I'm using Twitter's HBC library to read from Twitter's public stream. HBC stores results in a LinkedBlockingQueue, from which you can then `.take` tweets and do stuff to them (in my case, doing some ...
Sam Raker
Nov 12, 2014 at 4:43 pm
Nov 12, 2014 at 10:43 pm -
Greetings, I am an old lisp guy that is new to Clojure. At one time I wanted to use ABCL as a scripting language for a large, web-based Java app. (ABCL is Common Lisp written in for the JVM.) The ...
Blake McBride
Nov 8, 2014 at 3:03 am
Nov 9, 2014 at 4:18 pm -
Ouch! I found this code hard to understand. I read to previous part of the book. I guess it is normal when you are new to Clojure? -- You received this message because you are subscribed to the ...
Pierre Thibault
Nov 5, 2014 at 1:58 am
Nov 5, 2014 at 12:34 pm -
I made a Bash script to start clojure, both the REPL and a script. When starting a script it uses an initialisation file if it exists ...
Cecil Westerhof
Nov 30, 2014 at 12:41 pm
Dec 1, 2014 at 8:28 pm -
Hi all, I'm trying to import a class from a non-standard location.. Specifically, I'm trying to import PhoneNumberToCarrierMapper from libphonenumber and am receiving the following error: Exception ...
John Bohn
Nov 30, 2014 at 8:23 pm
Dec 1, 2014 at 3:01 pm
Group Overview
group | clojure |
categories | clojure |
discussions | 133 |
posts | 603 |
users | 231 |
website | clojure.org |
irc | #clojure |
231 users for November 2014
Archives
- June 2016 (304)
- May 2016 (520)
- April 2016 (426)
- March 2016 (421)
- February 2016 (464)
- January 2016 (422)
- December 2015 (359)
- November 2015 (490)
- October 2015 (573)
- September 2015 (476)
- August 2015 (618)
- July 2015 (628)
- June 2015 (700)
- May 2015 (858)
- April 2015 (573)
- March 2015 (751)
- February 2015 (676)
- January 2015 (607)
- December 2014 (677)
- November 2014 (606)
- October 2014 (910)
- September 2014 (733)
- August 2014 (652)
- July 2014 (689)
- June 2014 (66)
- May 2014 (699)
- April 2014 (1,151)
- March 2014 (1,010)
- February 2014 (1,111)
- January 2014 (1,291)
- December 2013 (938)
- November 2013 (1,242)
- October 2013 (874)
- September 2013 (934)
- August 2013 (1,130)
- July 2013 (1,301)
- June 2013 (1,139)
- May 2013 (1,215)
- April 2013 (1,019)
- March 2013 (1,502)
- February 2013 (1,330)
- January 2013 (1,191)
- December 2012 (1,082)
- November 2012 (994)
- October 2012 (1,366)
- September 2012 (946)
- August 2012 (957)
- July 2012 (957)
- June 2012 (1,149)
- May 2012 (1,092)
- April 2012 (1,012)
- March 2012 (1,075)
- February 2012 (859)
- January 2012 (1,077)
- December 2011 (983)
- November 2011 (1,063)
- October 2011 (1,180)
- September 2011 (595)