Re: Any interest in Compojure/Ring screencasts?

2013-10-29 Thread Yuan
Count me in too.. >_> Best regards - Yuan blog github On Wed, Oct 30, 2013 at 7:19 AM, Luc Prefontaine < lprefonta...@softaddicts.ca> wrote: > Count me in, > > Luc P. > > > > I'm considering putting together a scree

Clojure + BDD + TDD + Pairing...

2013-10-29 Thread Marcus Blankenship
Hi Folks, I’m a Clojure n00b, but am interested in finding another n00b who aspires to learn Clojure, and do so using BDD / TDD practices through regular pairing sessions. I’ve found novice <-> novice pairing to be a great way to ramp up on skills, but I don’t live near anyone who I can pair w

Testing Clojurescript Code with the Karma Test Runner

2013-10-29 Thread zcaudate
I thought this may also be of interest to those that are not subscribed to planet clojure.. >From http://z.caudate.me/testing-clojurescript-code-with-karma/ The karma test runner is an amazingly fully featured testing platf

Re: What non-deprecated Clojure Web libraries to use?

2013-10-29 Thread Brian Craft
In general, my point is that libraries don't compose if they have incompatible or hidden representations of the data structures over which they operate, which is the default condition if no one has thought about how the libraries might be used together. A consequence of this is that a framework

Re: Any interest in Compojure/Ring screencasts?

2013-10-29 Thread Luc Prefontaine
Count me in, Luc P. > I'm considering putting together a screencast, or a series of screencasts, > based on my Functional Web > Architecture > talk. > The base presentation would be improved, and I'd probably wind up going > into more detail o

Re: What non-deprecated Clojure Web libraries to use?

2013-10-29 Thread Chris Kuttruff
Well things were kept separate intentionally. If someone wants to use Korma or some other DSL within their migrations, they can augment their migration file to use that to generate the SQL, but having the migrations set up such that instructions to jdbc are simple clojure strings is very inten

Re: Any interest in Compojure/Ring screencasts?

2013-10-29 Thread Mimmo Cosenza
Me too. Inviato da iPad Scusate gli errori d'ortografia > On 29/ott/2013, at 23:51, Marcus Blankenship wrote: > > Agreed, and it’s worth money to me… > > >> On Oct 29, 2013, at 3:47 PM, Russell Whitaker >> wrote: >> >> I, for one, would happily pay (my employer's) money for such a thing. >

Re: Any interest in Compojure/Ring screencasts?

2013-10-29 Thread Marcus Blankenship
Agreed, and it’s worth money to me… On Oct 29, 2013, at 3:47 PM, Russell Whitaker wrote: > I, for one, would happily pay (my employer's) money for such a thing. > > R > > On Tue, Oct 29, 2013 at 3:39 PM, James Reeves wrote: >> I'm considering putting together a screencast, or a series of sc

Re: Any interest in Compojure/Ring screencasts?

2013-10-29 Thread Russell Whitaker
I, for one, would happily pay (my employer's) money for such a thing. R On Tue, Oct 29, 2013 at 3:39 PM, James Reeves wrote: > I'm considering putting together a screencast, or a series of screencasts, > based on my Functional Web Architecture talk. The base presentation would be > improved, and

Any interest in Compojure/Ring screencasts?

2013-10-29 Thread James Reeves
I'm considering putting together a screencast, or a series of screencasts, based on my Functional Web Architecture talk. The base presentation would be improved, and I'd probably wind up going into more detail on certain topics. I'll probably cha

Re: Incanter/vector-clj use error

2013-10-29 Thread Jim - FooBar();
No you're not managing your libraries quite right...If you want to use "use", which is generally frowned upon, then you don't need the alias. (use '[clojure.core.matrix]) I would suggest to use 'require' instead though, which takes an alias (require '(clojure.core.matrix :as mat)) (require '(

Incanter/vector-clj use error

2013-10-29 Thread P Martin
Hello, I am trying to use incanter to plot the results from my ode solving routines. I use vectorz-clj to maintain the matrices and then want to use incanter to display. When I go to use incanter, I get the following error: (use '(incanter core charts pdf)) IllegalStateException tan already re

[ANN] modern-cljs - Tutorial 22

2013-10-29 Thread Mimmo Cosenza
Hi all, I just published the 22th tutorial - Learn by Contributing (Part 3) - of the modern-cljs series. https://github.com/magomimmo/modern-cljs/blob/master/doc/tutorial-22.md In this tutorial I introduced in the 'enfocus' lib what we learnt about the separation of concerns principle in previ

SQL to logic rule mapping

2013-10-29 Thread ArturoH
I am interested in writing a better SQL mapping tool for clojure. Because I am not convinced that simple SQL composition is effective, for various reasons. I rather have some kind of logic construct that I could use to generate SQL from. My main concern is to eliminate the hard boundary between

Re: What non-deprecated Clojure Web libraries to use?

2013-10-29 Thread Brian Craft
On Monday, October 28, 2013 4:36:56 PM UTC-7, Chris Kuttruff wrote: > > Separate from DSLs like Korma, etc. I have written a simple library for > doing database migrations with clojure (clj-sql-up ( > https://github.com/ckuttruff/clj-sql-up )). There are also other > libraries still maintain

Re: What non-deprecated Clojure Web libraries to use?

2013-10-29 Thread Brian Craft
On Monday, October 28, 2013 4:51:54 PM UTC-7, Alexander Hudek wrote: > > > It is incredibly hard to write a clean sql dsl due to differences in how > various database drivers work, and also due to how complex sql itself is. > It's worth noting that you can always selectively fall back to jdbc i

Re: What non-deprecated Clojure Web libraries to use?

2013-10-29 Thread Brian Craft
Try create-db. On Monday, October 28, 2013 1:06:49 AM UTC-7, Manuel Paccagnella wrote: > > Il giorno lunedì 28 ottobre 2013 04:12:50 UTC+1, Christopher Allen ha > scritto: > > You can use Korma with Stuart Sierra's workflow just fine. >> >> Really? Nice! Last time I tried I didn’t managed to get

Re: eval-after-load

2013-10-29 Thread Phillip Lord
Well, yes, but it always does it and needs modification of the source. Anyway, I found a solution; requires usage of a private var, unfortunately, but it does work. (defn eval-after-load [library form] (let [key (keyword (str "eval-after-load-" library))] (add-watch