clojure.core/protocol?

2013-03-08 Thread Joseph Smith
It appears that, as of Clojure 1.5, clojure.core/protocol? is private. Does anyone know the reason for this? What's the proper way to tell if something is a protocol? --- Joseph Smith j...@uwcreations.com @solussd -- -- You received this message because you are subscribed to the Google

[ANN] uWSGI support for ring (early stage)

2013-03-08 Thread Mingli Yuan
Hi, folks, Yesterday uWSGI had released a ring plugins to give basic support for Clojure webdev. - https://uwsgi-docs.readthedocs.org/en/latest/Ring.html - https://uwsgi-docs.readthedocs.org/en/latest/JVM.html - http://lists.unbit.it/pipermail/uwsgi/2013-March/005549.html -

Re: ANN: Iota 1.0.2 release (Reducers for text files)

2013-03-08 Thread Alan Busby
Hi Bernard, I'd certainly like to add support for binary files, but as I haven't had a need for it myself I haven't had a good place to start. As Java NIO's mmap() doesn't support ranges over 2GB, I've had to paste together multiple mmap's to cover files that are larger than 2GB. So if a record

Namespaced symbols, and errors

2013-03-08 Thread nick rothwell
Typing the following at a REPL: (str ::junk/junk) (where there's no alias for junk) gives me: RuntimeException Invalid token: ::junk/junk clojure.lang.Util.runtimeException (Util.java:219) RuntimeException Unmatched delimiter: ) clojure.lang.Util.runtimeException (Util.java:219) A couple

Re: [ANN] Complete authentication app using Compojure and lib-noir

2013-03-08 Thread Paul deGrandis
Cool! Thanks for building a nice example app. Paul -- -- 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

Re: Prismatic Plumbing and Graph Open-Source Release

2013-03-08 Thread Jason Wolfe
Hi, On Thu, Mar 7, 2013 at 7:53 PM, Brent Millare brent.mill...@gmail.com wrote: Hi, Very nice work. I'm interested in using graph but just curious in terms of your priorities for future development. Thanks! I noticed that you listed as a todo, you might want to save the body of a fnk

Re: datomic question

2013-03-08 Thread Paul Gearon
On Monday, 4 March 2013 01:50:56 UTC-5, edw...@kenworthy.info wrote: Okay, I think I understand that. Does that mean this code could never work as intended in a Clojure program, only at the repl (which seems a bit of a limitation) or is there a way to make it work as intended, generating a

Re: [ANN] Complete authentication app using Compojure and lib-noir

2013-03-08 Thread Devin Walters
Double that. Thanks Xavi! -- '(Devin Walters) On Friday, March 8, 2013 at 11:15 AM, Paul deGrandis wrote: Cool! Thanks for building a nice example app. Paul -- -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group,

Re: ANN: Iota 1.0.2 release (Reducers for text files)

2013-03-08 Thread bernardH
Hi Alan, On Friday, March 8, 2013 4:02:18 PM UTC+1, Alan Busby wrote: Hi Bernard, I'd certainly like to add support for binary files, but as I haven't had a need for it myself I haven't had a good place to start. As Java NIO's mmap() doesn't support ranges over 2GB, I've had to paste

Re: [ANN] uWSGI support for ring (early stage)

2013-03-08 Thread Baishampayan Ghose
This is something really awesome! Clojure Python co-existing together in a single web stack is a very interesting idea. Excited to see where this goes. ~BG On Fri, Mar 8, 2013 at 8:07 PM, Mingli Yuan mingli.y...@gmail.com wrote: Hi, folks, Yesterday uWSGI had released a ring plugins to give

Windows Installation

2013-03-08 Thread James Ashley
Since I've seen a few recent posts about this experience, I figured I'd share mine: 0a) Install cygwin. I don't understand how any programmer stuck using windows can get by without it 1) Install the Oracle JDK 1a) Add javac to my PATH (I added a symbolic link to javac.exe inside cygwin in a

Re: Windows Installation

2013-03-08 Thread George Oliver
On Friday, March 8, 2013 7:55:59 PM UTC-8, James Ashley wrote: But the bare-bones part of the installation process Just Worked. I agree, things are working well on Windows lately! It's pretty great. I've never bothered with cygwin. Some lightweight alternatives might be the bash shell

Re: [ANN] uWSGI support for ring (early stage)

2013-03-08 Thread Akhil Wali
Seriously awesome! I guess it owes to the simplicity of Ring's spec. I think this will make threading easier with something like Jython on uWSGI. Any comments on how JVM support can be used for better multithreading? On Sat, Mar 9, 2013 at 7:50 AM, Baishampayan Ghose b.gh...@gmail.comwrote:

Re: [ANN] uWSGI support for ring (early stage)

2013-03-08 Thread Roberto De Ioris
Seriously awesome! I guess it owes to the simplicity of Ring's spec. Hi, (i am the main author of the uWSGI project), yes the Ring specs have been really enlightening for me. Thanks to them i have managed to built a more sane JVM plugin exporting the minimal amount of features and with solid