Causeway - new web framework

2013-08-01 Thread Marcin Skotniczny
Hey, Over the last few days I've been putting up a web framework of my own from all the experience I've gained for the last 19 months of intensive Clojure development. I would really enjoy any feedback. I am aware that I made little documentation, so it will not be easy to check it out, but I am

[ANN] New templating library - Scijors released

2014-06-12 Thread Marcin Skotniczny
hear any feedback you can give me on this! *Is there any need to have any other templating library anyway? :)* Thanks, Marcin Skotniczny *Software Mansion* -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email t

[ANN] Cornet 0.1.0 - Clojure asset pipeline for minification and compilation of LessCSS and CoffeeScript (...more coming soon)

2013-11-15 Thread Marcin Skotniczny
https://github.com/cosmi/cornet Cornet is a simple asset pipeline that will help you compile on the flight LessCSS, CoffeeScript and minify all your CSSes and JSes. I wasn't happy with what's already there (dieter

Re: [ANN] Cornet 0.1.0 - Clojure asset pipeline for minification and compilation of LessCSS and CoffeeScript (...more coming soon)

2013-11-16 Thread Marcin Skotniczny
:prod) > > > Consider instead a structure like: > > (-> (route/resources "/*.less") > (wrap-compile-less) > (wrap-minify-css) > (wrap-cache (file-cache "tmp/less/compiled")) > > > You'd get the same functionality, but in a fo

Re: [ANN] Cornet 0.1.0 - Clojure asset pipeline for minification and compilation of LessCSS and CoffeeScript (...more coming soon)

2013-11-16 Thread Marcin Skotniczny
ng on ring response level was actually one of the things I didn't like with dieter. - Marcin W dniu sobota, 16 listopada 2013 18:30:03 UTC+1 użytkownik James Reeves napisał: > > On 16 November 2013 13:02, Marcin Skotniczny > > wrote: > >> Well, I made sure you can do

Re: [ANN] Cornet 0.1.0 - Clojure asset pipeline for minification and compilation of LessCSS and CoffeeScript (...more coming soon)

2013-11-16 Thread Marcin Skotniczny
> Doesn't this approach risk unnecessary repetition? > > I am not sure if I catch your drift... What I wanted to have is a direct replacement for clojure.java.io/resource function - so if at some layer you come down to using this function, you can just replace it with cornet generated handler

Re: [ANN] Cornet 0.1.0 - Clojure asset pipeline for minification and compilation of LessCSS and CoffeeScript (...more coming soon)

2013-11-16 Thread Marcin Skotniczny
> What about a case where you want to store the production files on some > external CDN? > > I guess that could be considered as part of the deployment process, done > separately through some additional script. But by keeping it all > "in-house", one could generate URLs that would work for bot