Search Discussions
-
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 ...
Gvim
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 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 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 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 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 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 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 ...
Mars0i
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 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 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 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 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 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 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 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 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 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 ...
Akiva
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 ...
Piastkrakow
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 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 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 ...
Ronen
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 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 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 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 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 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 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 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 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 ...
Piastkrakow
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 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) ...
Webber
May 21, 2015 at 9:08 pm
May 22, 2015 at 2:44 pm -
5
JDK8
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 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 ...
Clifford
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 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 ...
Lawrence
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 ...
Mars0i
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 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 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 ...
Timur
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 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 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 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 ...
Rogergl
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 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 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 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 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 Lin
May 27, 2015 at 10:58 am
May 27, 2015 at 4:38 pm
Group Overview
group | clojure |
categories | clojure |
discussions | 121 |
posts | 854 |
users | 245 |
website | clojure.org |
irc | #clojure |
245 users for May 2015
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)