FAQ

Search Discussions

133 discussions - 603 posts

  • 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 CraeliusAaron 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 NiskinMicha 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 HuberThomas 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 LAndy 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 MarjenburghDaniel 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 wHenry 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 CampbellDan 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 GabrieleJohn 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 McBrideBlake 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 BanjoKevin 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 EgliChristian 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 SouzaGeraldo 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 HerodKrzysiek 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 HansenRobin 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 MowatAdrian 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 YatesColin 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 VidalErlis 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 WesterhofCecil 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 CraftBrian 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 WesterhofCecil 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 KlaverenNiels 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 ...
    RomanRoman
    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 BokovVladimir 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 VermaUday 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.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 KielAlexander 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 LordPhillip 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 ...
    ViksitViksit
    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 ZancanaroCarlo 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 AlexChernyshev 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 DwellyAndy 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 ...
    JulesJules
    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 BrookeSimon 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 PETITLaurent 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 DynamicsFluid 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 KarthIsaac 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 LauranceNeil 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 ...
    Lorentzz00Lorentzz00
    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 CapitanioLuciano 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 HansenRobin 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 MillerAlex 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 PETITLaurent 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 RayalaUdayakumar 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 ZamirEvan 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 Stone16321Dan 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 RakerSam 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 McBrideBlake 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 ThibaultPierre 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 WesterhofCecil 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 BohnJohn Bohn
    Nov 30, 2014 at 8:23 pm
    Dec 1, 2014 at 3:01 pm
Group Navigation
period‹ prev | Nov 2014 | next ›
Group Overview
groupclojure @
categoriesclojure
discussions133
posts603
users231
websiteclojure.org
irc#clojure

231 users for November 2014

Aaron Craelius: 16 posts Fluid Dynamics: 16 posts Laurent PETIT: 16 posts Gary Verhaegen: 15 posts James Reeves: 13 posts Alex Miller: 12 posts Andy Fingerhut: 12 posts Micha Niskin: 11 posts Robert Levy: 11 posts Ashton Kemerling: 9 posts Atamert Ölçgen: 8 posts Colin Yates: 8 posts Robin Heggelund Hansen: 8 posts Sean Corfield: 8 posts Daniel Marjenburgh: 7 posts David Nolen: 7 posts Henrik Eneroth: 7 posts Phillip Lord: 7 posts Simon Brooke: 7 posts Andy L: 6 posts
show more