Re: Weird performance issue with reduce

2014-11-18 Thread Alexander L.
@Alex, I am using 1.6.0. Transducers is something i wanna try out. @Andy, I wasn't aware of YourKit. I have been using JProfiler and VisualVM. I liked it, seems smoother than the other two. Alex On Monday, November 17, 2014 8:31:25 PM UTC+2, Alex Miller wrote: What version of Clojure are you

Re: snubbed on clojurescript one

2014-11-18 Thread Kevin Ilchmann Jørgensen
Hey Sadly http://clojurescriptone.com/ hasn't received the necessary deprecated message yet. We used it as basis for our application, but that's ~2years ago. If I was to start again, http://www.luminusweb.net/ would be my starting point. https://github.com/plexus/chestnut is also a very nice

Lisp Devroom at FOSDEM 2015: Call for Participation [UPDATED]

2014-11-18 Thread Sanel Zukan
Sorry guys for spamming, I put the wrong mailing list. Now is updated. -8- Dear Lispers, I'm pleased to announce, for the first time, Lisp Devroom @ FOSDEM, the biggest FLOSS event in Europe, that will be held in Brussels on January 31st to February 2nd, 2015. This is a call to

Referencing aliased namespace

2014-11-18 Thread pmf
When I refer to a namespace like this: (require '[clojure.test.check :as tc]) using tc/whatever works as expected, but I have not found a way to use the handle tc to refer to the namespace: user= (the-ns 'tc) Exception No namespace: tc found clojure.core/the-ns (core.clj:3933) Using the

Re: Referencing aliased namespace

