Re: [ANN] introduction to opencv development with clojure

2013-12-13 Thread Mimmo Cosenza
This is a great talk by Zach Tellman on the subject….. http://www.infoq.com/presentations/Distilling-Java-Libraries So, it seems that now I have seesaw and this great talk to get inspiration from. mimmo signature.asc Description: Message signed with OpenPGP using GPGMail

Re: cider status

2013-12-13 Thread Bozhidar Batsov
nrepl.el was renamed to cider after version 0.2. You should be using cider :-) -- Cheers, Bozhidar On Friday, December 13, 2013 at 9:43 AM, Adrian Mowat wrote: Is cider just a new release of nrepl.el or a different thing entirely? Sorry to be a noob, but this is awfully confusing to

Re: cider status

2013-12-13 Thread Phillip Lord
Bozhidar Batsov bozhidar.bat...@gmail.com writes: On Tuesday, November 19, 2013 4:56:05 PM UTC+2, Phillip Lord wrote: I discovered one of the reasons for my issues with stability yesterday. The version of clojure-test-mode on marmalade still depends on nrepl (rather than cider), so,

Re: map vs map in core.async

2013-12-13 Thread Joachim De Beule
Thanks, that indeed did the trick. More generally it's not clear to me what makes a channel an output channel or an input channel. Aren't all channels input and output channels depending on whether you read from or write to it? Op vrijdag 13 december 2013 04:28:53 UTC+1 schreef Carlo: On

Re: [ANN] Munich Lambda Meetups

2013-12-13 Thread Philipp Meier
Hi, Am Donnerstag, 12. Dezember 2013 18:54:03 UTC+1 schrieb Alex P: We (Munich Lambda[1]) are organising Meetups, dedicated to Functional Programming, and Clojure specifically. I suggest to post this also to the (very silent) google group clojure-de. -billy. -- -- You received this

Re: map vs map in core.async

2013-12-13 Thread Walter van der Laan
Please try these exercises if you want to know what a channel is: https://github.com/halgari/clojure-conj-2013-core.async-examples/blob/master/src/clojure_conj_talk/core.clj Op vrijdag 13 december 2013 11:01:57 UTC+1 schreef Joachim De Beule: Thanks, that indeed did the trick. More generally

Othello from PAIP in Clojure

2013-12-13 Thread edward
One of my favourite computer science / programming books is Peter Norvig’s “Paradigms of Artificial Intelligence Programming: Case Studies in Common Lisp” (PAIP). And the extended Othello example had always fascinated me so when I was looking for something to write to help me learn Clojure it

Re: cider status

2013-12-13 Thread Tim Visher
Hi Phil, On Fri, Dec 13, 2013 at 4:57 AM, Phillip Lord phillip.l...@newcastle.ac.uk wrote: Bozhidar Batsov bozhidar.bat...@gmail.com writes: On Tuesday, November 19, 2013 4:56:05 PM UTC+2, Phillip Lord wrote: I discovered one of the reasons for my issues with stability yesterday. The version

Re: Othello from PAIP in Clojure

2013-12-13 Thread Sean Chalmers
I'm running out of break time so I'll have to give this a look over a bit later, looks pretty good from a quick scan though! Interested to dive in the guts of it! :) If you're interested, this is my not-yet-finished implementation of Othello: https://github.com/mankyKitty/clojure-othello . I

Re: cider status

2013-12-13 Thread Cedric Greevey
On Fri, Dec 13, 2013 at 2:43 AM, Adrian Mowat adrian.mo...@gmail.comwrote: Is cider just a new release of nrepl.el or a different thing entirely? The former. Sorry to be a noob, but this is awfully confusing to the uninitiated. Of course it is -- it's emacs. -- -- You received this

AnNN: ClojureScript 0.0-2120

2013-12-13 Thread David Nolen
ClojureScript, the Clojure compiler that emits JavaScript source code. README and source code: https://github.com/clojure/clojurescript New release version: 0.0-2120 Leiningen dependency information: [org.clojure/clojurescript 0.0-2120] Enhancements: * inline source map information

Re: [ClojureScript] AnNN: ClojureScript 0.0-2120

2013-12-13 Thread Tim Visher
On Fri, Dec 13, 2013 at 10:15 AM, David Nolen dnolen.li...@gmail.com wrote: ClojureScript, the Clojure compiler that emits JavaScript source code. README and source code: https://github.com/clojure/clojurescript New release version: 0.0-2120 Leiningen dependency information:

Re: [ClojureScript] AnNN: ClojureScript 0.0-2120

2013-12-13 Thread Nelson Morris
Enhancements: * inline source map information available to REPLs, enabled in browser REPL I have PRs into piggieback and austin to enable this in the future. In the meantime, if you want to try it out you can clone https://github.com/xeqi/austin and https://github.com/xeqi/piggieback, and use

Monitoring a Clojure app, possibly with New Relic

2013-12-13 Thread Brad Koch
I need to implement some performance monitoring and exception tracking for my Clojure app. My first thought was to just use New Relic. I implemented it according to Heroku's New Relic instructions for Clojurehttps://devcenter.heroku.com/articles/newrelic#clojure-configuration. It

