FAQ

Search Discussions

121 discussions - 854 posts

  • I recently did some research into web frameworks on Github. Here's what I found: FRAMEWORK LANG CONTRIBUTORS COMMITS Luminus Clojure 28 678 Caribou Clojure 2 275 Beego Golang 99 1522 Phoenix Elixir ...
    GvimGvim
    May 2, 2015 at 8:43 pm
    May 12, 2015 at 8:18 pm
  • Clojure 1.7.0-RC1 is now available. Try it via - Download: https://repo1.maven.org/maven2/org/clojure/clojure/1.7.0-RC1/ - Leiningen: [org.clojure/clojure "1.7.0-RC1"] The only change since ...
    Alex MillerAlex Miller
    May 21, 2015 at 4:31 pm
    Jun 5, 2015 at 4:36 am
  • I wrote the following code to solve this challenge - https://www.reddit.com/r/dailyprogrammer/comments/35s2ds/20150513_challenge_214_intermediate_pile_of_paper/. Code - ...
    Amith GeorgeAmith George
    May 14, 2015 at 8:02 am
    May 20, 2015 at 5:37 pm
  • All, I just ran across Nim (previously Nimrod) which is a garbage collected systems programming language that looks like a suitable target for transpiling Clojure. See: http://nim-lang.org/ My goal ...
    Alan MooreAlan Moore
    May 1, 2015 at 2:59 am
    May 11, 2015 at 9:15 pm
  • Hi all! I'm one of this year's students accepted to the Google Summer of Code for doing a Clojure project. (Thanks to Alex Miller for supporting my application!) For those who like to decide from the ...
    Richard MoehnRichard Moehn
    May 4, 2015 at 7:30 am
    Jun 3, 2015 at 12:50 am
  • Talk on the list about encapsulation usually comes back to some variation of "you don't need it when you have immutable data structures". But in the long term I'm finding the problem of working w/o ...
    Brian CraftBrian Craft
    May 8, 2015 at 4:29 pm
    May 15, 2015 at 12:05 am
  • Hi, I am venturing into new territory using http-kit, as I usually use a 'managed' web server container like tomcat and have a few questions about packing and running a JAR file: - are there are ...
    Colin YatesColin Yates
    May 26, 2015 at 11:38 am
    Jun 2, 2015 at 6:19 am
  • Sorry for the length of this post--I feel I have to spell out the details in order to head off irrelevant responses. I'm saving you the trouble of reading a long chain posts just focused on ...
    Mars0iMars0i
    May 19, 2015 at 3:15 am
    May 23, 2015 at 7:58 pm
  • ClojureScript, the Clojure compiler that emits JavaScript source code. README and source code: https://github.com/clojure/clojurescript Leiningen dependency information: [org.clojure/clojurescript ...
    David NolenDavid Nolen
    May 8, 2015 at 7:23 pm
    May 11, 2015 at 2:31 pm
  • Hi everybody, A video showcasing the Holy Grail workflow has been posted on youtube. https://www.youtube.com/watch?v=eoxsSrFK_Is The workflow is built on top of Boot <http://boot-clj.com/ , a build ...
    Daniel SzmulewiczDaniel Szmulewicz
    May 21, 2015 at 1:03 am
    May 23, 2015 at 1:31 pm
  • I can do Math/PI put how can I access PI if Math is in a expression like '(Math) for example? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to ...
    Pierre ThibaultPierre Thibault
    May 20, 2015 at 10:38 pm
    May 21, 2015 at 3:14 pm
  • Is possible to use the operator '@' alone? In the Joy Of Clojure book it is presented as '~@'. I would like an example. -- You received this message because you are subscribed to the Google Groups ...
    Pierre ThibaultPierre Thibault
    May 20, 2015 at 10:35 pm
    May 21, 2015 at 2:36 pm
  • Hi! I have some trouble with clojure metadata / reader and I do not know if I'm doing something wrong. I have this code: (defn some-func []) (def func ^:abc some-func) (assert (= (meta func) {:abc ...
    Andrey AntukhAndrey Antukh
    May 5, 2015 at 6:31 pm
    May 6, 2015 at 6:50 am
  • I have one function wait-until whose definition is like- (defn wait-until [pred] (wait-until* pred)) where, pred is a function & wai-until* is some internal working. Now, I want to modify it like- ...
    Shalaka PatilShalaka Patil
    May 28, 2015 at 11:03 am
    Jun 1, 2015 at 6:10 am
  • Hi, I notice the following in Clojure 1.7.0-beta2: user= (contains? "hello" 2) true user= (contains? "hello" \e) IllegalArgumentException contains? not supported on type: java.lang.String ...
    Shantanu KumarShantanu Kumar
    May 12, 2015 at 6:25 pm
    May 14, 2015 at 3:15 am
  • Hello! I am developing a Java application where Clojure is used as a library. The application is required to load sources (including Clojure sources) from arbitrary locations in filesystem, internet ...
    Alex FowlerAlex Fowler
    May 21, 2015 at 11:25 am
    Jun 6, 2015 at 6:55 am
  • https://clojars.org/complex https://github.com/alanforr/complex Complex is a Clojure library for doing complex number calculations that wraps the Java commons-math3 Complex library. complex A Clojure ...
    Alan ForresterAlan Forrester
    May 31, 2015 at 10:55 pm
    Jun 3, 2015 at 3:49 am
  • In Stuart Sierra's article here (http://stuartsierra.com/2015/05/10/clojure-namespace-aliases), he recommends to use :refer sparingly but doesn't explain why this is a good idea. Only thing I could ...
    AkivaAkiva
    May 17, 2015 at 3:05 pm
    May 27, 2015 at 5:30 pm
  • Sadly, Google seems to think I am search for "internal" when I search for "^:internal" so that makes it hard to find the documentation. I am curious about this code: ;;; Capture the standard def ...
    PiastkrakowPiastkrakow
    May 10, 2015 at 7:00 pm
    May 12, 2015 at 8:51 pm
  • I've found the question appearing here, but a long time ago, so I thought that maybe the situation changed: Is there a relational mapper in clojure (or in java) that takes query result and generates ...
    Krzysiek HerodKrzysiek Herod
    May 21, 2015 at 7:57 pm
    May 26, 2015 at 1:31 am
  • Hi all, This issue has been around for a while without much activity, although a very simple fix is already there: http://dev.clojure.org/jira/browse/CLJ-703 We have a pretty big Clojure project that ...
    Martin RaisonMartin Raison
    May 8, 2015 at 6:12 pm
    May 9, 2015 at 6:24 am
  • Hey, I'm looking for an edn data read for clojure functions (similar to https://github.com/Datomic/day-of-datomic/blob/master/resources/day-of-datomic/clojure-data-functions.edn) Is there any known ...
    RonenRonen
    May 27, 2015 at 1:02 pm
    May 28, 2015 at 11:49 pm
  • I'm a professor at Oxford and my group has been working on a new embedded language called Anglican: http://www.robots.ox.ac.uk/~fwood/anglican/ It can be used to do advanced machine learning in ...
    Frank WoodFrank Wood
    May 12, 2015 at 10:05 am
    May 14, 2015 at 11:55 pm
  • This is essentially a question to Cognitect / developers of the clojure/* libraries but I do not know of a better communication channel than this one. To me, clojars is the one place to go to find ...
    Jakub HolyJakub Holy
    May 10, 2015 at 10:43 am
    May 11, 2015 at 9:31 am
  • hi, What do people think of STM after all these years? What pros vs. cons are there - has the community evolved the list of them? thanks for any thoughts. -- You received this message because you are ...
    Raoul DukeRaoul Duke
    May 5, 2015 at 11:42 pm
    May 10, 2015 at 6:28 pm
  • Is there a lib that will allow me to have my sql defined in a file which I can reference from Clojure? I cannot use one of the existing migration libraries as I need to do more than just manipulate ...
    Colin YatesColin Yates
    May 14, 2015 at 8:45 am
    May 27, 2015 at 2:01 am
  • I would like to write a detailed blog post about how developers are actually using transducers. If you have a public project on Github that is using transducers, would you please point me to it? I ...
    Larry google groupsLarry google groups
    May 6, 2015 at 3:15 pm
    May 11, 2015 at 5:42 am
  • Dear fellow clojurians, The following behaviour seems (to me) rather odd. This succeeds: gocatch.job.job (clojure.java.jdbc/query *database* ["select * from Job where id = ?" (long 90)]) ({:tip ...
    Alain PicardAlain Picard
    May 8, 2015 at 3:29 am
    May 8, 2015 at 6:04 pm
  • Is it because the def form can also be ^:dynamic? At any rate, I did an attempt at my first macro to create a (def- ...) form, but it doesn't seem to work. Can you not attach metadata in a macro? ...
    Stig BrautasetStig Brautaset
    May 7, 2015 at 2:12 pm
    May 8, 2015 at 4:54 pm
  • Wouldn't be nice to have something like: (- thing (f1 ph arg2 arg3) (f2 arg1 ph arg3) (f3 arg1 arg2 ph)) ;; ph is a place holder for thing -- You received this message because you are subscribed to ...
    Kaiyin ZhongKaiyin Zhong
    May 4, 2015 at 8:48 pm
    May 5, 2015 at 7:24 pm
  • I am watching this video, Stuart Sierra's 2012 talk about Functional Design Patterns: http://www.infoq.com/presentations/Clojure-Design-Patterns His description of event sourcing for functional ...
    PiastkrakowPiastkrakow
    May 24, 2015 at 4:15 am
    May 26, 2015 at 8:25 am
  • Hello everybody, System started its life as a component library, a high-level convenience library on top of Stuart Sierra's components, providing community-backed, ready-made components: http-kit, ...
    Daniel SzmulewiczDaniel Szmulewicz
    May 24, 2015 at 12:59 am
    May 26, 2015 at 12:58 am
  • I am trying to use java.util.Arrays/asList in Clojure. (java.util.Arrays/asList 1 2 3) CompilerException java.lang.IllegalArgumentException: No matching method: asList, compiling:(NO_SOURCE_PATH:1:1) ...
    WebberWebber
    May 21, 2015 at 9:08 pm
    May 22, 2015 at 2:44 pm
  • Hi, There hasn't been a JDK version thread in a while and a few projects we rely on will soon require a JDK8. Are people running large apps on JDK8 and if so, which one ? I'd be intent on trying to ...
    Pierre-Yves RitschardPierre-Yves Ritschard
    May 7, 2015 at 8:25 pm
    May 8, 2015 at 7:21 am
  • Hi I am using juxt/bidi for route matching. with the following routes: It correctly matches at the REPL. However in the browser, when I hit the url, localhost:3000/articles/4 It attempts to download ...
    CliffordClifford
    May 4, 2015 at 3:34 pm
    May 5, 2015 at 7:38 am
  • In the vein of "there are no stupid questions" :), how does one structure a combined clj and cljs project that uses reader conditionals? At the moment I am using cljx and have: - src/clj for clojure ...
    Colin YatesColin Yates
    May 29, 2015 at 9:17 am
    May 29, 2015 at 8:10 pm
  • I started to write an essay, aimed at those programmers who are experienced with highly mutable languages such as Javascript, Ruby, PHP, etc, to demonstrate how one's code style changes when one ...
    LawrenceLawrence
    May 26, 2015 at 1:06 am
    May 29, 2015 at 6:52 am
  • Is the following correct? The only way to define *multiple* mutable instance variables/fields for a class visible in Java is by using deftype with :volatile-mutable or :unsynchronized-mutable. The ...
    Mars0iMars0i
    May 27, 2015 at 5:57 pm
    May 28, 2015 at 5:15 pm
  • I have a GET route returning the result of this: (io/resource "public/html/confirm.html") but I need to add Cache-Control headers. Since the `resource` function returns a java.net.URL object, how can ...
    Jonathon McKitrickJonathon McKitrick
    May 26, 2015 at 12:22 pm
    May 27, 2015 at 2:05 pm
  • Hi, I’m new to Clojure async operations (while have a good understanding of other things) and want to get a bit of advice. Atoms & agents still confuse me. What I’m implementing is a small REST ...
    Oleg DashevskiiOleg Dashevskii
    May 17, 2015 at 5:54 am
    May 25, 2015 at 10:51 am
  • Hi everyone, Is it possible to add JavaDocs to Clojure so that it can support Java programmers. For instance a JavaDoc to a protocol or to an interface defined in Clojure which is later on read by a ...
    TimurTimur
    May 19, 2015 at 9:41 am
    May 20, 2015 at 2:46 pm
  • I am looking here: https://strange-loop-2012-notes.readthedocs.org/en/latest/monday/functional-design-patterns.html I read: Observer Pattern ...
    Larry google groupsLarry google groups
    May 7, 2015 at 2:33 am
    May 18, 2015 at 10:41 am
  • I'm working on a tool to orchestrate the migration from mongodb to datomic, and i'm looking for a bit of design feedback as i'm new to clojure. The user needs to provide functions that transform ...
    Jason MarmonJason Marmon
    May 14, 2015 at 11:55 pm
    May 15, 2015 at 10:07 pm
  • I created a tiny library that makes it easy to plot points in a "low-res" graphics mode: https://github.com/mfikes/bocko The motivation was to help encourage interest in my own kids (10 and 12-yo) to ...
    Mike FikesMike Fikes
    May 7, 2015 at 1:15 pm
    May 9, 2015 at 7:02 pm
  • Does ClojureCLR provide an nrepl implementation that would allow vim.fireplace to connect to his session ? Regards Roger -- You received this message because you are subscribed to the Google Groups ...
    RogerglRogergl
    May 6, 2015 at 8:39 pm
    May 9, 2015 at 7:32 am
  • Clojure-objc, the Clojure compiler that targets objc runtimes. clojure-objc <https://github.com/galdolber/clojure-objc 1.7.0-beta2 - Sync with clojure 1.7.0-beta2 - Remote REPL fully working - Use ...
    Gal DolberGal Dolber
    May 7, 2015 at 3:12 am
    May 7, 2015 at 6:55 pm
  • Spawned from the other thread about web frameworks. Can any of the original maintainers answer this one ? Thank you Luc P. -- Luc Prefontaine<<span class="m_body_email_addr" ...
    Luc PrefontaineLuc Prefontaine
    May 4, 2015 at 2:51 pm
    May 4, 2015 at 6:09 pm
  • Prevalence is the fastest possible and third simplest ACID persistence technique, combining the two simplest ones. https://github.com/klauswuestefeld/prevayler-clj -- You received this message ...
    Klaus WuestefeldKlaus Wuestefeld
    May 30, 2015 at 8:58 pm
    Jun 9, 2015 at 12:05 pm
  • This page on Jira says that dynamic binding should be documented as "The Clojure Way" to do error handling. Was this ever done? I managed to find a few blog posts discussing approach but nothing ...
    Andy ChambersAndy Chambers
    May 27, 2015 at 2:01 am
    Jun 2, 2015 at 6:17 am
  • Hi guys, i'm new to clojure, and we have built our production using java. It's a web service, named "ddi", which runs on tomcat. i use eclipse to build a clojure project, and set in project.clj ...
    Peng LinPeng Lin
    May 27, 2015 at 10:58 am
    May 27, 2015 at 4:38 pm
Group Navigation
period‹ prev | May 2015 | next ›
Group Overview
groupclojure @
categoriesclojure
discussions121
posts854
users245
websiteclojure.org
irc#clojure

245 users for May 2015

Alex Miller: 36 posts Sean Corfield: 27 posts Colin Yates: 22 posts Fluid Dynamics: 22 posts Andy Fingerhut: 21 posts Gvim: 19 posts Raoul Duke: 18 posts James Reeves: 17 posts Herwig Hochleitner: 16 posts Larry google groups: 16 posts Piastkrakow: 15 posts Mars0i: 15 posts Christopher Small: 14 posts Pierre Thibault: 12 posts Puzzler: 12 posts Timothy Baldridge: 12 posts Luc Préfontaine: 11 posts Alan Moore: 10 posts Daniel Szmulewicz: 10 posts David Nolen: 10 posts
show more