Database migrations

2013-06-14 Thread Reginald Choudari
Hello all, I am trying to implement database migrations with Clojure. So far I have been looking at Drift (https://github.com/macourtney/drift) as a candidate for implementing this. My question is, does anyone have a database migration workflow that they use and would like to share? One problem

Re: Database migrations

2013-06-14 Thread Reginald Choudari
June 14, 2013 1:24:39 PM UTC-3, Reginald Choudari wrote: >> >> Hello all, >> >> I am trying to implement database migrations with Clojure. So far I have >> been looking at Drift (https://github.com/macourtney/drift) as a >> candidate for implementing this. My questio

Ring: How to auto-redirect URI's missing trailing slash

2013-07-25 Thread Reginald Choudari
Hello, I'm trying to figure out what is the best way in handling this problem. Using Ring I have a handlers set to direct routes with relative URI paths (e.g. "/", "./posts", "/about"). But I would like the URI to be automatically redirected to "/posts/" and "/about/" with the trailing slash,

Re: Ring: How to auto-redirect URI's missing trailing slash

2013-07-26 Thread Reginald Choudari
Thanks for all the replies. Looks like the ring library has a redirect function in ring.util.response namespace. It redirects using the 302 message. Works for me. Although it is a pain to have to declare a redirect for every handler. On Thursday, July 25, 2013 9:08:50 PM UTC-4, Reginald

Re: Ring: How to auto-redirect URI's missing trailing slash

2013-07-26 Thread Reginald Choudari
Thanks for all the replies. Looks like the ring library has a redirect function in ring.util.response namespace. It redirects using the 302 status code. Works for me. Although it is a pain to have to declare a redirect for every route. On Thursday, July 25, 2013 9:08:50 PM UTC-4, Reginald

Clojure Literature

2013-01-18 Thread Reginald Choudari
I am looking for a new Clojure book to get me started on the language. I've been doing some clojure-koans and reading up on web-development with Clojure and am interested to get down to the knitty-gritty... From what I've seen, it looks like the latest Clojure books are from around March/April

Re: Clojure Literature

2013-01-19 Thread Reginald Choudari
Wow, I did not expect the wide range of responses and opinions. A lot of valuable information here for a beginner like myself... Thanks to everyone who contributed.. Reginald On Friday, January 18, 2013 9:46:14 AM UTC-5, Reginald Choudari wrote: > > I am looking for a new Clojure book

Clojure HTML5 Game Development

2013-03-12 Thread Reginald Choudari
Any resources/people dedicated to game development using Clojure/Clojurescript? I have made a couple games using HTML5/Javascript with the canvas element, and seeing that Clojurescript can replace Javascript coupled with Clojure hosting an HTTP web server, I was thinking of moving over to the Cl