2014-11-18 Thread Tassilo Horn
pmf phil.fr...@gmx.de writes: using tc/whatever works as expected, but I have not found a way to use the handle tc to refer to the namespace: user= (the-ns 'tc) Exception No namespace: tc found clojure.core/the-ns (core.clj:3933) `ns-aliases` returns the map of aliases to namespaces of a

Re: If code is data why do we use text editors?

2014-11-18 Thread Phillip Lord
Thomas Huber th0mas.hu...@googlemail.com writes: Hi Phil, thanks for your reply. The source data structure doesn't have to contain only bare source code. It could contain everything that is in a text file, but just saved in a structured way. To contain everything, then the data model

Re: Lisp Devroom at FOSDEM 2015: Call for Participation [UPDATED]

2014-11-18 Thread Mark Tarver
*FOSDEM is a hacker conference and we would be happy to see more practical proposals, crazy ideas and open source projects demonstrations than dry scientific papers (we will leave them for ILC and ELS :-P). * That'll sure get them going in comp.lang.lisp :D. We've a broader view on things

Clojure at Scale: Handling 2 Billion Events Per Day

2014-11-18 Thread Alex Zhitnitsky
Hi everyone, We've just published a new blog post covering the use of Clojure at AppsFlyer and why they transitioned to it from Python, thought you'd like to read about their experience: http://www.takipiblog.com/clojure-at-scale-why-python-just-wasnt-enough-for-appsflyer/ -- You received

Fwd: Nginx Filter using Nginx-Clojure module

2014-11-18 Thread Yuexiang Zhang
Hi Khan, So far nginx-clojure has not supported java/clojure filter, please create an issue on its github site https://github.com/nginx-clojure/nginx-clojure/issues . I will make it support this feature as soon as possible. Regards Xfeep On Tue, Nov 18, 2014 at 3:21 AM, Imran Khan

Eastwood the Clojure lint tool version 0.2.0

2014-11-18 Thread Andy Fingerhut
Eastwood is a Clojure lint tool. It analyzes Clojure (on the JVM) source code, reporting things that may be errors. Installation instructions are in the documentation here: https://github.com/jonase/eastwood#installation--quick-usage Updates since the last release are described in the

seque examples

2014-11-18 Thread Brian Craft
Anyone have examples of when how to use seque? -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To

Re: map function generator

2014-11-18 Thread Brian Craft
juxt? user= (map (juxt zero? even?) (range 5)) ([true true] [false false] [false true] [false false] [false true]) user= (map (apply juxt [zero? even?]) (range 5)) ([true true] [false false] [false true] [false false] [false true]) On Monday, November 17, 2014 8:25:07 PM UTC-8, Andy L wrote:

Re: seque examples

2014-11-18 Thread Andy Fingerhut
Some mostly negative results: ClojureDocs.org is quick to search for user-contributed examples, but in this case it is a toy example demonstrating how it works, not when to use it: http://clojuredocs.org/clojure.core/seque crossclj.info has the ability to show you everywhere a function is used

Re: snubbed on clojurescript one

2014-11-18 Thread atucker
Pedestal https://github.com/pedestal/pedestal is a continuation of ClojureScript One. https://groups.google.com/d/msg/clojure/XQ4wuUc0bCk/JuUmUj6cSwUJ On Tuesday, 18 November 2014 06:39:40 UTC, Kevin Banjo wrote: Really excited to use clojurescript one but got shot down right out of the

Re: snubbed on clojurescript one

2014-11-18 Thread Ashton Kemerling
I thought the pedestal frontend is not being developed. I would recommend om, reagent, or dommy depending on what your goals are. --Ashton Sent from my iPhone On Nov 18, 2014, at 11:56 AM, atucker agjf.tuc...@gmail.com wrote: Pedestal is a continuation of ClojureScript One.

Re: snubbed on clojurescript one

2014-11-18 Thread Sean Corfield
On Nov 18, 2014, at 10:57 AM, Ashton Kemerling ashtonkemerl...@gmail.com wrote: I thought the pedestal frontend is not being developed. I would recommend om, reagent, or dommy depending on what your goals are. The commit list makes Pedestal look pretty active:

Re: snubbed on clojurescript one

2014-11-18 Thread Daniel Kersten
Pedestal App (the clojurescript frontend library) is dead. Server side pedestal seems to be very much alive. On Tue, 18 Nov 2014 19:19 Sean Corfield s...@corfield.org wrote: On Nov 18, 2014, at 10:57 AM, Ashton Kemerling ashtonkemerl...@gmail.com wrote: I thought the pedestal frontend is not

[ANN] Clojure code profiling: profile, nrepl-profile, and cider-profile

2014-11-18 Thread Edwin Watkeys
Hey folks, I've recently put together a profiling library for Clojure along with nREPL middleware and CIDER integration in Emacs. If runtime profiling is something that interests you, check out the following: profile: A Clojure library for profiling http://github.com/thunknyc/profile

Re: snubbed on clojurescript one

2014-11-18 Thread Kevin Banjo
On Monday, November 17, 2014 11:28:34 PM UTC-8, David Della Costa wrote: Hi Kevin, my understanding is that ClojureScript One is not actively maintained and pretty out of date at this point. You're probably better suited to starting from a different place in the eco-system. What are

Re: snubbed on clojurescript one

2014-11-18 Thread Sean Corfield
On Nov 18, 2014, at 11:51 AM, Daniel Kersten dkers...@gmail.com wrote: Pedestal App (the clojurescript frontend library) is dead. Server side pedestal seems to be very much alive. Ah, I hadn’t noticed that change… yes, on second reading, the README is pretty clear that Pedestal is now a

Clutch timeout problem

2014-11-18 Thread Sam Raker
I asked this in the Clutch group, before I realized the last time anyone else had posted there was last year... I have some code that connects to a CouchDB server using Clutch (https://github.com/clojure-clutch/clutch). I recently changed the connection to use a non-local connection, i.e.

Re: snubbed on clojurescript one

2014-11-18 Thread Kevin Banjo
Is there anywhere where the different available options are compared, like in a table? -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated -

Re: Eastwood the Clojure lint tool version 0.2.0

2014-11-18 Thread John Wiseman
Excellent, thank you. The unwieldy default output format was the main thing stopping me from investigating eastwood. On Tue, Nov 18, 2014 at 8:41 AM, Andy Fingerhut andy.finger...@gmail.com wrote: Eastwood is a Clojure lint tool. It analyzes Clojure (on the JVM) source code, reporting