Re: [ClojureScript] AnNN: ClojureScript 0.0-2120

2013-12-13 Thread David Nolen
A big round of applause to Nelson Morris, Nicola Mometto, and Alex Redington - the REPL inline source maps would not have been possible without their work! And all the other contributors who submitted patches and bug fixes to this release too! :) David On Fri, Dec 13, 2013 at 10:46 AM, Nelson

Re: Monitoring a Clojure app, possibly with New Relic

2013-12-13 Thread Sean Corfield
Although I can't answer for the New Relic approach on Heroku, I can say that we happily use New Relic to monitor a Clojure app that runs inside Tomcat, as well some standalone command line Clojure apps. For the Tomcat app, we add -javaagent manually in {tomcat}/bin/setenv.sh to point to a local

Re: cider status

2013-12-13 Thread Sean Corfield
On Thu, Dec 12, 2013 at 11:43 PM, Adrian Mowat adrian.mo...@gmail.com wrote: Is cider just a new release of nrepl.el or a different thing entirely? Well, it's a new release insofar as it's an updated version of nrepl.el. In order to switch to it, however, you have to remove nrepl.el _and all

[ANN] clojure.java.jdbc 0.3.0 RC1 released

2013-12-13 Thread Sean Corfield
A low-level Clojure wrapper for JDBC-based access to databases. https://github.com/clojure/java.jdbc Release 0.3.0-rc1 on 2013-12-12 * Deprecate db-transaction (new in 0.3.0) in favor of with-db-transaction JDBC-81. * Add with-db-metadata macro and metadata-result function to make it easier to

Re: graphs library?

2013-12-13 Thread Bruno Kim Medeiros Cesar
Maybe late to the thread, but I'm currently implementing some complex networks analysis tools in https://github.com/brunokim/loom (specifically, loom.metrics) that may be merged back to the main library. For what you described, Aysylu's Loom https://github.com/aysylu/loom fits well. Bruno

[ANN] clojure.java.jdbc 0.3.0 RC1 released

2013-12-13 Thread Niels van Klaveren
Thanks very much Sean. After hesitating a long time about the jump to 0.3.0, today I migrated all my projects without a hitch ! -- -- 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

Re: graphs library?

2013-12-13 Thread Mark Engelberg
Is loom actively maintained? On Fri, Dec 13, 2013 at 11:46 AM, Bruno Kim Medeiros Cesar brunokim...@gmail.com wrote: Maybe late to the thread, but I'm currently implementing some complex networks analysis tools in https://github.com/brunokim/loom(specifically, loom.metrics) that may be

Re: cider status

2013-12-13 Thread Bozhidar Batsov
On Friday, December 13, 2013 at 7:17 PM, Sean Corfield wrote: On Thu, Dec 12, 2013 at 11:43 PM, Adrian Mowat adrian.mo...@gmail.com (mailto:adrian.mo...@gmail.com) wrote: Is cider just a new release of nrepl.el or a different thing entirely? Well, it's a new release insofar as it's an

Re: cider status

2013-12-13 Thread Rostislav Svoboda
I can’t know what problems people encounter is they don’t tell me. You may ask somebody to test your changes before you publish them. Pardon me in case you did so. It seems like people were not listening. Anyway you should be prepared for this eventuality too and have an undo-scenario. Bost --

Re: Othello from PAIP in Clojure

2013-12-13 Thread Brian Muhia
This provides sufficient motivation for me to do the same thing. I read most PAIP in my gap year from college, and have wanted to get back to it again (in Clojure, of course). Making time, building a nice book club, and lots of pizza should provide enough activation energy to go at it. Thanks

Re: graphs library?

2013-12-13 Thread Aysylu Greenberg
Yes, it is. I'm the maintainer. Feel free to ping me if you have any questions. On Friday, December 13, 2013 3:08:32 PM UTC-5, puzzler wrote: Is loom actively maintained? On Fri, Dec 13, 2013 at 11:46 AM, Bruno Kim Medeiros Cesar bruno...@gmail.com javascript: wrote: Maybe late to the

Re: AnNN: ClojureScript 0.0-2120

2013-12-13 Thread Joel Holdbrooks
Woohoo! Yes! Thank you! On Friday, December 13, 2013 7:15:40 AM UTC-8, David Nolen wrote: ClojureScript, the Clojure compiler that emits JavaScript source code. README and source code: https://github.com/clojure/clojurescript New release version: 0.0-2120 Leiningen dependency information:

Re: Should I be using deftype, gen-class or defrecord instead of this hack?

2013-12-13 Thread Jason Wolfe
You might find this post helpful: https://github.com/Prismatic/eng-practices/blob/master/clojure/20130926-data-representation.md It describes (my perspective on) the various Clojure data representation methods, their pros and cons, and some guidelines on when each may be appropriate. -Jason

Clojure west?

2013-12-13 Thread Mark Engelberg
Any word yet on when/where Clojure West 2014 will be held? -- -- 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